/* CSS Variables & Theme Setup */
:root {
    --verde-claro: #a9cf44;
    --verde-escuro: #041204;
    --branco: #ffffff;
    --text-dark: #f5f5f5;
    --text-light: #a9cf44;
    --bg-light: #051505;
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #041204;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #041204;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--verde-claro);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--branco);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--verde-claro);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(169, 207, 68, 0.4);
}

.btn-primary:hover {
    background-color: var(--verde-escuro);
    color: var(--branco);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 151, 0, 0.4);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(4, 18, 4, 0.9);
    /* Fundo dark customizado com opacidade */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding var(--transition-speed);
    padding: 15px 0;
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--verde-claro);
    transition: width var(--transition-speed);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--verde-claro);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--verde-claro);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(4, 18, 4, 1) 0%, rgba(4, 18, 4, 0.8) 45%, rgba(4, 18, 4, 0) 100%), url('assets/SIRAN_03.png') center/cover fixed no-repeat;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    color: var(--branco);
    max-width: 600px;
    animation: fadeInUP 1s ease forwards;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

.hero-description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--branco);
    max-width: 550px;
}

.hero-date,
.hero-location {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Flex layout para a Hero para colocar o texto de um lado e o timer do outro */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.hero-right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

/* Estilos do Timer / Cronômetro */
.hero-countdown {
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(169, 207, 68, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.flip-card {
    background: var(--verde-escuro);
    padding: 15px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 105px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* A linha central que divide o número dando o efeito "flip clock" */
.flip-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-50%);
    z-index: 2;
}

.flip-card-inner span {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--branco);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
}

.countdown-label {
    color: var(--verde-claro);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Estilos da nova Info Box de Data e Local */
.hero-info-box {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(169, 207, 68, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--branco);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(169, 207, 68, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-claro);
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--verde-claro);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-info-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero .btn {
    margin-top: 2rem;
}

/* Sobre o Evento */
.sobre {
    padding: 5rem 0;
    background: #051505;
    border-top: 1px solid rgba(169, 207, 68, 0.15);
    border-bottom: 1px solid rgba(169, 207, 68, 0.15);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sobre-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #ffffff;
}

.pilares {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pilar-card {
    background: rgba(4, 18, 4, 0.85);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid var(--verde-claro);
    color: #ffffff;
}

.pilar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--verde-escuro);
}

.pilar-icon {
    width: 80px;
    height: 80px;
    background: rgba(169, 207, 68, 0.15); /* light green background */
    border-radius: 16px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--verde-claro);
    flex-shrink: 0;
}

.pilar-icon svg {
    width: 44px;
    height: 44px;
}

/* O Mercado */
.mercado {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 30, 0, 0.65) 100%), url('assets/SIRAN_06.png') center/cover fixed no-repeat;
    color: var(--branco);
    position: relative;
}

.mercado .section-header h2,
.mercado .section-header p {
    color: var(--branco);
}

.mercado-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mercado-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02), 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), background var(--transition-speed), border-color var(--transition-speed);
}

.mercado-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.mercado-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--verde-claro);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mercado-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.mercado-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--verde-claro);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.mercado-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Patrocínio */
.patrocinio {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(4, 18, 4, 1) 0%, rgba(4, 18, 4, 0.8) 45%, rgba(4, 18, 4, 0) 100%), url('assets/SIRAN_07.png') center/cover fixed no-repeat;
    color: #ffffff;
}

.patrocinio .section-header h2,
.patrocinio .section-header p {
    color: var(--branco);
}

.cotas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.cota-card {
    background: rgba(4, 18, 4, 0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.15s ease-out, box-shadow var(--transition-speed);
    position: relative;
    border: 1px solid var(--verde-claro);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    will-change: transform;
    color: #ffffff;
}

.cota-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.cota-card.premium {
    z-index: 1;
}

.cota-card.premium:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.cota-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background: transparent;
    border-bottom: 1px solid rgba(169, 207, 68, 0.3);
}

.cota-card.premium .cota-header {
    border-bottom: 1px solid rgba(169, 207, 68, 0.3);
}

.cota-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cota-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--verde-claro);
}

.cota-card.premium .cota-price {
    color: var(--verde-escuro);
}

.cota-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cota-body ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cota-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.4;
}

.cota-body ul li::before {
    content: '✓';
    color: var(--verde-claro);
    font-weight: 800;
    font-size: 1.1rem;
}





.badge {
    font-size: 0.75rem;
    background: var(--verde-escuro);
    color: var(--branco);
    padding: 4px 10px;
    border-radius: 20px;
    vertical-align: middle;
    margin-left: 8px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(4, 18, 4, 0.9);
    color: #ffffff;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-logo {
    max-width: 150px;
    margin: 0 auto 1.5rem auto;
    filter: brightness(0) invert(1);
    display: block;
}

.footer-slogan {
    font-style: italic;
    color: #ccc;
}

.footer-info {
    margin-bottom: 4rem;
}

