/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da marca Illume */
    --primary-color: #99FF00; /* Verde Illume - Destaque */
    --secondary-color: #66CC00; /* Verde Secundário */
    --background-color: #F5F5F5; /* Cinza Claro - Fundo */
    --text-color: #262626; /* Cinza Escuro - Texto */
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Cores adicionais para gradientes e efeitos */
    --primary-dark: #7ACC00;
    --primary-light: #B3FF33;
    --secondary-dark: #4D9900;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    background: #000000;
    box-shadow: var(--shadow);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    display: flex;
    align-items: center;
    height: 30px;
}

.logo-text img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: var(--transition);
    border-radius: 50%;
    overflow: hidden;
    animation: logoRotate 8s linear infinite;
    position: relative;
}

.logo-icon img {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    border-radius: 50%;
    object-fit: cover;
}

.logo:hover .logo-icon img {
    transform: rotate(15deg) scale(1.1);
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 4px 8px rgba(153, 255, 0, 0.4));
    box-shadow: 0 0 20px rgba(153, 255, 0, 0.3);
    animation-play-state: paused;
}

/* Efeitos especiais para rotações de 90 graus */
.logo-icon.effect-90 {
    animation: logoRotate 8s linear infinite, logoGlow90 0.5s ease-out;
}

.logo-icon.effect-180 {
    animation: logoRotate 8s linear infinite, logoGlow180 0.5s ease-out;
}

.logo-icon.effect-270 {
    animation: logoRotate 8s linear infinite, logoGlow270 0.5s ease-out;
}

.logo-icon.effect-360 {
    animation: logoRotate 8s linear infinite, logoGlow360 0.5s ease-out;
}


.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #95F81D;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: #95F81D;
    opacity: 0.8;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #95F81D;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #95F81D;
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--text-color) 0%, #1a1a1a 50%, var(--text-color) 100%);
    color: var(--white);
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.2) saturate(1.1);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.carousel-slide.active .slide-background img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(38, 38, 38, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(153, 255, 0, 0.2) 100%
    );
    backdrop-filter: blur(2px);
}

.slide-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.slide-container {
    max-width: 800px;
    animation: slideContentIn 1.2s ease-out 0.3s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(153, 255, 0, 0.4));
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* Controles do Carrossel */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

/* Indicadores do Carrossel */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(153, 255, 0, 0.5);
}

.indicator.active::before {
    width: 8px;
    height: 8px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Contador de Slides */
.slide-counter {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.current-slide {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(153, 255, 0, 0.5);
}

.slide-separator {
    margin: 0 5px;
    opacity: 0.7;
}

/* Animações */
@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animação de rotação do logo */
@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Efeitos especiais para cada 90 graus */
@keyframes logoGlow90 {
    0% {
        box-shadow: 0 0 20px rgba(153, 255, 0, 0.3);
        filter: drop-shadow(0 4px 8px rgba(153, 255, 0, 0.4));
    }
    50% {
        box-shadow: 0 0 40px rgba(153, 255, 0, 0.8), 0 0 60px rgba(153, 255, 0, 0.6);
        filter: drop-shadow(0 8px 16px rgba(153, 255, 0, 0.8));
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 20px rgba(153, 255, 0, 0.3);
        filter: drop-shadow(0 4px 8px rgba(153, 255, 0, 0.4));
        transform: scale(1);
    }
}

@keyframes logoGlow180 {
    0% {
        box-shadow: 0 0 20px rgba(102, 204, 0, 0.3);
        filter: drop-shadow(0 4px 8px rgba(102, 204, 0, 0.4));
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 204, 0, 0.8), 0 0 60px rgba(102, 204, 0, 0.6);
        filter: drop-shadow(0 8px 16px rgba(102, 204, 0, 0.8));
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 20px rgba(102, 204, 0, 0.3);
        filter: drop-shadow(0 4px 8px rgba(102, 204, 0, 0.4));
        transform: scale(1);
    }
}

@keyframes logoGlow270 {
    0% {
        box-shadow: 0 0 20px rgba(179, 255, 51, 0.3);
        filter: drop-shadow(0 4px 8px rgba(179, 255, 51, 0.4));
    }
    50% {
        box-shadow: 0 0 40px rgba(179, 255, 51, 0.8), 0 0 60px rgba(179, 255, 51, 0.6);
        filter: drop-shadow(0 8px 16px rgba(179, 255, 51, 0.8));
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 20px rgba(179, 255, 51, 0.3);
        filter: drop-shadow(0 4px 8px rgba(179, 255, 51, 0.4));
        transform: scale(1);
    }
}

@keyframes logoGlow360 {
    0% {
        box-shadow: 0 0 20px rgba(153, 255, 0, 0.3);
        filter: drop-shadow(0 4px 8px rgba(153, 255, 0, 0.4));
    }
    25% {
        box-shadow: 0 0 30px rgba(153, 255, 0, 0.6), 0 0 50px rgba(153, 255, 0, 0.4);
        filter: drop-shadow(0 6px 12px rgba(153, 255, 0, 0.6));
    }
    50% {
        box-shadow: 0 0 50px rgba(153, 255, 0, 1), 0 0 80px rgba(153, 255, 0, 0.8);
        filter: drop-shadow(0 10px 20px rgba(153, 255, 0, 1));
        transform: scale(1.2);
    }
    75% {
        box-shadow: 0 0 30px rgba(153, 255, 0, 0.6), 0 0 50px rgba(153, 255, 0, 0.4);
        filter: drop-shadow(0 6px 12px rgba(153, 255, 0, 0.6));
    }
    100% {
        box-shadow: 0 0 20px rgba(153, 255, 0, 0.3);
        filter: drop-shadow(0 4px 8px rgba(153, 255, 0, 0.4));
        transform: scale(1);
    }
}

/* Efeitos especiais para slides */
.carousel-slide:nth-child(1) .slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(38, 38, 38, 0.8) 0%,
        rgba(153, 255, 0, 0.3) 100%
    );
}

