:root {
    --primary-color: #42A5F5;
    /* Azul da placa */
    --secondary-color: #FFC107;
    /* Amarelo do sol/texto */
    --accent-color-green: #4CAF50;
    /* Verde do balão */
    --accent-color-red: #E53935;
    /* Vermelho do balão (um pouco mais suave para web) */
    --text-color-dark: #263238;
    /* Cinza escuro para texto */
    --text-color-light: #FFFFFF;
    --bg-light: #F5F8FA;
    /* Um cinza/azul bem claro para seções */
    --bg-white: #FFFFFF;
    --shadow-color: rgba(0, 0, 0, 0.1);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-color-dark);
    background-color: var(--bg-white);
}

/* Utilitários */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-content h1 span {
    color: var(--secondary-color);
    display: block;
    /* Para quebrar linha ou destacar */
}

.header-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 50px;
    /* Mais arredondado */
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #FFB300;
    /* Amarelo mais escuro no hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.btn-primary:hover {
    background-color: #29B6F6;
    /* Azul mais claro no hover */
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}


/* Seções */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.bg-primary .section-title,
.bg-primary .section-subtitle {
    color: var(--text-color-light);
}


/* Cards (Reutilizável) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    /* Faz o conteúdo crescer para preencher o card */
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-text {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
    /* Alinha o botão na base do card-content */
}


/* Slideshow */
.slideshow-container {
    position: relative;
    height: 450px;
    /* Ajuste conforme necessário */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
    background: var(--bg-white);
}

.nav-prev {
    left: 15px;
}

.nav-next {
    right: 15px;
}

.arrow {
    width: 0;
    height: 0;
    border-style: solid;
}

.arrow.left {
    border-width: 10px 14px 10px 0;
    border-color: transparent var(--primary-color) transparent transparent;
}

.arrow.right {
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent var(--primary-color);
}

/* Decoração com SVGs (Árvores, Sol) */
.section#saloes-showcase {
    /* Renomeado para clareza */
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.decorative-element {
    position: absolute;
    z-index: 0;
    opacity: 0.15;
    /* Mais sutil */
}

.decorative-element img {
    height: auto;
}

.deco-sol-top-left {
    top: -50px;
    left: -80px;
    width: 250px;
    transform: rotate(-15deg);
}

.deco-folhas-bottom-right {
    bottom: -60px;
    right: -70px;
    width: 220px;
    transform: rotate(20deg);
    opacity: 0.1;
}

#saloes-showcase .section-title {
    position: relative;
    z-index: 1;
}

#saloes-showcase .slideshow-container {
    position: relative;
    z-index: 1;
}


/* Seção "Tudo Incluso" */
.tudo-incluso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.incluso-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    /* Borda infantil amarela */
    border: 5px solid #FFC107;
    position: relative;
}

/* Efeito decorativo de borda infantil */
.incluso-image {
    position: relative;
}

.incluso-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px dashed #FFC107;
    border-radius: 20px;
    opacity: 0.6;
    z-index: -1;
}

.incluso-list {
    list-style: none;
    padding: 0;
}

.incluso-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    gap: 1rem;
}

.incluso-item svg {
    /* Ícone de checkmark */
    width: 20px;
    height: 20px;
    fill: var(--accent-color-green);
    margin-right: 12px;
    flex-shrink: 0;
}

/* Seção Call to Action Intermediária */
.cta-banner {
    padding: 60px 20px;
    /* SUBSTITUA PELA SUA FOTO DE FUNDO PARA ESTE BANNER */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/card-imgs/frente.webp') center/cover fixed;
    text-align: center;
    color: var(--text-color-light);
    border-radius: 15px;
    /* Se não for full-width section */
    margin: 60px auto;
    /* Se não for full-width section */
    max-width: 1140px;
    
}

