/* --- RESET & VARIABLES --- */
/* Google Fonts: Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-cyan: #00C8D4;
    --cyan-hover: #00a8b2;
    --dark-bg: #0a2535;
    --section-dark: #0d2e42;
    --section-grey: #0f3549;
    --card-bg: #0d2e42;
    --section-white: #ffffff;
    --section-white-alt: #f4f8fb;
    --text-white: #FFFFFF;
    --text-grey: #cce6ef;
    --text-dark: #0a2535;
    --text-dark-grey: #2e5566;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- ALTERNATING SECTIONS: odd=blue-dark, even=white --- */
section:nth-of-type(odd),
.section-dark,
.section-grey {
    background-color: var(--section-dark);
    color: var(--text-white);
}
section:nth-of-type(odd) p,
.section-dark p,
.section-grey p {
    color: var(--text-grey);
}
section:nth-of-type(odd) h2,
section:nth-of-type(odd) h3,
.section-dark h2,
.section-dark h3 {
    color: var(--text-white);
}
section:nth-of-type(even) {
    background-color: #f0f8fb;
    color: var(--text-dark);
}
section:nth-of-type(even) p {
    color: var(--text-dark-grey);
}
section:nth-of-type(even) h2,
section:nth-of-type(even) h3 {
    color: var(--text-dark);
}
section:nth-of-type(even) .section-tag {
    color: #008a93;
    border-bottom-color: #008a93;
}
section:nth-of-type(even) .highlight {
    color: #007a82;
}
section:nth-of-type(even) .separator {
    background: #008a93;
}
section:nth-of-type(even) .accordion-header {
    color: var(--text-dark);
}
section:nth-of-type(even) .accordion-item {
    border-bottom-color: #b8d8e2;
}
section:nth-of-type(even) .accordion-body {
    color: var(--text-dark-grey);
}
section:nth-of-type(even) .card-box {
    background: #ffffff;
    border-color: #cde8f0;
    box-shadow: 0 4px 20px rgba(0,100,120,0.08);
}
section:nth-of-type(even) .card-box p {
    color: var(--text-dark-grey);
}
section:nth-of-type(even) .card-box h3 {
    color: var(--text-dark);
}
section:nth-of-type(even) .icon-box {
    background: #d6eff5;
}
section:nth-of-type(even) .feature-item {
    background: rgba(0,0,0,0.04);
}
section:nth-of-type(even) .feature-item span {
    color: var(--text-dark);
}
section:nth-of-type(even) .lead {
    color: var(--text-dark);
}
section:nth-of-type(even) .doc-info h3 {
    color: var(--text-dark);
}
section:nth-of-type(even) .doc-info .bio {
    color: var(--text-dark-grey);
}
section:nth-of-type(even) .section-featured {
    color: var(--text-dark-grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-cyan);
}

.dot {
    color: var(--primary-cyan);
}

.center {
    text-align: center;
}

/* --- TYPOGRAPHY UTILS --- */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

p {
    color: var(--text-grey);
}

.section-tag {
    display: inline-block;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--primary-cyan);
    padding-bottom: 2px;
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--primary-cyan);
    margin: 20px auto;
}

/* --- HERO NEW --- */
.hero-new {
    position: relative;
    width: 100%;
}

.hero-desktop,
.hero-mobile {
    position: relative;
    width: 100%;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-desktop-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    max-width: 820px;
}

.hero-desktop-content h1 {
    font-size: 2.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
    max-width: 850px;
}

.hero-desktop-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-cta-btn {
    display: inline-block;
    background: var(--primary-cyan);
    color: #fff;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-cta-btn:hover {
    background: var(--cyan-hover);
    transform: translateY(-2px);
}

/* Mobile hero: esconde por padrão */
.hero-mobile {
    display: none;
}

.hero-mobile-content {
    position: absolute;
    top: 2%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 6% 6% 6%;
}

