
:root {
    --primary-blue: #357af3;
    --secondary-blue: #30ddff;
    --text-gray: #444444;
    --light-bg: #e6ebfe;
    --white: #ffffff;
    --yellow: #ffd814;
    
    /* Apenas definição das fontes */
    --title-font: 'Montserrat', sans-serif;
    --text-font: 'Open Sans', sans-serif;
}



 body {zoom: 95%;}

/* Aplicação das fontes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font);
}

body, p, span, a, li, label {
    font-family: var(--text-font);
    font-weight: 400;
    overflow-x: hidden;
}

.google-rating-mobile {
    display: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header/Nav Styles Refinados */
.header {
    background: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: none;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

.logo-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.brand-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand-text {
    color: #FFf;
    font-size: 1rem;
    font-weight: 500;
}

.phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    padding: 0.25rem 0rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold !important;
    color: #fde560;;
    text-decoration: none !important;
    padding-right: 1px;
    
}

.phone-badge span {
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none !important;
}

.phone-badge i {
    font-size: 1rem;
    font-weight: bold !important;
    padding-right: 1px; 
    
}

@media (max-width: 1166px) {
    .brand-text {
        font-size: 0.95rem;
    }
    
    .phone-badge {
        font-size: 0.85rem;
    }
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-left: auto;
}

@media (max-width: 1181px) {
   .nav-menu { display: none; }
}

.nav-link {
    position: relative;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #FFD700 !important; /* Cor amarela no hover */
    transition: color 0.2s ease;
}

.nav-link i {
    font-size: 1.2rem;
}

.services-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: -12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 260px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.services-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.dropdown-link:hover {
    color: var(--text-dark);
    background: #f8f9fa;
}