.cta-banner h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Formulário de Contato */
.contact-form-container {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 25px var(--shadow-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Estilo específico para o select */
.form-group select {
    background-color: white;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
                      linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px),
                        calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

/* Hover no select */
.form-group select:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

/* Estilo para as opções do select (limitado, mas funciona em alguns browsers) */
.form-group select option {
    padding: 10px;
    font-size: 1rem;
    background-color: white;
    color: var(--text-color-dark);
}

.form-group select option:hover {
    background-color: var(--bg-light);
}

/* Container do select com ícone personalizado */
.form-group {
    position: relative;
}

.form-group select {
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(66, 165, 245, 0.3);
    /* Azul mais claro */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .btn {
    width: 100%;
    font-size: 1.1rem;
}


/* Footer */
.footer {
    background-color: var(--text-color-dark);
    color: #aaa;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    margin: 0 15px;
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.social-links img {
    width: 28px;
    height: 28px;
    filter: grayscale(100%) brightness(1.5);
    /* Para ficar claro no fundo escuro */
    transition: filter 0.3s ease;
}

.social-links a:hover img {
    filter: none;
}


/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.5);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-tooltip {
    background: var(--bg-white);
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color-dark);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    }

    50% {
        box-shadow: 0 5px 20px rgba(76, 175, 80, 0.6);
    }

    100% {
        box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
    }
}


/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 95%;
    position: relative;
    z-index: 1002;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-color-dark);
}

#modalFestaTitle {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.9rem;
    font-weight: 600;
}

#modalFestaDescription {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

#modalFestaItens {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

#modalFestaItens li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    display: flex;
    align-items: center;
}

#modalFestaItens li:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("../images/svg/sun.webp");
    background-size: contain;
    margin-right: 10px;
}

#modalFestaItens li:last-child {
    border-bottom: none;
}

#modalFestaCta {
    margin-top: 15px;
    background-color: var(--accent-color-green);
    color: var(--text-color-light);
}

#modalFestaCta:hover {
    background-color: #388E3C;
}


/* Responsividade */
@media (max-width: 992px) {
    .header-content h1 {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .deco-sol-top-left {
        width: 200px;
        left: -60px;
        top: -40px;
    }

    .deco-folhas-bottom-right {
        width: 180px;
        right: -50px;
        bottom: -40px;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 500px;
        padding: 80px 0;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .tudo-incluso-grid {
        grid-template-columns: 1fr;
    }

    .incluso-image {
        margin-bottom: 30px;
    }

    .incluso-image::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-width: 2px;
    }

    .incluso-image img {
        border-width: 3px;
        height: 400px;
    }

    .incluso-image {
        margin-bottom: 30px;
    }

    .deco-sol-top-left,
    .deco-folhas-bottom-right {
        display: none;
    }

    /* Esconder decorativos em telas pequenas */
    .modal-content {
        padding: 25px;
    }

    #modalFestaTitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .header-content h1 {
        font-size: 1.7rem;
    }

    .slideshow-container {
        height: 300px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
    }

    .arrow.left {
        border-width: 8px 10px 8px 0;
    }

    .arrow.right {
        border-width: 8px 0 8px 10px;
    }
}

/* Header */
.header {
    position: relative;
    /* Para futuros elementos posicionados absolutamente, se necessário */
    height: 85vh;
    /* Você pode ajustar, 100vh é tela cheia, 85vh é uma boa altura de herói */
    min-height: 600px;
    /* Garante uma altura mínima */
    /* SUBSTITUA PELA SUA FOTO DA FACHADA */
    background-image: url('../images/card-imgs/IMG_9184.webp');
    /* << IMPORTANTE: COLOQUE O CAMINHO CORRETO */
    background-size: cover;
    background-position: center center;
    /* Centraliza a imagem */
    background-repeat: no-repeat;
    display: flex;
    /* Habilita flexbox para alinhar o .container */
    align-items: center;
    /* Alinha verticalmente o .container (que contém o .header-content) */
    /* Remova justify-content se quiser que o .container decida o alinhamento do texto */
}

/* Ajuste para o container dentro do header */
.header .container {
    /* O .container já tem max-width e margin: 0 auto; por padrão.
       Vamos fazer ele ser um flex container para posicionar o .header-content */
    width: 100%;
    /* Garante que o container ocupe a largura para o flex funcionar */
    display: flex;
    justify-content: flex-start;
    /* Alinha o .header-content à ESQUERDA */
    /* Para alinhar à DIREITA, use: justify-content: flex-end; */
}

