:root {
    --primary-burgundy: #8B1E2F;
    --primary-burgundy-light: #A01D2D;
    --secondary-purple: #9B72AA;
    --secondary-purple-light: #B892C6;
    --text-dark: #2C1810;
    --text-body: #4A4A4A;
    --bg-light: #FAFAFA;
    --white: #FFFFFF;
    --gradient-hero: linear-gradient(135deg, #FFF5F6 0%, #F4F7FF 100%);
    --shadow-card: 0 10px 30px rgba(139, 30, 47, 0.08);
    --shadow-hover: 0 20px 40px rgba(139, 30, 47, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--primary-burgundy);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #FFF5F6 0%, #FFFFFF 100%);
    overflow: hidden;
    padding: 100px 20px 60px;
}

.logo-container {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    gap: 10px;
}

.hero-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.hero-presenta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.8;
    margin-top: 75px;
    /* Increased to push text down closer to SVG */
}

.intro-icon {
    height: 120px;
    width: auto;
    margin: 0 auto 20px auto;
    object-fit: contain;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(155, 114, 170, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139, 30, 47, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: -50px;
    /* Pull content up closer to the header */
}

.main-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-burgundy);
    line-height: 1.2;
}

.main-title .highlight {
    font-size: 5.5rem;
    font-style: italic;
    display: block;
    margin-top: -10px;
    background: linear-gradient(45deg, var(--primary-burgundy), var(--secondary-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-title .connector {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-burgundy);
    display: block;
    margin: -10px 0;
    font-weight: inherit;
}

.speaker-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.event-details {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    font-weight: 600;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--primary-burgundy-light) 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(139, 30, 47, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 30, 47, 0.4);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: white;
}

.maternar-logo {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-burgundy);
}

.maternar-logo .club {
    color: var(--secondary-purple);
    font-style: italic;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
}

.lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--secondary-purple);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
}

.topic-card {
    background: #FFFCFC;
    padding: 24px;
    border-left: 3px solid var(--secondary-purple);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.topic-card:hover {
    transform: translateX(5px);
}

.check-icon {
    color: var(--primary-burgundy);
    margin-bottom: 10px;
}

.timeline-topics {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.timeline-topics h4 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.timeline-topics ul {
    list-style: none;
}

.timeline-topics li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.timeline-topics li::before {
    content: '•';
    color: var(--secondary-purple);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.closing-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--primary-burgundy);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Registration Section */
.registration-section {
    padding: 100px 0;
    background: #FFF5F6;
    /* Very subtle pinkish background */
    /* Very subtle pinkish background */
    text-align: center;
}

.registration-section .container {
    max-width: 1400px;
    /* Allow wider layout for 4 cards */
}

.section-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.registration-section .section-title {
    margin-bottom: 80px;
}


.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    /* Tighter gap for desktop */
    align-items: flex-end;
    /* Align bottom to let the active card grow up */
}

.pricing-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    flex: 1;
    min-width: 230px;
    max-width: 320px;
    position: relative;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 30, 47, 0.05);
}

.pricing-card h3 {
    font-size: 1.6rem;
    /* Slightly smaller to fit */
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    /* Changed for better number readability */
}

.price {
    display: flex;
    align-items: baseline;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    justify-content: center;
    color: var(--primary-burgundy);
    margin-bottom: 10px;
}

.currency {
    font-size: 1.3rem;
    /* Smaller, cleaner */
    font-weight: 600;
    margin-right: 2px;
}

.amount {
    font-size: 3.5rem;
    /* Slightly smaller but cleaner */
    font-weight: 700;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 5px;
}

.scarcity {
    color: var(--secondary-purple);
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-body);
}

.features li svg {
    width: 18px;
    height: 18px;
    color: var(--primary-burgundy);
}

.register-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* Lot Badge */
.lot-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-burgundy);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lot Active State - Generic class for any active lot */
.lot-active {
    transform: scale(1.05);
    border: 2px solid var(--primary-burgundy);
    z-index: 2;
    background: #FFF0F2;
}

.lot-active h3 {
    margin-top: 25px;
    /* Increased space for badge */
}

.lot-active:hover {
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-card) !important;
}

.lot-active .register-btn {
    background: var(--primary-burgundy);
    color: white;
}

.lot-active .register-btn:hover {
    background: var(--primary-burgundy-light);
}

/* Lot Presale - Specific overrides if needed, now generic lot styling */
/* .lot-presale {} - Removed empty rule */