.dropdown-link svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.services-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.services-link::after {
    content: '';
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4L5 7L8 4' stroke='%23444444' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

.services-dropdown:hover .services-link::after {
    transform: rotate(180deg);
}

.phone-button {
    background: linear-gradient(45deg, #ffd814, #ffeb3b);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(255, 216, 20, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.phone-button:hover {
    color: var(--text-dark);
}

.phone-button strong {
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 1180px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    amp-sidebar {
        width: 300px;
        background: var(--white);
    }

    .mobile-menu {
        padding: 2rem;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .mobile-nav-link i {
        font-size: 1.2rem;
        color: var(--primary-blue);
    }

    .mobile-dropdown {
        padding: 0;
        border: none;
    }

    .mobile-dropdown section {
        border: none;
    }

    .mobile-dropdown-header {
        padding: 1rem 0;
        border-bottom: 1px solid var(--light-bg);
        color: var(--text-gray);
        background: none;
    }

    .mobile-dropdown-content {
        padding: 0.5rem 1rem;
        background: var(--light-bg);
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 80px 0;
    background: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.1;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: fadeInSlow 2.5s ease-in-out forwards;
    }

    @keyframes fadeInSlow {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    
    
  
}

.feature-check {
    color: var(--primary-blue);
    font-size: 24px;
    flex-shrink: 0;
}

.hero-feature p {
    color: var(--text-gray);
    line-height: 1.5;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.rating-stars {
    color: #FBC02D;
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* Remove sublinhado */
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    animation: pulse 1.2s infinite;
       
       
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            
        }
        
        70% {
            transform: scale(1.05);
            
        }
        
        100% {
            transform: scale(1);
            
        }
    
    
}
.btn-primaryHero {
    background: var(--primary-blue);
    color: white;
    animation: pulse 1.2s infinite;
       
       
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            
        }
        
        70% {
            transform: scale(1.05);
            
        }
        
        100% {
            transform: scale(1);
            
        }
    
    
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-light {
    background: #f8f9fa;
    color: var(--text-dark);
}

.hero-image {
    position: relative;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.badge {
    color: var(--text-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-image amp-img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 1166px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-badges {
        flex-direction: column;
    }
}

/* Refinamentos estilo Framer */
.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: none;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
}

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

.nav-link i {
    font-size: 1.2rem;
}

.services-dropdown .nav-link::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat 50% 50%;
    transition: transform 0.3s ease;
}

.services-dropdown:hover .nav-link::after {
    transform: rotate(180deg);
}

.dropdown-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(53, 122, 243, 0.1);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dropdown-link i {
    font-size: 20px;
    color: var(--primary-blue);
}

.phone-button {
    background: linear-gradient(45deg, #ffd814, #ffeb3b);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(255, 216, 20, 0.2);
}

.phone-button:hover {
    color: var(--text-dark);
}

/* Ícones nos botões */
.btn-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .mobile-nav-link {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .mobile-nav-link i {
        font-size: 1.2rem;
        color: var(--primary-blue);
    }
}

.services-link i {
    font-size: 18px;
    color: var(--text-gray);
}

/* Remover qualquer margin que possa estar interferindo */
.hero-section * {
    margin-top: 0;
}

.cta-icon {
    font-size: 18px;
    margin-right: 6px;
}

.features-section {
    background: var(--primary-blue);
    padding: 80px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 24px;
}

/* Título e ícone na mesma linha */
.feature-icon {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-icon i {
    width: 38px;
    height: 38px;
    background: white; /* Fundo branco */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue); /* Cor do ícone igual ao fundo da seção */
}

.feature-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: inline;
}

.feature-text {
    color: white !important;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

/* Responsivo */
@media (max-width: 1166px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-section {
        padding: 60px 0;
    }

    .feature-title {
        font-size: 18px;
    }
}

/* Seção Principal */
.why-section {
    text-align: center;
    padding: 80px 0;
    background-color: #f5f5f5;
}

.why-section .section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: normal;
    color: #357af3;
}

.why-section .section-title strong {
    font-weight: 700;
}

.why-section .section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
}

.why-section .scroll-icon {
    color: var(--primary-blue);
    font-size: 32px;
    margin-bottom: 60px;
}

.why-section .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}

.why-section .before-after-title {
    margin-bottom: 20px;
}

.why-section .before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-section .before-after-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.why-section .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.why-section .benefit-icon {
    background: var(--primary-blue);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.why-section .benefit-item span {
    font-size: 15px;
    line-height: 1.4;
}

.why-section .satisfaction-badge {
    background: #FFD700;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 24px 0;
    width: 100%;
    justify-content: center;
    
}

.why-section .satisfaction-text {
    margin-bottom: 32px;
    line-height: 1.6;
   
}

.why-section .cta-title {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: normal;
}

.why-section .cta-title strong {
    font-weight: 700;
}

.why-section .cta-group {
    display: flex;
    gap: 12px;
}

@media (max-width: 1166px) {
    .why-section .content-grid {
        grid-template-columns: 1fr;
    }
    
    .why-section .cta-group {
        flex-direction: column;
    }
}

.testimonials-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    min-height: 100px;
    overflow: visible;
}

h2.testimonials-title {
    all: unset;
    display: block;
    font-family: inherit;
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 300 !important;
    color: #357af3;
}

/* Strong mais grosso e azul */
h2.testimonials-title strong {
    font-family: inherit;
    font-weight: 800 !important;
    color: #357af3 !important; /* Cor azul específica */
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.scroll-icon-dark {
    color: #333;
    font-size: 32px;
    display: block;
    margin: 32px auto;
    animation: bounce 2s infinite forwards;
}

.reviews-container {
    width: 100%;
    height: auto;
    margin-top: 80px;
}

.cta-section {
    background: linear-gradient(rgba(45, 206, 255, 0.92), rgba(45, 206, 255, 0.92)),
                url('../images/fundo-site.webp') center/cover;
        background-position: bottom;        
    padding: 100px 20px;
    text-align: center;
    position: relative;
    color: white;
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.cta-title strong {
    color: white;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* Remove sublinhado */
    font-weight: 500;
}

.cta-btn.primary {
    background: var(--primary-blue);
    color: white;
}

.cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

.cta-btn.secondary {
    background: #f8f9fa;
    color: #333 !important; /* Forçando a cor escura */
}

/* Para garantir que tanto o ícone quanto o texto fiquem escuros */
.cta-section .cta-btn.secondary i,
.cta-section .cta-btn.secondary span {
    color: #333 !important;
}

@media (max-width: 1166px) {
    .cta-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .cta-section {
        padding: 80px 20px;
    }
}

.how-section {
    padding: 80px 20px;
    background: #f8f9fa;
    
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* Para posicionamento do rating */
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.video-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%; /* Garante altura total */
}

.how-title {
    font-size: 42px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: normal;
}

.how-title .limpeza {
    font-weight: 700;
}

.video-container {
    position: relative;
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    height: calc(100% - 100px); /* Altura total menos espaço do título */
}

/* Garantindo que o vídeo preencha o container */
.video-container amp-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reduzido o gap entre os cards */
    background: white;
    padding: 20px; /* Reduzido o padding */
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    margin-bottom: 16px; /* Espaço entre features e Google card */
}

.feature-card {
    padding-bottom: 12px; /* Reduzido o padding bottom */
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.feature-card:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.feature-title {
    font-size: 15px;
    margin-bottom: 12px;
    margin-left: 10px;
    color: var(--text-dark);
    font-weight: 600;
    color: #fff;
}

.feature-title .blue {
    color: var(--primary-blue);
    font-weight: 700;
}

.feature-text {
    color: #333 !important; /* Forçando cor preta nos parágrafos */
    line-height: 1.6;
    font-size: 16px;
}

.google-rating-card {
    background: white;
    padding: 16px 20px; /* Mesmo padding lateral do features */
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: auto; /* Remove largura fixa */
    justify-content: center;
}

.google-rating-card span {
    color: var(--text-dark);
}

.google-rating-card span:nth-child(2) {
    color: #FFC107;
    font-size: 20px;
}

@media (max-width: 1166px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-title {
        font-size: 32px;
        text-align: left;
    }

    .features-cards {
        padding: 24px;
    }

    .google-rating-card {
        width: 100%;
        justify-content: center;
    }
}

/* Nova seção de proteção */
.protection-section {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
                url('../images/protecao-que-seu-sofa-merece.webp') center/cover;
    padding: 80px 20px;
    
   
}

.protection-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.protection-title {
    font-size: 32px;
    line-height: 1.3;
}

.protection-title .blue {
    color: var(--primary-blue);
}

.protection-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.protection-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 18px;
}

.protection-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

@media (max-width: 1166px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .protection-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.quote-section {
    background: var(--primary-blue);
    padding: 80px 20px;
    color: white;
}

.quote-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Proporção 60/40 */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-title {
    font-weight: normal;
    margin-bottom: 24px;
    text-align: left;
    font-size: 42px;
}

.quote-title strong {
    font-weight: 700;
}

/* Formulário */
.form-container {
    background: white;
    padding: 26px; /* Reduzido padding */
    border-radius: 16px;
    padding-top: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
    gap: 12px;
}

/* Grid do formulário */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Reduzido gap */
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
}

/* Linha para Nome e Apelido */
.name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

/* Campos do formulário */
.form-input {
    width: 100%;
    padding: 12px 16px; /* Reduzido padding vertical */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #000 !important;
    box-sizing: border-box;
}

/* Campo de mensagem */
.form-field.full textarea {
    min-height: 120px; /* Reduzido altura */
    resize: vertical;
}

/* Botão de submit */
.submit-button {
    width: 100%;
    margin: 16px 0; /* Reduzido margin */
    padding: 14px;
    background: #FFB800; /* Amarelo */
    color: #000;;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    letter-spacing: 0px;
    font-family: var(--text-font);
}

.submit-button:hover {
    background: #e6a600; /* Amarelo mais escuro no hover */
}

/* Termos */
.terms {
    margin-top: 12px; /* Reduzido margin */
    gap: 8px;
}

.terms label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
}

.terms a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.quote-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.info-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
}

.info-item i {
    color: var(--primary-blue);
    font-size: 24px;
    background: #f0f7ff;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.contact-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.phone-btn {
    background: #FFB800; /* Amarelo */
    color: white;
}

.footer {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.svg') center/cover;
    opacity: 0.03;
    pointer-events: none;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.footer-info {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

.footer-info p {
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
}

.qr-code img {
    width: 100px; /* Reduzido tamanho */
    height: 100px;
    display: block;
}

.qr-code p {
    font-size: 11px;
    color: #666;
    margin: 0;
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.social-link:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-link {
    color: var(--text-gray);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 568px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 16px;
    }
}

.services-link i {
    color: white;
    margin-left: 4px;
}

.nav-link.services-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link-wrapper {
    position: relative;
    display: inline-block;
}

.new-badge {
    position: absolute;
    top: -18px;
    right: 0;
    left: 1;
    background: #FFD700;
    color: var(--text-dark);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
    text-transform: lowercase;
    z-index: 1;
}

@media (max-width: 1166px) {
    .new-badge {
        top: -4px;
        right: 4px;
    }
}

/* Estilos específicos para os CTAs desta seção */
.why-section .cta-primary,
.why-section .cta-secondary,
.why-section .cta-tertiary {
    padding: 14px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s;
}

.why-section .cta-primary {
    background: var(--primary-blue);
    color: white;
}

.why-section .cta-secondary {
    background: #25D366;
    color: white;
}

.why-section .cta-tertiary {
    background: #f8f9fa;
    color: var(--text-dark);
}

/* Estilos para o carousel */
.why-section .carousel-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* Proporção 3:2 (400/600 = 0.6667) */
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.why-section amp-carousel {
    border-radius: 12px;
}

.why-section .before-after-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.why-section .before-after {
    padding: 0 20px;
}

.why-section .benefits-list .section-title {
    font-weight: normal;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 28px;


   
}

.why-section .benefits-list .section-title strong {
    font-weight: 700;
}

.why-section .cta-title {
    font-weight: normal;
    font-size: 24px;
}

.why-section .cta-title strong {
    font-weight: 700 !important;
}

/* Container da direita para agrupar os elementos */
.right-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante altura total */
    justify-content: space-between; /* Distribui espaço verticalmente */
}

/* Textos dos cards */
.info-text {
    color: #333 !important;
    font-size: 16px;
    line-height: 1.5;
}

.info-item {
    color: #333 !important;
}

/* Textos dos termos */
.terms {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333 !important;
}

.terms label span {
    color: #333 !important;
    font-size: 14px;
}

.terms label a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Reset geral primeiro */
h2.cta-title {
    all: unset;
    display: block;
    font-family: inherit;
    font-size: 42px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 300 !important; /* Mais fino */
    color: var(--text-dark);
}

/* Strong mais grosso */
h2.cta-title strong {
    font-family: inherit;
    font-weight: 800 !important; /* Mais grosso */
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.qr-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.qr-code {
    position: relative;
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qr-code img {
    width: 120px;
    height: 120px;
    display: block;
}

.qr-code p {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    margin: 0;
}

.services-carousel {
    margin: 2rem 0;
}

.service-card {
    position: relative;
    width: 300px;
    height: 280px;
    margin-right: 1rem;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.service-label {
    padding: 1rem;
    text-align: center;
}

.service-label span {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-price {
    color: #357af3;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.service-link:hover {
    color: #357af3;
}

.cookie-consent-banner {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #ffffff;
padding: 8px 16px;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
z-index: 99999;
font-size: 14px;
}

.cookie-consent-content {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
max-width: 1400px;
margin: 0 auto;
min-height: 36px;
}

.cookie-consent-banner small {
color: #333;
flex: 0 0 auto;
}

.cookie-consent-buttons {
display: flex;
gap: 8px;
flex: 0 0 auto;
}

.cookie-consent-button {
border: none;
border-radius: 4px;
padding: 6px 12px;
cursor: pointer;
font-size: 13px;
font-weight: 500;
transition: all 0.2s ease;
white-space: nowrap;
height: 30px;
line-height: 18px;
}

.button1 {
background: #000;
color: white;
}

.button1:hover {
background: #5a3dd4;
}

.btn-outline {
background: transparent;
border: 1px solid #357AF3;
color: #357AF3;
}

.btn-outline:hover {
background: #f5f2ff;
}

.btn-grayscale {
background: #666;
color: white;
}

.btn-grayscale:hover {
background: #555;
}

.cookie-consent-options {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background: white;
padding: 12px;
border-top: 1px solid #eee;
box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
display: flex;
flex-wrap: wrap;
gap: 12px;
justify-content: center;
}

.cookie-consent-options label {
display: flex;
align-items: center;
gap: 6px;
font-size: 13px;
color: #444;
cursor: pointer;
}

.cookie-consent-options input[type="checkbox"] {
width: 14px;
height: 14px;
cursor: pointer;
}

@media (max-width: 1166px) {
.cookie-consent-banner {
padding: 6px;
}

.cookie-consent-content {
flex-wrap: wrap;
gap: 10px;
min-height: auto;
padding: 10px
}

.cookie-consent-banner small {
font-size: 11px;
text-align: center;
width: 100%;
}

.cookie-consent-buttons {
width: 100%;
justify-content: center;
}

.cookie-consent-button {
padding: 8px 16px;
font-size: 11px;
height: 32px;
}

.cookie-consent-options {
padding: 8px;
}

.cookie-consent-options label {
font-size: 11px;
}

.cookie-consent-options input[type="checkbox"] {
width: 12px;
height: 12px;
}
}

@media (max-width: 360px) {
.cookie-consent-button {
padding: 4px 6px;
font-size: 10px;
}

.cookie-consent-banner small {
font-size: 10px;
}
}

    .complementary-services {
        padding: 60px 0 90px;
        background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
    }

    .section-title {
        text-align: center;
        font-size: 32px;
        line-height: 1.3em;
        margin-bottom: 16px;
    }

    .section-subtitle {
        text-align: center;
        color: #666;
        max-width: 600px;
        margin: 0 auto 32px;
        line-height: 1.6;
    }

    .services-row {
        display: flex;
        width: 100%;
        overflow-x: visible;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .services-row::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        position: relative;
        flex: 0 0 300px;
        height: 300px;
        scroll-snap-align: start;
        overflow: hidden;
        border-radius: 12px;
    }

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

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

    .service-label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.95);
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .service-label span {
        color: #333;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
    }

    .service-info {
        position: absolute;
        bottom: 16px;
        right: 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .price {
        background: rgba(53, 122, 243, 0.9);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .learn-more {
        background: rgba(255, 255, 255, 0.95);
        color: #357af3;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .learn-more:hover {
        background: #357af3;
        color: white;
        transform: translateX(-4px);
    }

    @media (max-width: 1166px) {
        .service-card {
            flex: 0 0 250px;
            height: 180px;
        }
    }

    .faq-content-section {
    padding: 80px 20px;
    background: #fff;
}

.faq-content-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-title {
    font-size: 32px;
    color: #357af3;
    margin-bottom: 30px;
}

.custom-accordion {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #fff;
    cursor: pointer;
}

.accordion-content {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.content-side {
    position: relative;
    background-image: url('../images/fundo-site.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
}

.content-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.95);
    z-index: 1;
}

.content-title {
    position: relative;
    z-index: 2;
    font-size: 32px;
    color: #357af3;
    margin-bottom: -10px;
    text-align: left;
    padding-left: 20px;
}

.content-overlay {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: calc(100% - 102px); /* Ajustado para altura do título + padding */
    overflow-y: auto;
}

.content-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 24px;
}

.content-text {
    color: #444;
    line-height: 1.8;
    
}

.content-text p {
    margin-bottom: 16px;
}

@media (max-width: 1166px) {
    .faq-content-container {
        grid-template-columns: 1fr;
    }

    .faq-content-section {
        padding: 40px 20px;
    }

    .content-overlay {
        height: calc(100% - 82px); /* Ajustado para título menor */
    }

    .content-title {
        font-size: 24px;
    }

    .content-subtitle {
        font-size: 18px;
    }
}

.footer-nav-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.8rem 0;
color: #666;
text-decoration: none;
transition: all 0.3s ease;
}

.footer-nav-item:hover {
color: #357af3;
transform: translateX(5px);
}

.nav-icon {
width: 24px;
height: 24px;
stroke-linecap: round;
stroke-linejoin: round;
}

.footer-nav-item:hover .nav-icon {
stroke: #357af3;
}

.footer-nav-item i {
font-size: 1.5rem;
color: #357af3;
}

.footer-nav-item:hover i {
transform: scale(1.1);
transition: transform 0.3s ease;
}

.whatsapp-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 30px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
cursor: pointer;
z-index: 1000;
transition: transform 0.3s ease;
}

.whatsapp-button:hover {
transform: scale(1.1);
}

.whatsapp-chat {
position: fixed;
bottom: 90px;
right: 20px;
width: 300px;
background: white;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 1000;
display: none;
overflow: hidden;
}

.chat-header {
background: #075E54;
color: white;
padding: 15px;
display: flex;
justify-content: space-between;
align-items: flex-start;
}

.chat-header-content {
display: flex;
gap: 10px;
align-items: center;
}

.chat-logo {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
}

.chat-title {
flex: 1;
}

.chat-title h4 {
margin: 0;
font-size: 16px;
}

.chat-title p {
margin: 0;
font-size: 12px;
opacity: 0.8;
}

.close-chat {
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
padding: 0;
}

.chat-body {
padding: 20px;
background-image: url('../images/whatsapp-default.webp');
height: 200px;
}

.chat-message {
background: white;
padding: 10px 15px;
border-radius: 8px;
max-width: 80%;
margin-bottom: 10px;
}

.chat-message p {
margin: 5px 0;
color: #333;
}

.chat-footer {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 15px;
background: #F0F0F0;
text-decoration: none;
color: #075E54;
font-weight: 500;
transition: background 0.3s ease;
}

.chat-footer:hover {
background: #E0E0E0;
}

.mobile-only {
display: none;
}

@media (max-width: 480px) {
.whatsapp-chat {
width: calc(100% - 40px);
bottom: 80px;
}
}