.header-content {
    max-width: 550px;
    /* Largura máxima para o bloco de texto, ajuste conforme necessário */
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.65);
    /* Overlay escuro para contraste com o texto branco */
    color: var(--text-color-light);
    /* Garante que o texto seja branco */
    border-radius: 12px;
    /* Bordas arredondadas para o bloco de texto */
    text-align: left;
    /* Alinha o texto DENTRO do bloco à esquerda */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    /* Sombra sutil para destacar */
}

.header-content h1 {
    font-family: var(--font-primary);
    font-size: 2.6rem;
    /* Pode precisar ajustar dependendo do espaço */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    /* O text-shadow do H1 original pode não ser mais necessário devido ao overlay */
}

.header-content h1 span {
    color: var(--secondary-color);
    /* Amarelo/Laranja da sua paleta */
    display: inline;
    /* Para que o span não quebre a linha desnecessariamente */
}

.header-content p {
    font-size: 1.1rem;
    /* Ajuste conforme necessário */
    margin-bottom: 30px;
}

/* Estilo para os botões dentro do header-content */
.header-content .btn {
    margin-right: 15px;
    /* Espaço entre os botões se estiverem na mesma linha */
    margin-bottom: 10px;
    /* Espaço se quebrarem linha em telas menores */
}

.header-content .btn:last-child {
    margin-right: 0;
}

.header-content .btn-outline {
    background-color: transparent;
    color: var(--text-color-light);
    /* Cor do texto do botão outline */
    border: 2px solid var(--text-color-light);
    /* Cor da borda */
}

.header-content .btn-outline:hover {
    background-color: var(--text-color-light);
    /* Fundo branco no hover */
    color: var(--primary-color);
    /* Texto azul (ou outra cor de destaque) no hover */
    border-color: var(--text-color-light);
}


/* AJUSTES RESPONSIVOS PARA O HEADER */
@media (max-width: 992px) {
    .header-content {
        max-width: 50%;
        /* Em telas médias, o conteúdo pode ocupar um pouco mais */
        padding: 30px;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        /* Altura automática para acomodar conteúdo */
        min-height: 550px;
        /* Ainda manter uma boa altura mínima */
        padding: 60px 0;
        /* Adiciona padding vertical */
        /* Centraliza o bloco de conteúdo em telas menores */
    }

    .header .container {
        justify-content: center;
        /* Centraliza o .header-content */
    }

    .header-content {
        max-width: 90%;
        /* Ocupa quase toda a largura */
        text-align: center;
        /* Centraliza o texto DENTRO do bloco */
        margin-left: auto;
        margin-right: auto;
    }

    .header-content .btn {
        display: block;
        /* Faz os botões ocuparem a linha inteira e empilharem */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
        /* Espaço entre botões empilhados */
        width: fit-content;
        /* Ajusta a largura ao conteúdo do botão */
        max-width: 300px;
        /* Largura máxima para os botões */
    }

    .header-content .btn:last-child {
        margin-bottom: 0;
    }
}

/* ... Seu CSS existente ... */

.section-como-chegar {
    position: relative;
    /* Para posicionar elementos filhos ou pseudo-elementos */
    padding: 100px 0;
    /* Mais padding para dar espaço ao fundo */
    background-color: #FFC107;
    /* Fundo amarelo conforme solicitado */
    overflow: hidden;
    /* Para garantir que os tracejados não vazem se forem pseudo-elementos */
}

/* Estilo para o fundo tracejado (exemplo com CSS gradients) */
.section-como-chegar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    /* Bem sutil */
    z-index: 0;
    /* Exemplo de tracejado diagonal */
    background-image:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 15px,
            /* Espaço transparente */
            var(--primary-color) 15px,
            /* Cor da linha */
            var(--primary-color) 18px
            /* Largura da linha */
        );
    /* Para um tracejado mais "curvo" ou orgânico, um SVG como background-image seria melhor:
    background-image: url('../images/svg/caminho-tracejado.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; // ou cover, dependendo do SVG
    */
}


