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

/* Desktop Optimization - contenuti centrati */
@media (min-width: 1024px) {
    .agenda-landing-wrapper {
        width: 100%;
    }
}

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

/* Hero Section - BOLD GRADIENT */
.agenda-hero {
    position: relative;
    background: linear-gradient(135deg, #FF1B6B 0%, #FF6B9D 50%, #FFB3C6 100%);
    padding: 40px 20px;
    width: 100%;
}

@media (min-width: 1024px) {
    .agenda-hero {
        padding: 40px 0 40px;
       
    }
    
    /* Contenitore interno centrato */
    .agenda-hero .hero-text,
    .agenda-hero .agenda-badge,
    .agenda-hero .agenda-slider {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-text {
    text-align: center;
    padding: 20px 20px 30px;
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFFFFF!important;
    margin: 0 0 15px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero-text {
        padding: 30px 60px 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        max-width: 600px;
        margin: 0 auto;
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Slider */
.agenda-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 20px;
}

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

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

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #C44569;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

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

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

.dot.active {
    background: #FFC75F;
    transform: scale(1.3);
}

/* Countdown Section */
.agenda-countdown-section {
    padding: 30px 20px;
    background: #FFFFFF;
    width: 100%;
}

@media (min-width: 1024px) {
    .agenda-countdown-section {
        padding: 50px 0;
    }
    
    /* Contenuto centrato */
    .agenda-countdown-section .countdown-box {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.countdown-box {
    background: linear-gradient(135deg, #FFC75F 0%, #FF9A76 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 154, 118, 0.3);
}

.countdown-icon {
    font-size: 48px;
    margin-bottom: 10px;
    animation: swing 1s ease-in-out infinite;
}

@keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.countdown-live-badge {
    display: inline-block;
    background: #FF6B9D;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
    animation: pulse 1.5s infinite;
    text-transform: uppercase;
}

.countdown-box h2 {
    color: #FFFFFF;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.countdown-display {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.countdown-number {
    font-size: 64px;
    font-weight: bold;
    color: #C44569;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-text {
    font-size: 16px;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.countdown-warning {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.countdown-warning p {
    margin: 5px 0;
    color: #C44569;
    font-weight: 600;
}

/* Benefits Section */
.agenda-benefits {
    padding: 40px 20px;
    background: #FFFFFF;
    width: 100%;
}

@media (min-width: 1024px) {
    .agenda-benefits {
        padding: 60px 0;
    }
    
    /* Contenuto centrato */
    .agenda-benefits .section-title {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .agenda-benefits .benefits-grid {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .agenda-benefits .warning-box {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    /* CTA button nel benefits */
    .agenda-benefits > div[style*="text-align"] {
        max-width: 1200px;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: #C44569;
    margin: 0 0 30px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

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

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

.benefit-card {
    background: linear-gradient(135deg, #FFE5EC 0%, #FFF5F7 100%);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
   
}
.testo-benefit {
    font-size: 20px;
    font-weight: 900;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 69, 105, 0.2);
    border-color: #FF6B9D;
}

.benefit-card.highlight {
    background: linear-gradient(135deg, #5fff65 0%, #246205 100%);
}

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

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

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

.benefit-card h3 {
    font-size: 18px;
    color: #C44569;
    margin: 0 0 10px 0;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.warning-box {
    background: #FFF3CD;
    border: 2px solid #FFC75F;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.warning-box p {
    margin: 0;
    color: #856404;
    font-size: 15px;
    line-height: 1.6;
}

/* Features Section */
.agenda-features {
    padding: 40px 20px;
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
    width: 100%;
}

@media (min-width: 1024px) {
    .agenda-features {
        padding: 60px 0;
    }
    
    /* Contenuto centrato */
    .agenda-features .section-title,
    .agenda-features .features-list {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
}

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

.feature-content h4 {
    font-size: 18px;
    color: #C44569;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.agenda-cta-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #C44569 0%, #8E2B50 100%);
    width: 100%;
}

@media (min-width: 1024px) {
    .agenda-cta-section {
        padding: 60px 0;
    }
    
    /* Contenuto centrato */
    .agenda-cta-section .cta-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.cta-container {
    text-align: center;
}

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

.price-label {
    display: block;
    color: #FFC75F;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.price-amount {
    display: inline-block;
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.price-original {
    display: inline-block;
    font-size: 24px;
    color: #FFB3C6;
    text-decoration: line-through;
    margin-left: 15px;
}

.cta-button {
    background: linear-gradient(135deg, #FF1B6B 0%, #C44569 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(196, 69, 105, 0.35);
    transition: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    transform: none !important;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF387E 0%, #D24E74 100%);
    transform: none !important;
}

.cta-button:active {
    transform: none !important;
}

/* Variante giallo scuro per primo pulsante */
.cta-button.cta-yellow {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
    transform: none !important;
}

.cta-button.cta-yellow:hover {
    background: linear-gradient(135deg, #38D27E 0%, #2FBB6A 100%);
    transform: none !important;
}

.cta-button.cta-yellow:active {
    transform: none !important;
}

.btn-text {
    font-size: 22px;
    margin-bottom: 5px;
}

.btn-subtext {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.9;
}

.trust-badge {
    color: #FFB3C6;
    margin: 20px 0;
    font-size: 14px;
}

.urgency-message {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 25px;
}

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

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

/* Responsive */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .countdown-number {
        font-size: 48px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 18px 30px;
    }
    
    .btn-text {
        font-size: 20px;
    }
}

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

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

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

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

.whatsapp-text {
    font-size: 11px;
    color: #666;
    margin: 0;
    text-align: right;
    line-height: 1.2;
    max-width: 120px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(1.05);
}

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

/* Animazione pulse per WhatsApp */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.5;
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-text {
        font-size: 10px;
        max-width: 100px;
    }
}

