/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Cores Vibrantes - Atualizadas para tema AZUL */
:root {
    --primary-color: #1E88E5; /* Azul vibrante */
    --secondary-color: #0D47A1; /* Azul escuro */
    --accent-color: #00B0FF; /* Azul claro */
    --dark-color: #1A1A2E; /* Azul escuro quase preto */
    --light-color: #FFFFFF;
    --gray-color: #F0F0F0;
    --text-color: #333333;
    --highlight-color: #64B5F6; /* Azul claro para destaque */
}

/* Cabeçalho e Navegação */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu li {
    margin-left: 25px;
}

.menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.menu a:hover, .menu a.active {
    color: var(--primary-color);
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.menu a:hover::after, .menu a.active::after {
    width: 100%;
}

.btn-online {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--light-color) !important;
    padding: 10px 20px !important;
    border-radius: 30px;
    font-weight: 600;
}

.btn-online:hover {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

.menu-mobile {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Carrossel */
.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/solucao2.jpg');
    background-size: cover;
    background-position: center;
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/solucao3.jpg');
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.carousel-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--highlight-color);
}

.carousel-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: var(--primary-color);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 176, 255, 0.5);
}

/* Seção de Atendimento */
.atendimento {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.atendimento h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.atendimento p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background: linear-gradient(to right, var(--light-color), var(--highlight-color));
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(to right, var(--highlight-color), var(--light-color));
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(100, 181, 246, 0.5);
}

/* Nossas Soluções */
.solucoes {
    padding: 80px 0;
    background-color: var(--light-color);
}

.solucoes h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.solucoes .subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.card-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn-card {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
}

.btn-card:hover {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
}

/* Central de Atendimento */
.central {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0;
    text-align: center;
}

.central h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--highlight-color);
    letter-spacing: 1px;
}

.central h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.central span {
    color: var(--primary-color);
}

.central p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
}

.btn-contact {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.btn-contact:hover {
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 176, 255, 0.5);
}

.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.stat-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 250px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-box h2 {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    margin-bottom: 0;
}

/* Rodapé */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo, .footer-links, .footer-contact {
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-logo p {
    font-size: 16px;
    color: var(--gray-color);
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--highlight-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-color);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Botão de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    z-index: 999;
}

.whatsapp-button a {
    background-color: #25D366;
    color: var(--light-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button span {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    margin-left: 10px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.whatsapp-button:hover span {
    display: block;
}

/* Animações */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 992px) {
    .menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--light-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .menu.active {
        left: 0;
    }

    .menu li {
        margin: 15px 0;
    }

    .menu-mobile {
        display: block;
    }

    .menu-mobile.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-mobile.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-mobile.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .carousel-content h1 {
        font-size: 36px;
    }

    .stats {
        gap: 15px;
    }

    .stat-box {
        max-width: 45%;
    }
    
    .hero-carousel {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 400px;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .carousel-content p {
        font-size: 16px;
    }

    .card {
        max-width: 100%;
    }

    .stat-box {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-content h1 {
        font-size: 28px;
    }
    
    .carousel-content h2 {
        font-size: 18px;
    }

    .btn-primary, .btn-secondary, .btn-contact {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .hero-carousel {
        height: 350px;
    }
}