.como-chegar-card {
    max-width: 550px;
    /* Largura do card */
    margin: 0 auto;
    /* Centraliza o card */
    position: relative;
    /* Para ficar acima do pseudo-elemento ::before */
    z-index: 1;
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    /* Adicione um padding interno se o .card-content não for suficiente */
}

.como-chegar-card .card-content {
    padding: 35px 40px;
}

/* Se precisar de um título de seção um pouco menor para dentro do card */
.section-title--smaller {
    font-size: 1.8rem;
    /* Ajuste conforme necessário */
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.como-chegar-card .card-text {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.como-chegar-card .btn svg {
    transition: transform 0.3s ease;
}

.como-chegar-card .btn:hover svg {
    transform: scale(1.1);
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
    .section-como-chegar {
        padding: 80px 0;
    }

    .como-chegar-card .card-content {
        padding: 25px 30px;
    }

    .section-title--smaller {
        font-size: 1.6rem;
    }

    .como-chegar-card .btn {
        padding: 12px 25px;
        /* Botão um pouco menor */
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden; /* Começa escondido */
    transition: all 0.3s ease;
}

.overlay.show {
    opacity: 1;
    visibility: visible; /* Fica visível com a classe .show */
}

.success-card {
    position: fixed; /* Use fixed para centralizar na tela inteira */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Começa encolhido e no centro */
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 1000;
    opacity: 0; /* Começa invisível */
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Animação de "pulo" */
    max-width: 400px;
    width: 90%;
}

.success-card.show {
    transform: translate(-50%, -50%) scale(1); /* Cresce para o tamanho normal */
    opacity: 1; /* Fica visível */
}

.success-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* O checkmark '✓' é criado com CSS */
.success-card .icon::after {
    content: '✓';
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.success-card h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
    font-family: var(--font-primary);
}

.success-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.success-card .btn-close {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.success-card .btn-close:hover {
    background-color: #29B6F6;
    transform: translateY(-2px);
}

/* Animação de bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== SISTEMA DE ÍCONES ===== */
.icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    fill: currentColor;
}

.icon--small {
    width: 1em;
    height: 1em;
}

.icon--medium {
    width: 1.5em;
    height: 1.5em;
}

.icon--large {
    width: 2em;
    height: 2em;
}

.icon--primary {
    color: var(--primary-color);
}

.icon--secondary {
    color: var(--secondary-color);
}

.icon--success {
    color: var(--accent-color-green);
}

/* Ícones com texto */
.icon-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-text--center {
    justify-content: center;
}

/* Grid de features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.feature-card p {
    color: #666;
}

/* Ícones de recursos/features */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px auto; /* Centraliza horizontalmente */
    box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3);
}

/* Ícones dos cards */
.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Botões com ícones */
.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-with-icon i {
    font-size: 1.1em;
}

/* ===== FIM SISTEMA DE ÍCONES ===== */

/* Responsivo */
@media (max-width: 600px) {
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .success-card {
        padding: 30px 20px;
    }
    
    /* Select maior e mais fácil de usar em mobile */
    .form-group select {
        padding: 15px 40px 15px 15px;
        font-size: 1.1rem;
        background-position: calc(100% - 18px) calc(1em + 2px),
                            calc(100% - 13px) calc(1em + 2px);
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 1.1rem;
    }
    
    /* Ícones maiores em dispositivos móveis para melhor usabilidade */
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin: 0 auto 20px auto;
    }
    
    .features-grid {
        gap: 25px;
        margin-top: 30px;
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    /* WhatsApp Button maior em mobile */
    .whatsapp-btn {
        width: 65px;
        height: 65px;
    }
    
    .whatsapp-btn svg {
        width: 32px;
        height: 32px;
    }
}

/* Media query adicional para telas muito pequenas */
@media (max-width: 480px) {
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Ícones das redes sociais maiores em mobile */
    .social-links a {
        margin: 0 20px;
        font-size: 2.2rem;
    }
    
    .social-links img {
        width: 35px;
        height: 35px;
    }
}