/* MODERN PROFESSIONAL DESIGN - SPOTIFY/FIGMA STYLE */

/* Reset e Base */
.agenda-landing-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #FAFAFA;
    overflow-x: hidden;
}

.agenda-landing-wrapper * {
    box-sizing: border-box;
}

/* Hero Section - Bold Gradient con più spazio per immagine */
.agenda-hero {
    position: relative;
    background: linear-gradient(135deg, #FF1B6B 0%, #FF6B9D 50%, #FFB3C6 100%);
    padding: 40px 24px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .agenda-hero {
        padding: 60px 40px 0;
    }
}

.agenda-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider - Full Bleed, immagine protagonista */
.agenda-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .agenda-slider {
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .agenda-slider {
        max-width: 700px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: visible;
    border-radius: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #FF1B6B;
    font-size: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #FFFFFF;
    width: 24px;
    border-radius: 4px;
}

/* Hero Text - Bold Typography con più respiro */
.hero-text {
    text-align: center;
    max-width: 700px;
    padding: 32px 0;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #FFFFFF !important;
    margin: 0 0 20px 0;
    line-height: 1.15;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
    }
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 21px;
    }
}

/* Countdown - Modern Card su sfondo chiaro */
.agenda-countdown-section {
    padding: 70px 24px;
    background: #FFFFFF;
}

@media (min-width: 768px) {
    .agenda-countdown-section {
        padding: 90px 40px;
    }
}

.countdown-box {
    background: linear-gradient(135deg, #FFC75F 0%, #FFB84D 100%);
    border-radius: 24px;
    padding: 56px 32px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(255, 199, 95, 0.3);
}

.countdown-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.countdown-box h2 {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 32px 0;
    letter-spacing: -0.5px;
}

.countdown-display {
    background: rgba(255, 27, 107, 0.1);
    border: 2px solid #FF1B6B;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
}

.countdown-number {
    font-size: 72px;
    font-weight: 900;
    color: #FF1B6B;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -2px;
}

.countdown-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Benefits - Card Grid su sfondo chiaro */
.agenda-benefits {
    padding: 80px 24px;
    background: #F8F8F8;
}

@media (min-width: 768px) {
    .agenda-benefits {
        padding: 100px 40px;
    }
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 64px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 44px;
        letter-spacing: -1px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #FF6B9D;
    box-shadow: 0 20px 40px rgba(255, 27, 107, 0.15);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 27, 107, 0.15);
    border-color: #FF6B9D;
}

.benefit-card.highlight {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border: none;
}

.benefit-icon {
    margin-bottom: 20px;
    min-height: 250px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #FFFFFF;
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .benefit-icon {
        min-height: 300px;
    }
    .benefit-icon img {
        height: 300px;
    }
}

.benefit-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 14px 0;
    letter-spacing: -0.2px;
}

.benefit-card p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.benefit-card.highlight h3,
.benefit-card.highlight p {
    color: #FFFFFF;
}

.warning-box {
    background: rgb(90 60 5 / 68%);
    border: 2px solid #FFC75F;
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.warning-box p {
    margin: 0;
    color: #FFC75F;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

/* Features - Clean List su sfondo chiaro */
.agenda-features {
    padding: 80px 24px;
    background: #FFFFFF;
}

@media (min-width: 768px) {
    .agenda-features {
        padding: 100px 40px;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: #F8F8F8;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #F0F0F0;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: #FF6B9D;
    background: #FFFFFF;
}

.feature-emoji {
    font-size: 32px;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 10px 0;
}

.feature-content p {
    font-size: 16px;
    color: #666666;
    margin: 0;
    line-height: 1.7;
}

/* CTA Section - Bold & Clear */
.agenda-cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #FF1B6B 0%, #C44569 100%);
}

@media (min-width: 768px) {
    .agenda-cta-section {
        padding: 100px 40px;
    }
}

.cta-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.price-display {
    margin-bottom: 32px;
}

.price-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: inline-block;
    font-size: 64px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -2px;
}

.price-original {
    display: inline-block;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-left: 16px;
}

/* CTA Buttons - Modern & Bold */
.cta-button {
    background: #FFFFFF;
    color: #FF1B6B;
    border: none;
    border-radius: 16px;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.cta-button.cta-yellow {
    background: #FFC75F;
    color: #0A0A0A;
}

.btn-text {
    font-size: 20px;
    margin-bottom: 4px;
}

.btn-subtext {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

.trust-badge {
    color: rgba(255, 255, 255, 0.8);
    margin: 24px 0;
    font-size: 14px;
}

.urgency-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-message p {
    color: #FFFFFF;
    margin: 8px 0;
    font-size: 16px;
}

.small-text {
    font-size: 14px !important;
    opacity: 0.9;
    line-height: 1.6;
}

/* WhatsApp - Modern Floating */
.whatsapp-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.whatsapp-float {
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
}

.whatsapp-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: right;
    line-height: 1.3;
    max-width: 120px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Loading Animation */
.loading {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .countdown-number { font-size: 56px; }
    .price-amount { font-size: 48px; }
}

