/* --- RESET & VARIABLES --- */
:root {
    --primary-red: #FF69B4;
    --red-hover: #FF1493;
    --dark-bg: #141414;
    --section-dark: #1a1a1a;
    --section-grey: #202020;
    --card-bg: #272727;
    --text-white: #FFFFFF;
    --text-grey: #D1D1D1;
    --font-main: 'Raleway', 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;
}

.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-red);
}

.dot {
    color: var(--primary-red);
}

.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-red);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--primary-red);
    padding-bottom: 2px;
}

.separator {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 20px auto;
}

/* --- NAVBAR --- */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 50;
    background: rgba(20,20,20,0.95);
}

.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-red);
    border-color: var(--primary-red);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px 0;
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-start;
        padding-top: 80px;
    }
}

.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(20,20,20,0.7) 0%, #141414 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(255, 105, 180, 0.15);
    color: var(--primary-red);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    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-red);
}

.timer {
    font-size: 2rem;
    font-weight: 700;
    font-family: monospace;
    color: #fff;
}

/* --- CAPTURE CARD --- */
.capture-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.capture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
}

.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: #666;
    width: 18px;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    background: #2a2a2a;
    border: 1px solid #444;
    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-red);
    background: #333;
}

.cta-button {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-red);
    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(--red-hover);
    transform: translateY(-2px);
}

.privacy-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* --- SECTIONS COMMON --- */
section {
    padding: 100px 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.03);
    padding: 15px;
    border-radius: 4px;
}

.feature-item i {
    color: var(--primary-red);
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ddd;
}

.reveal-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid #333;
    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(202, 44, 44, 0.4);
}

.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-red);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: var(--primary-red);
    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-red);
}

.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-red);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.doc-info .bio {
    font-size: 1.1rem;
}

/* --- DELIVERABLES --- */
.section-red {
    background: var(--primary-red);
    color: #fff;
}

.deliverables {
    padding: 80px 20px;
}

.deliverables-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.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 #333;
    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-red);
}

.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: url('https://www.transparenttextures.com/patterns/cubes.png'), #111;
}

.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-red);
    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(202, 44, 44, 0.3);
}

.big-cta-button:hover {
    transform: scale(1.05);
    background: #fff;
    color: var(--primary-red);
}

/* --- FOOTER --- */
footer {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-col p {
    font-size: 0.9rem;
    color: #555;
}

.socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--primary-red);
}

.social-link i {
    width: 20px;
    height: 20px;
}
/* --- POPUP --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    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 #444;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.popup-header {
    margin-bottom: 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    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(202, 44, 44, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(202, 44, 44, 0); }
    100% { box-shadow: 0 0 0 0 rgba(202, 44, 44, 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: #ca2c2c;
    border-radius: 50%;
    animation: float-up-ember linear forwards;
    box-shadow: #ca2c2c);
    filter: blur(0.5px);
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #ca2c2c);
    border-radius: 50%;
    box-shadow: 0 0 6px #ca2c2c;
}

@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;
    }
}

/* --- SEÃ‡ÃƒO DE DORES (PAIN SECTION) --- */
.pain-section {
    padding: 100px 0;
}

    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

.pain-highlight {
    background: rgba(255, 105, 180, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    margin-top: 40px;
    border-radius: 4px;
    text-align: center;
    font-size: 1.1rem;
}

/* --- SEÃ‡ÃƒO DE SOLUÃ‡Ã•ES (SOLUTIONS SECTION) --- */
.section-red {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 105, 180, 0.05) 100%);
    border-top: 2px solid var(--primary-red);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-top: 10px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.solution-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    position: relative;
    transition: var(--transition);
}

.solution-item:hover {
    background: rgba(255, 105, 180, 0.08);
    transform: translateY(-5px);
}

.solution-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    opacity: 0.3;
    margin-bottom: 10px;
}

.solution-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.impact-text {
    font-size: 1.1rem;
    text-align: center;
    margin-top: 40px;
    font-weight: 600;
    color: #fff;
}

/* --- SEÃ‡ÃƒO DE PALESTRANTES (DOCTORS) --- */
.doctors-intro {
    font-size: 1rem;
    color: var(--text-grey);
    margin-top: 15px;
}

.doctors-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 50px 0;
    align-items: center;
}

.doctor-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.doctor-profile.reverse {
    direction: rtl;
}

.doctor-profile.reverse > * {
    direction: ltr;
}

.doc-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.doc-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid var(--primary-red);
}

.doc-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #fff;
}

.doc-info .role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.credentials {
    margin-top: 15px;
}