/* Lot Sold Out State */
.lot-soldout {
    opacity: 0.7;
    background: #fdfdfd;
}

.lot-soldout .register-btn {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.lot-soldout .price {
    color: #888;
    text-decoration: line-through;
}

/* Lot 1, 2, 3 - Inactive styles for future lots */
.lot-1:not(.lot-active),
.lot-2:not(.lot-active),
.lot-3:not(.lot-active) {
    opacity: 0.8;
}

/* Hover effects for future lots */
.lot-1:hover:not(.lot-active):not(.lot-soldout),
.lot-2:hover:not(.lot-active):not(.lot-soldout),
.lot-3:hover:not(.lot-active):not(.lot-soldout) {
    opacity: 1;
    transform: translateY(-5px);
}

.pricing-grid {
    gap: 20px;
    /* Reduce gap slightly to fit 4 better on large screens */
}

/* Media Query Adjustment for Pricing Grid to stack or wrap nicely */
@media (max-width: 1300px) {
    .pricing-grid {
        gap: 30px;
    }
}

.register-btn.secondary {
    background: transparent;
    border: 2px solid #E0E0E0;
    color: #999;
}

.lot-1:hover,
.lot-2:hover,
.lot-3:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Speaker Section - Modern Redesign */
.speaker-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFF5F6 100%);
    overflow: hidden;
    position: relative;
}

.speaker-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.speaker-image-wrapper {
    position: relative;
    /* Arch Shape Crop */
    border-radius: 300px 300px 20px 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(139, 30, 47, 0.2);
    aspect-ratio: 3 / 4;
    transition: transform 0.4s ease;
}

.speaker-image-wrapper:hover {
    transform: translateY(-10px);
}

.speaker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Focus on face/bust */
    display: block;
}

/* Decorative Backdrop behind the image */
.speaker-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 30, 47, 0.2) 100%);
    z-index: 1;
    opacity: 0.3;
}

/* Floating Badge */
.image-decoration {
    position: absolute;
    bottom: 30px;
    right: -20px;
    width: auto;
    height: auto;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-decoration::before {
    content: '★';
    color: var(--secondary-purple);
}

.image-decoration::after {
    content: 'Palestrante';
}

.speaker-content {
    position: relative;
}

/* Elegant Quote Mark */
.speaker-content::before {
    content: '"';
    position: absolute;
    top: -60px;
    left: -40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 150px;
    color: var(--secondary-purple);
    opacity: 0.1;
    line-height: 1;
}

.speaker-content .section-title {
    margin-bottom: 10px;
    font-size: 3.5rem;
}

.speaker-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-purple);
    margin-bottom: 30px;
    font-weight: 600;
}

.speaker-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 25px;
    max-width: 600px;
}

.speaker-highlights {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.speaker-highlights li {
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-burgundy);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(139, 30, 47, 0.1);
}

.speaker-highlights li svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-purple);
}

/* Mobile Tweaks for this section specifically */
@media (max-width: 768px) {
    .speaker-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .speaker-image-wrapper {
        width: 80%;
        margin: 0 auto;
        border-radius: 200px 200px 20px 20px;
        /* aspect-ratio handled automatically */
    }

    .image-decoration {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
        white-space: nowrap;
    }

    .speaker-content .section-title {
        font-size: 2.5rem;
    }

    .speaker-content::before {
        display: none;
        /* Hide quote on mobile */
    }

    .speaker-highlights {
        justify-content: center;
    }
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    background: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .main-title .highlight {
        font-size: 3.5rem;
    }

    .hero-content {
        padding-top: 60px;
    }

    .event-details {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        /* Center date and location on mobile */
        margin-top: -150px;
        /* Pull up SIGNIFICANTLY to fit button on first screen */
    }

    .hero-logo {
        height: 60px;
        top: 30px;
    }

    .hero-presenta {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-top: 20px;
        /* Move text up on mobile */
    }

    .hero-content {
        margin-top: -70px;
        /* Pull SVG up MORE */
    }


    .intro-icon {
        height: 80px;
    }

    .lot-1 {
        transform: scale(1);
        margin: 20px 0;
    }
}

/* Hero Title Image & Accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hero-title-img {
    width: 100%;
    max-width: 900px;
    /* Increased from 600px */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

@media (max-width: 768px) {
    .hero-title-img {
        width: 200%;
        /* Increased from 170% */
        max-width: none;
        margin-left: -50%;
        /* Center it back */
    }
}