.carousel-slide:nth-child(2) .slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(102, 204, 0, 0.3) 100%
    );
}

.carousel-slide:nth-child(3) .slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(38, 38, 38, 0.8) 0%,
        rgba(153, 255, 0, 0.2) 100%
    );
}

.carousel-slide:nth-child(4) .slide-overlay {
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(102, 204, 0, 0.3) 100%
    );
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(153, 255, 0, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(153, 255, 0, 0.4);
    border-color: var(--primary-light);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.cta-button i {
    font-size: 1.2rem;
}

/* Seções */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

/* Seção de Serviços */
.services {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
    z-index: 6;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(153, 255, 0, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(153, 255, 0, 0.3);
}

.service-icon {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.02);
}

.service-card:hover .service-image {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(153, 255, 0, 0.3);
}

.service-link:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 255, 0, 0.4);
}


/* Benefícios */
.benefits {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    z-index: 6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 7;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    z-index: 8;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(153, 255, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(153, 255, 0, 0.3);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(153, 255, 0, 0.4);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Prós e Contras */
.pros-cons {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
    z-index: 3;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 4;
}

.pros, .cons {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 5;
}

.pros h3, .cons h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros h3 {
    color: var(--primary-color);
}

.cons h3 {
    color: #FF9800;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

.pros li i {
    color: var(--primary-color);
}

.cons li i {
    color: #FF9800;
}


/* Depoimentos */
.testimonials {
    padding: 80px 0;
    background: var(--background-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-content h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.testimonial-content span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* CTA Final */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-color) 0%, #1a1a1a 50%, var(--text-color) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(153, 255, 0, 0.1) 0%, transparent 50%, rgba(153, 255, 0, 0.1) 100%);
    pointer-events: none;
}

.final-cta .section-title {
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Seção de Parceria */
.partnership {
    padding: 60px 0;
    background: var(--white);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.partnership-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
}

.partnership-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.partnership-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-top: 2rem;
}

.partnership-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intelbras-logo {
    display: inline-block;
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.intelbras-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(153, 255, 0, 0.3);
    text-decoration: none;
}

.intelbras-logo img {
    transition: var(--transition);
    max-width: 100%;
    height: auto;
    display: block;
}

.intelbras-logo:hover img {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(153, 255, 0, 0.3);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: var(--primary-light);
}

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

/* Responsividade */
@media (max-width: 1024px) {
    /* Ajustes para tablets */
    .hero-carousel {
        height: 90vh;
        min-height: 550px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .carousel-control {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .carousel-control.prev {
        left: 20px;
    }
    
    .carousel-control.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: #000000;
        backdrop-filter: blur(10px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Responsividade para parceria */
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .partnership-logo {
        order: -1;
        margin-bottom: 1rem;
    }
    
    /* Responsividade para serviços */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Ajustes do carrossel para mobile */
    .hero-carousel {
        height: 100vh;
        min-height: 100vh;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .carousel-control {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .carousel-control.prev {
        left: 15px;
    }
    
    .carousel-control.next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 25px;
        gap: 12px;
    }
    
    .indicator {
        width: 14px;
        height: 14px;
    }
    
    .slide-counter {
        top: 25px;
        right: 25px;
        padding: 8px 16px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    /* Ajustes específicos do carrossel para mobile */
    .slide-container {
        max-width: 90%;
        padding: 0 15px;
    }
    
    .slide-background img {
        filter: brightness(0.6) contrast(1.1) saturate(1.0);
        object-fit: cover;
        object-position: center;
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 0;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Ajustes do carrossel para mobile pequeno */
    .hero-carousel {
        height: 100vh;
        min-height: 100vh;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-control.prev {
        left: 10px;
    }
    
    .carousel-control.next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .slide-counter {
        top: 20px;
        right: 20px;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .slide-container {
        max-width: 95%;
        padding: 0 10px;
    }
    
    /* Otimizações para telas muito pequenas */
    .slide-background img {
        filter: brightness(0.5) contrast(1.0) saturate(0.9);
        object-fit: cover;
        object-position: center;
        transform: scale(1.15);
    }
    
    .slide-overlay {
        backdrop-filter: blur(1px);
    }
}



/* Scroll suave */
html {
    scroll-behavior: smooth;
}


/* Modal Popup para Serviços */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.service-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease-out;
    border: 2px solid var(--primary-color);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid var(--background-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-color);
    border-radius: 18px 18px 0 0;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-description {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-description p {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.modal-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-features, .modal-benefits {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-features h3, .modal-benefits h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.modal-features ul, .modal-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-features li, .modal-benefits li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-features li i, .modal-benefits li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 2px solid var(--background-color);
    background: var(--background-color);
    border-radius: 0 0 18px 18px;
}

/* Animações do Modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade do Modal */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .modal-description {
        margin-bottom: 1.5rem;
    }
    
    .modal-bottom-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-modal {
        padding: 10px;
    }
    
    .modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1rem;
        border-radius: 13px 13px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
        border-radius: 0 0 13px 13px;
    }
}

/* WhatsApp Toggle */
.whatsapp-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}

/* Balão convidativo do WhatsApp */
.whatsapp-bubble {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: bubblePulse 3s infinite;
    max-width: 250px;
    cursor: pointer;
}

.whatsapp-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.bubble-content {
    position: relative;
}

.bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #128C7E;
}

.bubble-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bubble-text strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.bubble-text span {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.2;
}

/* Animação do balão */
@keyframes bubblePulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }
}

/* Animação de entrada do balão */
@keyframes bubbleBounce {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.whatsapp-toggle-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

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

.whatsapp-toggle-button i {
    color: white;
    font-size: 28px;
}

.whatsapp-toggle-alert {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.whatsapp-toggle-alert.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 15px 15px 0 0;
    font-weight: 600;
}

.close-alert {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.close-alert:hover {
    background: rgba(255, 255, 255, 0.2);
}

.alert-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.alert-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.whatsapp-alert-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.whatsapp-alert-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-alert-button i {
    font-size: 16px;
}

/* Animação de pulse para o botão */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade para o toggle do WhatsApp */
@media (max-width: 768px) {
    .whatsapp-toggle {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-toggle-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-toggle-button i {
        font-size: 24px;
    }
    
    .whatsapp-toggle-alert {
        width: 320px;
        right: -10px;
    }
    
    .whatsapp-bubble {
        max-width: 220px;
        padding: 12px 16px;
        bottom: 70px;
    }
    
    .bubble-text strong {
        font-size: 13px;
    }
    
    .bubble-text span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .whatsapp-toggle {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-toggle-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-toggle-button i {
        font-size: 22px;
    }
    
    .whatsapp-toggle-alert {
        width: 300px;
        right: -15px;
    }
    
    .alert-content {
        padding: 15px;
    }
    
    .whatsapp-alert-button {
        padding: 10px 16px;
        font-size: 13px;
    }
}