.hero-mobile-content h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero-mobile-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .hero-desktop {
        display: none;
    }
    .hero-mobile {
        display: block;
    }
}

/* --- NAVBAR --- */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(10,37,53,0.95), transparent);
}

@media (max-width: 768px) {
    header {
        display: none;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.logo.small img {
    height: 35px;
}

.nav-cta {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.35;
    filter: grayscale(100%) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,37,53,0.7) 0%, #0a2535 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 212, 0.1);
    color: var(--primary-cyan);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 200, 212, 0.3);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text .subheadline {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.countdown-box {
    margin-top: 30px;
    padding-left: 15px;
    border-left: 3px solid var(--primary-cyan);
}

.timer {
    font-size: 2rem;
    font-weight: 700;
    font-family: monospace;
    color: #fff;
}

/* --- CAPTURE CARD --- */
.capture-card {
    background: #0d2e42;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid #1e5570;
    position: relative;
    overflow: hidden;
}

.capture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-cyan);
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.card-header p {
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a8fa8;
    width: 18px;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    background: #0a2535;
    border: 1px solid #1e5570;
    color: white;
    font-family: var(--font-main);
    border-radius: 4px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: #0f3549;
}

.cta-button {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-cyan);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--cyan-hover);
    transform: translateY(-2px);
}

.privacy-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #4a8fa8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* --- SECTIONS COMMON --- */
section {
    padding: 90px 0;
    
    
}

.hero-new {
    padding: 0;
}

.section-dark {
    background-color: var(--section-dark);
}

.section-grey {
    background-color: var(--section-grey);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-featured {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-grey);
}

/* --- REVELATION SECTION --- */
.revelation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.lead {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    padding: 15px;
    border-radius: 4px;
}

.feature-item i {
    color: var(--primary-cyan);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #cce6ef;
}

.reveal-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #1e5570;
    transition: var(--transition);
}

.reveal-img:hover {
    transform: scale(1.02);
}

/* --- SLIDER DA REVELAÇÃO --- */
.revelation-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container .reveal-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-container .reveal-img.active {
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: white;
}

/* --- INFO CARDS WORKSHOP --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .info-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .info-card-image {
        flex: 0 0 85vw;
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

.info-grid-horizontal {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    margin-bottom: 40px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.info-card-image {
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.info-card-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 200, 212, 0.3);
}

.info-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

.cta-section .price-info {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-grey);
}

/* --- TARGET AUDIENCE SECTION --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.card-box {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.card-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #0f3549;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: var(--primary-cyan);
    width: 30px;
    height: 30px;
}

.card-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- DOCTORS SECTION --- */
.doctors-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.doctor-profile {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 50px;
    align-items: center;
}

.doctor-profile.reverse {
    grid-template-columns: 0.6fr 0.4fr;
}

.doctor-profile.reverse .doc-img-wrapper {
    order: 2;
}

.doctor-profile.reverse .doc-info {
    order: 1;
    text-align: right;
}

.doc-img-wrapper img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: var(--transition);
    box-shadow: 10px 10px 0 var(--primary-cyan);
}

.doc-img-wrapper img:hover {
    filter: grayscale(0%);
    box-shadow: 0 0 0 transparent;
    transform: translate(5px, 5px);
}

.doc-info h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.doc-info .role {
    color: var(--primary-cyan);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.doc-info .bio {
    font-size: 1.1rem;
}

/* --- DELIVERABLES --- */
.section-red {
    background: linear-gradient(135deg, #0a2535 0%, #0d3d55 100%);
    color: #fff;
}

.deliverables {
    padding: 80px 20px;
}

.deliverables-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff !important;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.deliverable-item:hover {
    transform: translateY(-10px);
}

.deliverable-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- FAQ SECTION --- */
.accordion {
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid #1e5570;
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--primary-cyan);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-body p {
    padding-bottom: 20px;
}

/* --- FINAL CTA --- */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a2535 0%, #0d3d55 100%);
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 40px;
}

.big-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-cyan);
    color: #fff;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 200, 212, 0.3);
}

