
        :root {
            --vinotinto: #404f5e;
            --naranja: #f59e0b;
            --gris: #444;
            --bg: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: var(--bg);
            color: var(--gris);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            border-bottom: 1px solid #eee;
            background: var(--bg);
        }

        body {
            padding-top: 95px;
        }

        header img {
            height: 55px;
        }

        nav a {
            margin-left: 30px;
            font-weight: 500;
        }

        .btn-primary {
            background: var(--vinotinto);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            border: 2px solid white;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: white;
            color: var(--vinotinto);
            border-color: var(--vinotinto);
        }

        .hero {
            padding: 100px 60px;
            min-height: 500px;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
        }

        .hero > div {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 42px;
            color: var(--vinotinto);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 500px;
            color: #404f5e;
        }

        .hero .actions a {
            margin-right: 15px;
        }

        .hero img {
            display: none;
        }

        .section {
            padding: 80px 60px;
        }

        .section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 50px;
            color: var(--vinotinto);
        }

        .services {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .card {
            padding: 40px 30px;
            border-radius: 20px;
            background: #fafafa;
            text-align: center;
        }

        .card h3 {
            margin-bottom: 15px;
            color: var(--vinotinto);
        }

        .card p {
            font-size: 15px;
        }

        .cta {
            background: var(--vinotinto);
            color: white;
            text-align: center;
            padding: 80px 40px;
            border-radius: 30px;
            margin: 0 60px 80px;
        }

        .cta h2 {
            margin-bottom: 20px;
            font-size: 30px;
        }

        footer {
            padding: 40px 60px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        footer p {
            font-size: 14px;
        }


        .booking-wrapper {
    max-width: 700px;
    margin: 60px auto;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.booking-wrapper h1 {
    color: var(--vinotinto);
    margin-bottom: 10px;
}

.booking-wrapper .subtitle {
    margin-bottom: 30px;
    color: #666;
}

.booking-wrapper label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.booking-wrapper input,
.booking-wrapper select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    font-size: 15px;
}

.booking-wrapper input:focus,
.booking-wrapper select:focus {
    outline: none;
    border-color: var(--vinotinto);
}

.booking-wrapper button {
    width: 100%;
    padding: 16px;
    background: var(--vinotinto);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.booking-wrapper button:hover {
    opacity: .9;
}


/* ===== REDES SOCIALES ===== */

.socials-section {
    text-align: center;
}

.socials-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

.social-card {
    height: 140px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: white;
    transition: transform .3s ease, box-shadow .3s ease;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,.2);
}

/* Colores por red */
.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.facebook {
    background: linear-gradient(45deg, #1877f2, #0f5bd7);
}

.tiktok {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.service-card h3 {
    color: var(--vinotinto);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--vinotinto);
    margin-bottom: 20px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 45px rgba(0,0,0,.12);
}

.category-card {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.category-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.category-card .service-body {
    padding: 25px;
    position: relative;
    z-index: 1;
    margin-top: -30px;
}

.service-image {
    background: #eee;
    padding: 14px;
}

.service-image img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-body {
    padding: 24px;
    text-align: center;
}

.service-body h3 {
    color: var(--vinotinto);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
}


.gallery-grid {
    column-count: 4;
    column-gap: 16px;
}

.gallery-card {
    position: relative;
    break-inside: avoid;
    margin-bottom: 16px;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-card::after {
    display: none;
}

.gallery-card:hover img {
    transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid { column-count: 3; }
}
@media (max-width: 768px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 480px) {
    .gallery-grid { column-count: 1; }
}


.whatsapp-float {
    display: none;
}


.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #e5e7eb;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s;
}

.filter-btn:hover {
    background: #404f5e;
    color: white;
}

.filter-btn.active {
    background: #404f5e;
    color: white;
    border-color: #404f5e;
}


.service-desc {
    font-size: 14px;
    color: #666;
    margin: 12px 0 18px;
    line-height: 1.5;
}


/* ===============================
   RESPONSIVE MOBILE FIX
================================ */

@media (max-width: 768px) {

    /* HEADER */
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a {
        margin: 0;
        font-size: 15px;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        padding: 60px 20px;
        min-height: 400px;
        text-align: center;
    }

    .hero > div {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 16px;
        margin: 0 auto 25px;
    }

    .hero .actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero .actions a {
        margin: 0;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero img {
        max-width: 100%;
        border-radius: 16px;
    }

    /* SECTIONS */
    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 26px;
    }

    /* SERVICES GRID */
    .services {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta {
        margin: 0 20px 60px;
        padding: 60px 20px;
    }

    .cta h2 {
        font-size: 24px;
    }

    /* FOOTER */
    footer {
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > a {
    font-weight: 500;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 999;
    padding: 10px 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #444;
    transition: background .2s;
}

.dropdown-menu a:hover {
    background: #404f5e;
    color: white;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