.footer-contact-wrap h4 {
    color: var(--verde-claro);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.footer-contact-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-contact-col p,
.footer-partners p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #ccc;
}

.footer-contact-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact-col a:hover {
    color: var(--verde-claro);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #888;
}

/* Realização / Parceiros */
.realizacao {
    padding: 6rem 0;
    background: #051505;
    border-top: 1px solid rgba(169, 207, 68, 0.15);
}

.realizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.realizacao-item {
    text-align: center;
    width: 100%;
}

.realizacao-title {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.realizacao-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--verde-claro);
    border-radius: 2px;
}

.realizacao-img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    /* Tamanho máximo controlado inline no HTML ou pelos seus tamanhos originais */
}

/* Alterando a animação apenas nesta seção para não subir, só aparecer (fade in) */
.realizacao .reveal {
    transform: none !important;
}

/* Animations */
@keyframes fadeInUP {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .cotas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 4rem;
    }

    .hero-date,
    .hero-location {
        justify-content: center;
    }

    .hero-right-panel {
        align-items: center;
        width: 100%;
        margin-top: 2rem;
    }

    .hero-timer-container {
        padding: 15px !important;
    }

    .hero-countdown {
        padding: 0 !important;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }

    .flip-card {
        min-width: 60px;
        padding: 8px 4px;
    }

    .flip-card-inner span {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .mercado-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cota-card.premium {
        transform: none;
    }

    .cota-card.premium:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--verde-escuro);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        padding: 80px 20px 40px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu a {
        font-size: 1.2rem;
        color: var(--verde-claro);
    }

    /* Animate Hamburger */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .mercado-grid {
        grid-template-columns: 1fr;
    }

    .cotas-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .mercado-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
    
    .realizacao-grid {
        grid-template-columns: 1fr;
    }
}

/* Planta 3D Placeholder */
.planta-3d {
    padding: 6rem 0;
}

.planta-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(169, 207, 68, 0.05);
    border: 2px dashed var(--verde-claro);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.planta-placeholder span {
    font-size: 1.5rem;
    color: var(--verde-claro);
    font-weight: 600;
    opacity: 0.7;
}

.cota-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 2rem;
    position: relative;
    z-index: 20;
}

.btn-selecionar-cota,
.wpp-btn-action {
    margin-top: 0 !important;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: var(--verde-claro);
    border: 2px solid var(--verde-claro);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.btn-selecionar-cota:hover:not(:disabled),
.wpp-btn-action:hover:not(:disabled) {
    background: var(--verde-escuro);
    color: var(--branco);
}

.btn-selecionar-cota:disabled,
.wpp-btn-action:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.2);
}

.btn-ver-mais,
.wpp-btn-secondary {
    width: 100%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.btn-ver-mais:hover,
.wpp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--verde-claro);
    text-decoration: none;
}

/* Modal de Detalhes das Cotas */
.cota-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 999999 !important;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}
.cota-modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}
.cota-modal-content {
    background: #041204;
    border: 1px solid var(--verde-claro);
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.cota-modal-overlay.active .cota-modal-content {
    transform: translateY(0);
}
.cota-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}
.cota-modal-close:hover {
    color: var(--verde-claro);
}
.cota-modal-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(169, 207, 68, 0.3);
    padding-bottom: 1rem;
}
.cota-modal-header h3 {
    font-size: 1.8rem;
    color: var(--verde-claro);
    margin: 0;
}
.cota-modal-body h4 {
    color: var(--verde-claro);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.cota-modal-body ul {
    list-style: none;
    padding-left: 0;
}
.cota-modal-body ul li {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
    line-height: 1.4;
}
.cota-modal-body ul li::before {
    content: '✓';
    color: var(--verde-claro);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* WhatsApp Floating Button & Widget */
.wpp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Movido para a esquerda para não sobrepor a planta */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wpp-floating-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wpp-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.wpp-floating-btn svg {
    width: 35px;
    height: 35px;
}

.wpp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: rgba(18, 20, 24, 0.98);
    border: 1px solid rgba(169, 207, 68, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    overflow: hidden;
    
    /* Animação inicial */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wpp-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wpp-popup-header {
    padding: 15px;
    border-bottom: 1px solid rgba(169, 207, 68, 0.2);
    position: relative;
    text-align: center;
    background: rgba(0,0,0,0.4);
}

.wpp-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.wpp-popup-close:hover {
    opacity: 1;
}

.wpp-popup-body {
    padding: 15px;
}

.wpp-form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.wpp-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--verde-claro);
    font-weight: 600;
}

.wpp-step {
    animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .wpp-widget-container {
        bottom: 20px;
        right: 20px; /* No mobile, 20px é o ideal para não ficar no meio da tela */
    }
    .wpp-floating-btn {
        width: 55px;
        height: 55px;
    }
    .wpp-floating-btn svg {
        width: 30px;
        height: 30px;
    }
    .wpp-popup {
        width: calc(100vw - 40px);
        right: 0; /* Alinha com o botão */
        bottom: 70px; /* Acima do botão mobile */
        max-width: 350px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}
