* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #f4c2c2;
    --secondary-pink: #f8d7da;
    --accent-peach: #fce4d6;
    --soft-lavender: #e8d5e8;
    --cream: #f7f5f3;
    --warm-white: #fefcfb;
    --light-bg: #f9f7f5;
    --text-dark: #2d2d2d;
    --text-medium: #4a4a4a;
    --text-light: #666666;
    --gradient-main: linear-gradient(135deg, #f4c2c2 0%, #f8d7da 50%, #fce4d6 100%);
    --gradient-soft: linear-gradient(135deg, #f9f7f5 0%, #fefcfb 100%);
    --gradient-bg: linear-gradient(135deg, #faf8f6 0%, #f5f3f1 100%);
    --shadow-soft: 0 8px 32px rgba(244, 194, 194, 0.15);
    --shadow-medium: 0 12px 48px rgba(244, 194, 194, 0.2);
    --shadow-strong: 0 20px 64px rgba(244, 194, 194, 0.25);
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.elegant-font {
    font-family: 'Dancing Script', cursive;
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(244, 194, 194, 0.2);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Dancing Script', cursive;
}

.nav-toggle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 2rem;
    list-style: none;
    transition: left 0.4s ease;
}

.nav-links.active {
    left: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-radius: 25px;
    width: 200px;
    text-align: center;
}

.nav-links a:hover {
    color: white;
    background: var(--gradient-main);
    transform: scale(1.05);
}

/* Hero Section - Mobile Optimized */
.hero {
    height: 100vh;
    min-height: 600px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(244, 194, 194, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(248, 215, 218, 0.12) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 90%;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-main);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
    touch-action: manipulation;
}

.cta-button:hover, .cta-button:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
    filter: brightness(1.05);
}

/* Floating Elements - Reduced for mobile */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0.06;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

/* Sections - Mobile First */
.section {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

/* Instagram-Style Square Gallery */
.gallery {
    background: var(--gradient-soft);
    padding: 3rem 0;
}

.slideshow-container {
    position: relative;
    max-width: 380px;
    width: 90%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    aspect-ratio: 1;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: slideIn 0.6s ease;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.02);
}

/* Instagram story indicators */
.story-indicators {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.story-indicator {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-indicator.active {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.slide-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', cursive;
    line-height: 1.2;
}

.slide-description {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.4;
}

/* Navigation arrows - Optimized for touch */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background: rgba(244, 194, 194, 0.9);
    border: none;
    transition: all 0.3s ease;
    user-select: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    touch-action: manipulation;
}

.next {
    right: 15px;
}

.prev {
    left: 15px;
}

.prev:hover, .next:hover, .prev:active, .next:active {
    background: var(--primary-pink);
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

/* Dots indicators - Touch friendly */
.dots-container {
    text-align: center;
    padding: 1.5rem 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background: rgba(244, 194, 194, 0.4);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.dot.active, .dot:hover {
    background: var(--primary-pink);
    transform: scale(1.3);
}

/* About Section - Mobile Layout */
.about {
    background: white;
}

.about-content {
    display: block;
    text-align: center;
}

.about-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.about-image {
    text-align: center;
    margin-bottom: 2rem;
}

.about-image i {
    font-size: 8rem;
    color: var(--text-medium);
    opacity: 0.8;
}

/* Info Cards - Mobile Stack */
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(244, 194, 194, 0.15);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
}

.info-card:hover, .info-card:active {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Dancing Script', cursive;
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--gradient-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.why-choose-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(244, 194, 194, 0.1);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 194, 194, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-choose-card:hover::before, .why-choose-card:active::before {
    left: 100%;
}

.why-choose-card:hover, .why-choose-card:active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.why-choose-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
    display: block;
}

.why-choose-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-choose-highlight {
    background: var(--gradient-main);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.why-choose-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.why-choose-highlight p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(244, 194, 194, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-pink);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-pink);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.faq-answer strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.faq-cta {
    background: var(--gradient-main);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.faq-cta h3 {
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
}

.faq-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Precautions Section - Mobile Timeline */
.precautions {
    background: var(--cream);
}

.precaution-timeline {
    max-width: 100%;
    margin: 0 auto;
}

.timeline-item {
    display: block;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-pink);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.timeline-item:hover, .timeline-item:active {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.timeline-period {
    background: var(--gradient-main);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.timeline-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-content li {
    margin-bottom: 0.6rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-content li:before {
    content: "✗";
    color: #e74c3c;
    font-weight: bold;
    margin-right: 0.6rem;
    font-size: 1rem;
}

/* Pricing Section - Mobile Optimized */
.pricing {
    background: var(--gradient-main);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-strong);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.price-details {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-features li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 300;
}

.price-features li:before {
    content: "✓";
    color: white;
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Contact Section - Mobile Layout */
.contact {
    background: var(--warm-white);
    padding: 3rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-grid {
    display: block;
    margin-top: 2rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(244, 194, 194, 0.1);
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover, .contact-item:active {
    transform: translateX(3px);
    background: var(--accent-peach);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-right: 1rem;
    width: 25px;
    text-align: center;
}

.contact-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.whatsapp-button {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    touch-action: manipulation;
    width: 100%;
    text-align: center;
}

.whatsapp-button:hover, .whatsapp-button:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    margin-right: 0.8rem;
}

.social-section {
    text-align: center;
}

.social-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
    touch-action: manipulation;
}

.social-links a:hover, .social-links a:active {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.social-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
}

.contact-highlight {
    background: var(--gradient-main);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.contact-highlight h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.contact-highlight p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer p {
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-link {
    color: var(--text-medium);
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.9rem;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Desktop optimizations */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-links {
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        flex-direction: row;
        padding-top: 0;
        gap: 1.5rem;
    }

    .nav-links a {
        padding: 0.5rem 1rem;
        width: auto;
        font-size: 0.9rem;
        background: none;
        color: var(--text-medium);
        white-space: nowrap;
        min-width: fit-content;
    }

    .nav-links a:hover {
        color: var(--primary-pink);
        background: none;
        transform: translateY(-1px);
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .slideshow-container {
        max-width: 500px;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        text-align: left;
    }

    .about-text {
        font-size: 1.15rem;
    }

    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .faq-container {
        max-width: 900px;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .whatsapp-button {
        width: auto;
        display: inline-block;
    }

    .gallery {
        padding: 4rem 0;
    }

    .contact {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 2rem;
    }

    .nav-links a {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }

    .slideshow-container {
        max-width: 600px;
    }

    .slide-content {
        padding: 3rem 2rem 2rem;
    }

    .slide-title {
        font-size: 1.6rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility improvements */
.cta-button:focus,
.whatsapp-button:focus,
.social-links a:focus,
.nav-links a:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    .info-card:hover {
        transform: none;
    }

    .timeline-item:hover {
        transform: none;
    }

    .contact-item:hover {
        transform: none;
    }
}

/* Loading animation for images */
.slide img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide img.loaded {
    opacity: 1;
}

/* Emergency styles for missing images */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 1;
}

.slide:nth-child(1)::before { content: '📷 Microblading Naturale'; }
.slide:nth-child(2)::before { content: '📷 Sopracciglia Ridefinite'; }
.slide:nth-child(3)::before { content: '📷 Trasformazione Completa'; }
.slide:nth-child(4)::before { content: '📷 Armonia del Viso'; }

.slide img[src] {
    position: relative;
    z-index: 2;
}
