
:root {
    --primary: #FFB612;
    --primary-light: rgba(0, 121, 242, 0.1);
    --secondary: #ff9900;
    --success: #22c55e;
    --bg: #ffffff;
    --bg-muted: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 50;
    border-bottom: 1px solid var(--border);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 121, 242, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 10px;
    background: var(--primary-light);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    
    /* ADICIONE ESTAS LINHAS PARA CENTRALIZAR */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.location-badge-mobile, .location-badge-mobile2 {
    display: none;
}

.location-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    
    
    
    .location-badge {
        display: none;
        
    }
    
    .hero-badge {display: none !important;}
    .hero {  margin-top: 5rem;   padding: 4rem 0 !important;}
    
    .location-badge-mobile {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 10px 10px;
        width: 100%;
        background: var(--primary-light);
        font-size: 0.7rem;
        font-weight: 500;
        color: var(--text-muted);
        
        /* ADICIONE ESTAS LINHAS PARA CENTRALIZAR */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .location-badge-mobile2 {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 10px 10px;
        width: 100%;
        background: var(--primary-light);
        font-size: 0.7rem;
        font-weight: 500;
        color: var(--text-muted);
        
        /* ADICIONE ESTAS LINHAS PARA CENTRALIZAR */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* Estilos do Modal */
.modal-overlay {
    display: none; 
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
}

#formLead {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#formLead input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    margin-top: 5rem;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at top right, rgba(0, 121, 242, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
     margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

h1 .highlight {
    color: var(--primary);
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 35rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.button-group {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .button-group { flex-direction: column; }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 121, 242, 0.3);
}

.btn-green {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 121, 242, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 121, 242, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-wd1 {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 80%;
}

.btn-wd2 {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 60%;
}

@media(max-width: 768px){
    .btn-wd1 {
        width: 100%;
    }
    
    .btn-wd2 {
        width: 100%;
    }
}

.btn-outline {
    background: transparent;
    color: #646464;
    border: 2px solid #646464;
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* SOBRE A NEWPET - FUNDO LARANJA #F4A400 */
.about-section {
    padding: 6rem 0;
    background-color: #F4A400; /* Cor exata solicitada */
    color: var(--text); /* Mantendo o tom escuro para contraste */
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;

    
}

/* SECTION PRODUTOS SLIDER */
.product-slider-section {
    padding: 5rem 0;
    background-color: var(--bg-muted);
    overflow: hidden; /* Esconde o que sai da tela */
}

.slider-wrapper {
    margin: 3rem 0;
    width: 100%;
    position: relative;
    display: flex;
}

.slider-track {
    display: flex;
    width: calc(250px * 12); /* Ajuste baseado no tamanho do item x quantidade total */
    animation: scroll 40s linear infinite; /* Tempo do loop */
}

.slider-track:hover {
    animation-play-state: paused; /* Pausa ao passar o mouse */
}

.slide-item {
    width: 230px;
    height: 300px;
    margin: 0 10px;
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.slide-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.slide-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.slide-item span {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
}

.slider-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Keyframes para o Movimento Infinito */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6)); /* Move exatamente metade do track */
    }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .slide-item {
        width: 180px;
        height: 240px;
    }
    .slide-item img {
        width: 110px;
        height: 110px;
    }
    .slider-track {
        width: calc(200px * 12);
        animation: scroll 25s linear infinite;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 6)); }
    }
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--text); /* Fundo escuro para o badge saltar aos olhos */
    padding: 1.5rem;
    border-radius: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge span {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    color: #F4A400; /* Número no laranja do fundo */
}

@media (max-width: 768px) {
    
    .experience-badge {
        display: none;
    }
    
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text);
}

/* Ajuste das tags e ícones para o fundo laranja */
.about-section .service-tag {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text);
}