.big-cta-button:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--primary-cyan);
}

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    background: #061820;
    border-top: 1px solid #1a4560;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col p {
    font-size: 0.9rem;
    color: #4a8fa8;
}

.socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a8fa8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-cyan);
}

.social-link i {
    width: 20px;
    height: 20px;
}
/* --- POPUP --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6,24,32,0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    border: 1px solid #1e5570;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #4a8fa8;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-header {
    margin-bottom: 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
}

/* --- ANIMATIONS --- */
@keyframes pulse-dot {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 200, 212, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 200, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 212, 0); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .revelation-grid {
        grid-template-columns: 1fr;
    }
    
    .revelation-visual {
        order: -1;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-wrapper {
        gap: 40px;
    }
    
    .doctor-profile,
    .doctor-profile.reverse {
        grid-template-columns: 1fr;
        text-align: center !important;
    }
    
    .doctor-profile.reverse .doc-img-wrapper {
        order: -1;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .socials a {
        margin: 0 10px;
    }
}

/* --- PARTÍCULAS FLUTUANTES (CINZAS) --- */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -20px;
    background: #00C8D4;
    border-radius: 50%;
    animation: float-up-ember linear forwards;
    box-shadow: 0 0 8px #00C8D4;
    filter: blur(0.5px);
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #00C8D4;
    border-radius: 50%;
    box-shadow: 0 0 6px #00C8D4;
}

@keyframes float-up-ember {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        filter: blur(0.5px) brightness(1.5);
    }
    5% {
        opacity: 0.9;
    }
    15% {
        opacity: 1;
        filter: blur(0.5px) brightness(1.8);
    }
    50% {
        opacity: 0.8;
        filter: blur(1px) brightness(1.2);
    }
    80% {
        opacity: 0.4;
        filter: blur(1.5px) brightness(0.8);
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(var(--drift)) translateY(calc(var(--drift) * -0.3)) rotate(720deg) scale(0.3);
        filter: blur(2px) brightness(0.3);
    }
}

@media (max-width: 768px) {
    .deliverables-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
    }
    
    .deliverable-item {
        flex: 0 0 85vw;
        min-width: 85vw;
        scroll-snap-align: center;
    }
}

.final-cta h2,
.final-cta p {
    color: #ffffff !important;
}


/* --- CARROSSEL FULL WIDTH --- */
.carousel-full-wrapper {
    position: relative;
    width: 100%;
    margin: 40px 0;
    cursor: grab;
    user-select: none;
}

.carousel-full-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 20px 40px;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.carousel-card:hover {
    transform: translateY(-5px);
}

.carousel-card img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    draggable: false;
}


/* --- POPUP FORMULÁRIO --- */
.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    background: rgba(6, 24, 32, 0.5);
    backdrop-filter: blur(12px) brightness(0.4);
    -webkit-backdrop-filter: blur(12px) brightness(0.4);
}

.form-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-popup-box {
    background: #0d2e42;
    border: 1px solid var(--primary-cyan);
    border-radius: 12px;
    padding: 50px 40px;
    width: 90%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 200, 212, 0.2);
    animation: popupIn 0.4s ease;
}

@keyframes popupIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.form-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #4a8fa8;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.form-popup-close:hover {
    color: var(--primary-cyan);
}

.form-popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-popup-header h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.form-popup-header p {
    font-size: 0.95rem;
    color: #cce6ef;
    line-height: 1.5;
}

.form-popup-group {
    margin-bottom: 15px;
}

.form-popup-group input {
    width: 100%;
    padding: 16px 20px;
    background: #0a2535;
    border: 1px solid #1e5570;
    color: #fff;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-popup-group input:focus {
    outline: none;
    border-color: var(--primary-cyan);
}

.form-popup-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-cyan);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.form-popup-btn:hover {
    background: var(--cyan-hover);
}