.credentials p {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.doctors-highlight {
    background: rgba(255, 105, 180, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    margin-top: 40px;
    border-radius: 4px;
    text-align: center;
}

/* --- SEÃ‡ÃƒO PARA QUEM Ã‰ (TARGET AUDIENCE) --- */
.audience-intro {
    font-size: 1rem;
    color: var(--text-grey);
    margin-top: 15px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .audience-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
    }

    .audience-grid::-webkit-scrollbar {
        display: none;
    }

    .audience-card {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
}

.audience-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.audience-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.audience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.audience-cta {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid var(--primary-red);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
}

/* --- SEÃ‡ÃƒO DE INFORMAÃ‡Ã•ES DO EVENTO --- */
.event-info {
    padding: 100px 0;
}

.event-subtitle {
    font-size: 1rem;
    color: var(--text-grey);
    margin-top: 15px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .info-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
    }

    .info-grid::-webkit-scrollbar {
        display: none;
    }

    .info-box {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    text-align: center;
    transition: var(--transition);
}

.info-box:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: var(--primary-red);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.info-box p {
    font-size: 0.95rem;
}

.event-benefits {
    background: rgba(255, 105, 180, 0.1);
    border: 1px solid var(--primary-red);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.event-benefits h3 {
    color: #fff;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-grey);
}

.benefits-list i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* --- SEÃ‡ÃƒO DE HOTÃ‰IS --- */
.hotels-section {
    padding: 100px 0;
}

.hotels-intro {
    font-size: 1rem;
    color: var(--text-grey);
    margin-top: 15px;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 105, 180, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.hotel-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hotel-card:hover .hotel-img img {
    transform: scale(1.05);
}

.hotel-card:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.hotel-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.hotel-category {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 8px;
}

.hotel-distance {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.hotel-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.hotel-button {
    background: var(--primary-red);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    margin-top: auto;
}

.hotel-button:hover {
    background: var(--red-hover);
}

/* --- SEÃ‡ÃƒO DE DECISÃƒO FINAL --- */
.final-decision {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 105, 180, 0.05) 100%);
    padding: 100px 0;
}

.final-decision h2 {
    margin-bottom: 50px;
}

.decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .decision-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
    }

    .decision-grid::-webkit-scrollbar {
        display: none;
    }

    .decision-card {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
}

.decision-card {
    padding: 35px;
    border-radius: 8px;
    border: 2px solid;
}

.decision-card.bad {
    background: rgba(255, 105, 180, 0.05);
    border-color: rgba(255, 105, 180, 0.3);
}

.decision-card.good {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

.decision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.decision-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.warning {
    color: #ff6b6b;
    font-weight: 600;
}

.success {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 4px;
    display: block;
}

.final-cta-section {
    text-align: center;
}

.urgency-text {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.big-cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.big-cta-button:hover {
    background: var(--red-hover);
    transform: translateY(-3px);
}

.secondary-cta {
    font-size: 0.95rem;
    color: var(--text-grey);
}

.secondary-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-link:hover {
    text-decoration: underline;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doctors-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

.decision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}


/* --- RESPONSIVO PARA MOBILE --- */
@media (max-width: 768px) {
    /* Carrossel Mobile */
        width: 25px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-profile {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doctors-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .decision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .pain-image {
        max-height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
}


/* --- CARROSSEL DE CARDS (PAIN SECTION) --- */
.pain-carousel-container {
    position: relative;
    margin: 50px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pain-carousel-container::-webkit-scrollbar {
    display: none;
}

.pain-carousel-track {
    display: flex;
    gap: 20px;
}



.pain-card-item {
    flex: 0 0 calc(25% - 15px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pain-card-item:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-8px);
}

.pain-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #1a1a1a;
}

.pain-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pain-card-item:hover .pain-card-image img {
    transform: scale(1.05);
}

.pain-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pain-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff;
}

.pain-card-content p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.5;
}

/* Botoes de Controle */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 105, 180, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.5rem;
}

.carousel-control:hover {
    background: var(--primary-red);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: -70px;
}

.carousel-control.next {
    right: -70px;
}

/* Dots de Navegacao */
.carousel-dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .pain-card-item {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .pain-card-item {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
    
    .pain-card-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .pain-carousel-track {
        gap: 15px;
    }
    
    .pain-card-item {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
    
.pain-card-image {
        height: 280px;
    }
    
    .pain-card-content {
        padding: 15px;
    }
    
    .pain-card-content h3 {
        font-size: 1rem;
    }
    
    .pain-card-content p {
        font-size: 0.85rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}


/* --- CARROSSEL DE SOLUÃ‡Ã•ES --- */
.solutions-carousel-container {
    position: relative;
    margin: 50px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.solutions-carousel-container::-webkit-scrollbar {
    display: none;
}

.solutions-carousel-track {
    display: flex;
    gap: 20px;
}


.solution-card-item {
    flex: 0 0 calc(25% - 15px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.solution-card-item:hover {
    background: rgba(255, 105, 180, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-8px);
}

.solution-card-image {
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 10px;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-card-item:hover .solution-card-image img {
    transform: scale(1.05);
}

/* --- RESPONSIVO PARA SOLUÃ‡Ã•ES --- */
@media (max-width: 1024px) {
    .solution-card-item {
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .solution-card-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .solution-card-item {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
    
    .solution-card-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .solutions-carousel-track {
        gap: 15px;
    }
    
    .solution-card-item {
        flex: 0 0 calc(85% - 8px);
    }
    
.solution-card-image {
        height: 400px;
    }
}


/* --- FLIP CARDS (PALESTRANTES) --- */
.doctors-grid-narrow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .doctors-grid-narrow {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 15px;
        perspective: none;
    }

    .doctors-grid-narrow::-webkit-scrollbar {
        display: none;
    }

    .flip-card {
        flex: 0 0 75vw;
        scroll-snap-align: center;
    }
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
    perspective: 1000px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 450px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.2);
}

.flip-card-front {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.flip-card-back {
    background: rgba(20, 20, 20, 0.9);
    color: white;
    transform: rotateY(180deg);
    border: 1px solid var(--primary-red);
    overflow-y: auto;
}

.doctor-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 4px solid var(--primary-red);
    overflow: hidden;
    flex-shrink: 0;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-front h3 {
    font-size: 1.1rem;
    margin: 10px 0 5px;
    color: #fff;
}

.doctor-role {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.doctor-description {
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 15px;
    line-height: 1.4;
}

.flip-cta {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: auto;
}

.flip-card-back h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.credentials-back {
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.6;
}

.credentials-back p {
    margin-bottom: 12px;
    color: var(--text-grey);
}

.credentials-back strong {
    color: var(--primary-red);
}

.doctors-highlight {
    background: rgba(255, 105, 180, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 25px;
    margin-top: 40px;
    border-radius: 4px;
    text-align: center;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flip-card {
        height: 450px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 20px;
    }
    
    .doctor-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .flip-card {
        height: 400px;
    }
    
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 1.1rem;
    }
    
    .doctor-description {
        font-size: 0.85rem;
    }
}

/* ============================================================
   NOVA SEÇÃO 5: PARA QUEM É (CORREÇÃO: 1 IMAGEM POR VEZ)
   ============================================================ */

.target-audience-new {
    padding: 100px 0;
    background-color: var(--section-grey);
    overflow: hidden;
}

.container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: center;
}

/* Container Quadrado */
.slide-square-container {
    width: 100%;
    aspect-ratio: 1 / 1; 
    max-width: 540px; 
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 105, 180, 0.3);
}

/* Trilho: 6 imagens de 100% cada = 600% */
.slide-track-auto {
    display: flex;
    width: 600%; 
    height: 100%;
    animation: slideAuto6 24s infinite ease-in-out;
}

/* Cada imagem agora ocupa exatamente a largura do container (1/6 do trilho) */
.slide-track-auto img {
    width: calc(100% / 6); 
    height: 100%;
    object-fit: cover; /* Garante que a imagem 1080x1080 preencha o quadrado */
}

/* Animação corrigida para pular de 100% em 100% do container */
@keyframes slideAuto6 {
    0%, 14% { transform: translateX(0); }
    16.6%, 30.6% { transform: translateX(-16.666%); } /* Pula para imagem 2 */
    33.3%, 47.3% { transform: translateX(-33.333%); } /* Pula para imagem 3 */
    50%, 64% { transform: translateX(-50%); }         /* Pula para imagem 4 */
    66.6%, 80.6% { transform: translateX(-66.666%); } /* Pula para imagem 5 */
    83.3%, 97.3% { transform: translateX(-83.333%); } /* Pula para imagem 6 */
    100% { transform: translateX(0); }
}

.text-content-new h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin: 20px 0;
}

.audience-list-new li {
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
    color: var(--text-grey);
}

.audience-list-new li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 800;
}

@media (max-width: 768px) {
    .container-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .slide-square-container {
        margin: 0 auto;
    }
    .audience-list-new li {
        text-align: left;
    }
}