.about-feature-item i {
    background: white; /* Ícones em fundo branco para melhor visibilidade */
    color: #F4A400;
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Botão com contraste no laranja */
.about-section .btn-primary {
    background: var(--text);
    color: white;
    border: none;
}

.about-section .btn-primary:hover {
    background: #000;
    transform: translateY(-3px);
}

/* HOW TO ORDER SECTION */
.how-to-order {
    background-color: var(--primary); /* O laranja da sua marca */
    padding: 6rem 0;
    position: relative;
}

.how-to-order .light-text {
    color: var(--text); /* Texto escuro para contraste no laranja */
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.how-card {
    background: rgba(255, 255, 255, 0.15); /* Branco translúcido para um efeito moderno */
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.how-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.how-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.how-icon {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.how-card h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.how-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.price-info-box {
    margin-top: 4rem;
    background: var(--text);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.price-info-box p {
    font-size: 1.1rem;
    max-width: 700px;
}

/* Botão escuro para destacar no laranja */
.btn-dark {
    background: #ffffff;
    color: var(--text);
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--bg-muted);
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* O Container principal */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Cria 6 colunas iguais */
    grid-template-rows: repeat(5, 1fr);    /* Cria 5 linhas iguais */
    gap: 16px;                             /* gap-4 do Tailwind */
    height: 512px;                         /* h-128 do Tailwind */
    width: 100%;
}

/* Estilo comum para todos os itens da galeria */
.item {
    border-radius: 24px;                   /* rounded-3xl */
    overflow: hidden;                      /* overflow-hidden */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); /* shadow-xl */
}

/* Estilo das imagens para preencherem o espaço sem distorcer */
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;                     /* object-cover */
}

/* Posicionamento específico de cada peça do quebra-cabeça */

.item-principal {
    grid-column: span 4;                   /* col-span-4 */
    grid-row: span 3;                      /* row-span-3 */
}

.item-lateral {
    grid-column: span 2;                   /* col-span-2 */
    grid-row: span 5;                      /* row-span-5 */
}

.item-inferior {
    grid-column: span 4;                   /* col-span-4 */
    grid-row: span 2;                      /* row-span-2 */
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.hero-image img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: rotate(0deg);
}

.floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@media (max-width: 1024px) {
    .floating-card { display: none; }
}

.floating-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 1.2rem;
}

.floating-card-text p:first-child {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text);
}

.floating-card-text p:last-child {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* BENEFITS SECTION */
.benefits {
    background: var(--bg-muted);
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 45rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FEATURE SECTION */
.feature {
    padding: 5rem 0;
}

.feature h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 40rem;
}

.feature-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-checklist svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.highlight-box {
    background: var(--primary-light);
    border: 1px solid rgba(0, 121, 242, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-box p {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    color: var(--text);
    margin: 0;
}

.feature-image {
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SERVICES DETAIL SECTION */
.services-detail {
    padding: 6rem 0;
    background-color: var(--bg);
}

.service-row {
    margin-bottom: 5rem;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-image {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 400px; /* Altura fixa para manter o padrão */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.25rem 1rem;
    background: var(--primary-light);
    color: var(--text);
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.service-content h3 i {
    color: var(--primary);
    margin-right: 10px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text);
}

.benefit-list i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .service-row.reverse .grid-2 {
        display: flex;
        flex-direction: column; /* No mobile a imagem fica em cima */
    }
    
    .service-row.reverse .service-image {
        order: -1; /* Força a imagem a aparecer antes do texto no mobile */
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content {
        text-align: center;
        align-items: center;
        margin-top: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.75rem;
    }
}

/* COMPARISON SECTION */
.comparison {
    padding: 5rem 0;
    background: white;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 800;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: var(--bg-muted);
}

/* TARGET SECTION */
.target {
    padding: 5rem 0;
    background: var(--bg-muted);
}

.target h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 800;
}

.target-list {
    list-style: none;
    max-width: 50rem;
    margin: 0 auto;
}

.target-list li {
    background: white;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.target-list svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

/* HOW TO ORDER */
.how-to {
    background: var(--text);
    color: white;
    padding: 5rem 0;
}

.how-to h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 800;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
}

.how-to .button-group {
    justify-content: center;
}

/* FAQ SECTION */
.faq {
    padding: 5rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
    font-weight: 800;
}

.faq-container {
    max-width: 50rem;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* RESET/ATUALIZAÇÃO RODAPÉ */
.main-footer {
    background: var(--text); /* O tom escuro que você já usa */
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #000; /* Laranja da marca */
    font-size: 1.0rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.0rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Deixa o logo branco se necessário */
}

/* Estilo dos Horários */
.schedule-item {
    display: flex;
    justify-content: space-between;
    
    font-size: 1.0rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item span {
    color: #000;
}

.schedule-item strong {
    color: #000;
}

.footer-note {
    font-size: 1.0rem;
    font-style: italic;
    margin-top: 1rem;
    color: #000!important; /* Em destaque para o cliente ler */
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: rgb(0, 0, 0);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--text);
    transform: translateY(-3px);
}

.footer-bottom {
    color: #000 !important;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsivo */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .footer-col h4, .schedule-item, .footer-social {
        justify-content: center;
    }
}
/* GOOGLE MAP SECTION */
.google-map {
    width: 100%;
    height: 200px;
    line-height: 0; /* Remove pequenos espaços abaixo do iframe */
    overflow: hidden;
    border-top: 4px solid var(--primary); /* Linha laranja para separar das seções anteriores */
}

.google-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(1.1); /* Um leve ajuste para combinar com o estilo do site */
    transition: filter 0.3s ease;
}

.google-map iframe:hover {
    filter: grayscale(0); /* O mapa ganha cor total ao passar o mouse */
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .google-map {
        height: 300px; /* Um pouco menor no celular para não ocupar a tela toda */
    }
}


/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    color:#fff;
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 40;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .floating-whatsapp { bottom: 1rem; right: 1rem; }
}
