
        :root {
            --gold: #c5a059;
            --gold-light: #e2c996;
            --dark: #121212;
            --soft-white: #fafafa;
            --glass: rgba(255, 255, 255, 0.92);
        }
		html {
			scroll-behavior: smooth;
		}
		.social-icons {
			display: flex;
			gap: 20px;
			justify-content: center;
			align-items: center;
			margin: 30px 0;
		}
		.social-icons a {
			color: white;
			font-size: 32px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: 0.25s;
		}
		.social-icons a:hover {
			color: var(--gold);
			transform: scale(1.1);
		}
		.services-section {
			background: var(--soft-white);
			padding: 80px 5%;
			overflow: hidden;
		}
		section{
			scroll-margin-top:120px;
		}

		.services-slider-container {
			position: relative;
			display: flex;
			align-items: center;
		}
		.reviews-section{
			background: var(--soft-white);
			text-align:center;
			scroll-margin-top:120px;
		}

		.reviews-slider{
			max-width:700px;
			margin:auto;
			position:relative;
			min-height:120px;
		}

		.review{
			display:none;
			font-style:italic;
			font-size:1.05rem;
			padding:30px;
			background:white;
			border-radius:12px;
			box-shadow:0 10px 30px rgba(0,0,0,0.05);
		}

		.review span{
			display:block;
			margin-top:15px;
			font-weight:600;
			color:var(--gold);
		}

		.review.active{
			display:block;
		}

		.reviews-dots{
			margin-top:20px;
		}

		.dot{
			height:8px;
			width:8px;
			margin:0 5px;
			background:#ccc;
			border-radius:50%;
			display:inline-block;
		}

		.dot.active{
			background:var(--gold);
		}

		.google-reviews-btn{
			display:inline-block;
			padding:12px 26px;
			background:var(--gold);
			color:white;
			text-decoration:none;
			border-radius:30px;
			font-size:14px;
			transition:0.3s;
		}

		.google-reviews-btn:hover{
			background:#b68e47;
		}
		.price-category {
			margin-bottom: 70px;
			background: white;
			padding: 35px;
			border-radius: 18px;
			box-shadow: 0 10px 30px rgba(0,0,0,0.05);
		}
		.price-category {
			scroll-margin-top: 120px;
		}

		.price-category h3 {
			font-size: 1.5rem;
			margin-bottom: 25px;
			color: var(--gold);
			font-family: 'Cinzel', serif;
		}

		html {
			scroll-behavior: smooth;
		}

		.services-slider {
			display: flex;
			gap: 20px;
            overflow-x: auto;   /* permite desplazarse */
            overflow-y: hidden;
			scroll-behavior: smooth;
			width: 100%;
		}
		.services-slider::-webkit-scrollbar { display: none; }
		.services-slider { scrollbar-width: none; }

		.service-card-image {
			min-width: calc(33.333% - 14px);
			height: 350px;
			position: relative;
			border-radius: 20px;
			overflow: hidden;
			flex-shrink: 0;
			text-decoration: none;
			box-shadow: 0 10px 25px rgba(0,0,0,0.12);
		}

		.service-card-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.5s ease;
		}

		.service-card-image:hover img {
			transform: scale(1.08);
		}

		.service-overlay {
			position: absolute;
			bottom: 0;
			width: 100%;
			padding: 20px;
			background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
			color: white;
			font-size: 1.1rem;
			font-family: 'Cinzel', serif;
			letter-spacing: 1px;
			transition: all 0.4s ease;
		}
		.service-card-image:hover .service-overlay {
			background: linear-gradient(
				to top,
				rgba(0,0,0,0.82),
				rgba(0,0,0,0.25),
				transparent
			);

			text-shadow:
				0 2px 10px rgba(0,0,0,0.95),
				0 1px 3px rgba(0,0,0,1);
		}

		.slider-btn {
			background: rgba(255,255,255,0.9);
			border: none;
			width: 50px;
			height: 50px;
			border-radius: 50%;
			font-size: 28px;
			cursor: pointer;
			position: absolute;
			z-index: 10;
			box-shadow: 0 5px 15px rgba(0,0,0,0.15);
			transition: 0.3s;
		}

		.slider-btn:hover {
			background: var(--gold);
			color: white;
		}

		.prev {
			left: -10px;
		}

		.next {
			right: -10px;
		}

		@media (max-width: 900px) {
			.service-card-image {
				min-width: calc(50% - 10px);
			}
		}

		@media (max-width: 600px) {
			.service-card-image {
				min-width: 100%;
			}
		}
				.services-section {
					background: var(--soft-white);
					padding: 80px 10%;
				}

		.services-gallery {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
			gap: 25px;
		}

		.service-image-card {
			position: relative;
			overflow: hidden;
			border-radius: 18px;
			text-decoration: none;
			height: 320px;
			box-shadow: 0 10px 25px rgba(0,0,0,0.08);
			transition: 0.4s ease;
		}

		.service-image-card img {
			width: 100%;
			height: 100%;
			object-fit: cover;
			transition: transform 0.6s ease;
		}

		.service-image-card:hover img {
			transform: scale(1.08);
		}

		.overlay {
			position: absolute;
			inset: 0;
			background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
			display: flex;
			align-items: flex-end;
			padding: 25px;
		}

		.overlay span {
			color: white;
			font-size: 1.2rem;
			font-family: 'Cinzel', serif;
			letter-spacing: 1px;
		}
		

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .logo { font-family: 'Cinzel', serif; letter-spacing: 2px; }

        /* --- NAVEGACIÓN --- */
        nav {
            padding: 20px 5%;
            background: var(--glass);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(197, 160, 89, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
			display: flex;
			align-items: center;
			text-decoration: none;
		}

		.logo img {
			width: 140px;
			height: auto;
			object-fit: contain;
		}

        .nav-links { display: flex; gap: 20px; }
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 500;
            transition: 0.3s;
        }
        .nav-links a:hover { color: var(--gold); }

        .lang-btn {
            font-size: 0.6rem;
            border: 1px solid var(--gold);
            padding: 2px 8px;
            cursor: pointer;
            color: var(--gold);
        }
		#scrollTopBtn{
			position:fixed;
			bottom:30px;
			left:30px;
			width:50px;
			height:50px;
			border:none;
			border-radius:50%;
			background:var(--gold);
			color:white;
			font-size:18px;
			cursor:pointer;
			display:none;
			z-index:1000;
			box-shadow:0 5px 15px rgba(0,0,0,0.2);
			transition:0.3s;
		}
		.prices-modal{
			display:none;
			position:fixed;
			z-index:2000;
			left:0;
			top:0;
			width:100%;
			height:100%;
			background:rgba(0,0,0,0.6);
			overflow:auto;
		}

		#pricesModal {
			display: none;
			position: fixed;
			z-index: 2000;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: rgba(0,0,0,0.55);
			backdrop-filter: blur(4px);
			overflow: hidden;
		}
		.prices-content {
			background: #ffffff;
			margin: 80px auto;
			padding: 45px 50px;
			width: 90%;
			max-width: 850px;
			/* ⭐ LO IMPORTANTE ⭐ */
			max-height: 80vh; /* evita que el modal salga de pantalla */
			overflow-y: auto; /* scroll interno elegante */
			overflow-x: hidden;
			scrollbar-width: thin;
			border-radius: 18px;
			box-shadow: 0px 20px 40px rgba(0,0,0,0.18);
			animation: fadeIn 0.35s ease-out;
			border: 1px solid rgba(197,160,89,0.25);
		}
		/* Scroll dorado premium */
		.prices-content::-webkit-scrollbar {
			width: 6px;
		}
		.prices-content::-webkit-scrollbar-track {
			background: rgba(0,0,0,0.08);
			border-radius: 10px;
		}
		.prices-content::-webkit-scrollbar-thumb {
			background: var(--gold);
			border-radius: 10px;
		}
		.wa-icon {
			margin-left: 12px;
			display: flex;
			align-items: center;
			transition: 0.3s;
		}
		.wa-icon svg {
			width: 20px;
			height: 20px;
			fill: var(--gold);
			transition: 0.3s;
		}
		.wa-icon:hover svg {
			transform: scale(1.15);
			filter: drop-shadow(0 0 3px rgba(197,160,89,0.4));
		}
		.close-prices{
			float:right;
			font-size:30px;
			cursor:pointer;
		}

		@keyframes fadeIn{
			from{opacity:0; transform:translateY(-20px);}
			to{opacity:1; transform:translateY(0);}
		}

		#scrollTopBtn:hover{
			background:#b68e47;
			transform:translateY(-3px);
		}
		
		/* ==== TARIFAS PREMIUM DORADO ==== */
		#pricesModal {
			display: none;
			position: fixed;
			z-index: 2000;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background: rgba(0,0,0,0.55);
			backdrop-filter: blur(4px);
		}
		.prices-content {
			background: white;
			margin: 80px auto;
			padding: 45px 50px;
			width: 95%;
			max-width: 850px;
			border-radius: 20px;
			box-shadow: 0px 20px 40px rgba(0,0,0,0.18);
			animation: fadeIn 0.35s ease-out;
			border: 1px solid rgba(197,160,89,0.25);
		}
		#priceTitle {
			font-family: 'Cinzel', serif;
			font-size: 2rem;
			color: var(--gold);
			text-align: center;
			margin-bottom: 35px;
		}
		.price-item {
			display: grid;
			grid-template-columns: 1fr 120px 40px;
			align-items: center;
			gap: 15px;
			padding: 14px 0;
			border-bottom: 1px solid rgba(197,160,89,0.18);
			font-size: 0.95rem;
		}

		.price-item span:first-child {
			color: #333;
			font-weight: 400;
		}

		.price-val {
			color: var(--gold);
			font-weight: 600;
			text-align: right;
			white-space: nowrap;
		}

		.wa-icon {
			display: flex;
			justify-content: center;
			align-items: center;
		}
		.price-item span:first-child {
			color: #333;
			font-weight: 400;
		}
		.price-val {
			color: var(--gold);
			font-weight: 600;
			white-space: nowrap;
		}
		.wa-icon {
			display: flex;
			align-items: center;
			justify-content: center;
			margin-left: 5px;
			transition: 0.3s;
		}
		.wa-icon svg {
			width: 22px;
			height: 22px;
			fill: var(--gold);
			transition: 0.3s;
		}
		.wa-icon:hover svg {
			transform: scale(1.15);
			filter: drop-shadow(0 0 3px rgba(197,160,89,0.4));
		}
		.prices-content h3 {
			margin-top: 35px;
			margin-bottom: 15px;
			font-family: 'Cinzel', serif;
			font-size: 1.25rem;
			color: var(--gold);
			text-transform: uppercase;
			letter-spacing: 1px;
			border-left: 4px solid var(--gold);
			padding-left: 12px;
		}
		.close-prices {
			float: right;
			font-size: 32px;
			cursor: pointer;
			color: #777;
			transition: 0.25s;
		}
		.close-prices:hover {
			color: var(--gold);
		}		

        /* --- HERO --- */
        .hero {
			height: 80vh;
			background:
			linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
			url('imagenes/clinica/clinica-zusaesthetic-pilar-horadada.jpg');
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			color: var(--dark);
}
        .hero-box { background: rgba(255,255,255,0.8); padding: 40px; backdrop-filter: blur(5px); }
        .hero h1 { font-size: 2.5rem; margin-bottom: 10px; }

        /* --- SECCIONES --- */
        section { padding: 80px 10%; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h2 { font-size: 2rem; text-transform: uppercase; margin-bottom: 10px; }
        .section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); margin: 0 auto; }

        /* --- SERVICIOS --- */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .service-card { padding: 30px; border: 1px solid #eee; text-align: center; transition: 0.3s; }
        .service-card:hover { border-color: var(--gold); transform: translateY(-5px); }
        .service-card i { font-size: 2rem; color: var(--gold); margin-bottom: 20px; }


        /* --- TESTIMONIOS --- */
        .review-card { background: var(--soft-white); padding: 30px; border-radius: 5px; margin-bottom: 20px; font-style: italic; }

        /* --- CONTACTO Y REDES --- */
        .footer-content { text-align: center; background: #111; color: white; padding: 60px 10%; }
        .social-icons { margin: 30px 0; display: flex; justify-content: center; gap: 20px; }
        .social-icons a { color: white; font-size: 1.5rem; transition: 0.3s; }
        .social-icons a:hover { color: var(--gold); }
        .google-link { display: inline-block; margin-top: 10px; }
        .google-link img { width: 30px; transition: 0.3s; }
        .google-link:hover img { opacity: 0.7; }

        .whatsapp-float {
            position: fixed; bottom: 30px; right: 30px;
            background: #25d366; color: white; width: 60px; height: 60px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 1000; text-decoration: none;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.45rem;
            cursor: pointer;
            padding: 8px;
        }

        @media (max-width: 768px) {
            nav {
                flex-wrap: wrap;
                gap: 10px;
            }

            .logo img {
                width: 115px;
            }

            .menu-toggle {
                display: block;
                margin-left: auto;
            }

            .lang-btn {
                order: 3;
            }

            .nav-links {
                display: none;
                order: 4;
                width: 100%;
                flex-direction: column;
                gap: 0;
                background: var(--glass);
                border-top: 1px solid rgba(197, 160, 89, 0.18);
                padding: 10px 0;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                padding: 14px 6px;
                font-size: 0.82rem;
                border-bottom: 1px solid rgba(0,0,0,0.05);
            }

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

        .en { display: none; }
    

        /* =========================
           COOKIE BANNER PREMIUM
        ========================= */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 40px);
            max-width: 950px;
            background: rgba(18,18,18,0.96);
            color: white;
            padding: 22px 26px;
            border-radius: 18px;
            z-index: 5000;
            display: none;
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
            border: 1px solid rgba(197,160,89,0.25);
            backdrop-filter: blur(12px);
        }

        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cookie-text {
            flex: 1;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cookie-text a {
            color: var(--gold-light);
            text-decoration: none;
            font-weight: 500;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            border: none;
            padding: 12px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: 0.3s;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }

        .cookie-accept {
            background: var(--gold);
            color: white;
        }

        .cookie-accept:hover {
            background: #b68e47;
        }

        .cookie-reject {
            background: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.25);
        }

        .cookie-reject:hover {
            background: rgba(255,255,255,0.08);
        }

        .cookie-config {
            background: rgba(255,255,255,0.08);
            color: white;
        }

        .cookie-config:hover {
            background: rgba(255,255,255,0.16);
        }

        .cookie-settings-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(4px);
            z-index: 5100;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .cookie-settings-content {
            width: 100%;
            max-width: 560px;
            background: white;
            color: var(--dark);
            border-radius: 20px;
            padding: 34px;
            box-shadow: 0 20px 45px rgba(0,0,0,0.22);
            border: 1px solid rgba(197,160,89,0.25);
        }

        .cookie-settings-content h3 {
            font-family: 'Cinzel', serif;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(197,160,89,0.18);
            align-items: center;
        }

        .cookie-option:last-of-type {
            border-bottom: none;
        }

        .cookie-option strong {
            display: block;
            margin-bottom: 4px;
            font-size: 0.95rem;
        }

        .cookie-option small {
            display: block;
            color: #666;
            line-height: 1.4;
        }

        .cookie-switch {
            min-width: 46px;
            height: 24px;
            appearance: none;
            background: #ccc;
            border-radius: 20px;
            position: relative;
            cursor: pointer;
            transition: 0.3s;
        }

        .cookie-switch:checked {
            background: var(--gold);
        }

        .cookie-switch::before {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: white;
            top: 3px;
            left: 3px;
            transition: 0.3s;
        }

        .cookie-switch:checked::before {
            left: 25px;
        }

        .cookie-switch:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .cookie-settings-actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 26px;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .cookie-banner {
                width: calc(100% - 24px);
                bottom: 12px;
                padding: 18px;
                border-radius: 16px;
            }

            .cookie-content {
                flex-direction: column;
                align-items: stretch;
            }

            .cookie-buttons,
            .cookie-settings-actions {
                width: 100%;
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
                padding: 14px;
            }

            .cookie-settings-content {
                padding: 26px 20px;
                max-height: 86vh;
                overflow-y: auto;
            }

            .cookie-option {
                align-items: flex-start;
            }
        }

    
/* =========================
   OFERTA DESTACADA
========================= */
.offer-section{
    padding: 55px 10%;
    background: var(--soft-white);
}

.offer-card{
    max-width: 950px;
    margin: auto;
    background: linear-gradient(145deg,#ffffff,#f8f8f8);
    border: 1px solid rgba(197,160,89,0.25);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.offer-badge{
    position:absolute;
    top:18px;
    right:18px;
    background: var(--gold);
    color:white;
    padding:8px 16px;
    border-radius:30px;
    font-size:0.72rem;
    text-transform:uppercase;
    letter-spacing:1px;
    font-weight:600;
}

.offer-title{
    font-family:'Cinzel',serif;
    color:var(--gold);
    font-size:2rem;
    margin-bottom:10px;
}

.offer-treatment{
    font-size:1.3rem;
    font-weight:600;
    margin-bottom:12px;
    color:var(--dark);
}

.offer-description{
    color:#555;
    margin-bottom:22px;
    line-height:1.7;
    max-width:700px;
}

.offer-price{
    font-size:2rem;
    color:var(--gold);
    font-weight:700;
    margin-bottom:24px;
}

.offer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    background:var(--gold);
    color:white;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s;
    font-weight:500;
}

.offer-btn:hover{
    background:#b68e47;
    transform:translateY(-2px);
}

@media(max-width:768px){
    .offer-card{
        padding:28px 22px;
    }

    .offer-title{
        font-size:1.5rem;
        margin-top:18px;
    }

    .offer-treatment{
        font-size:1.05rem;
    }

    .offer-price{
        font-size:1.7rem;
    }

    .offer-btn{
        width:100%;
    }

    .offer-badge{
        position:relative;
        top:auto;
        right:auto;
        display:inline-block;
        margin-bottom:18px;
    }
}


/* =========================
   ICONO SUPERIOR TRATAMIENTO DEL MES
========================= */
.monthly-top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #121212;
    color: var(--gold) !important;
    border: 1px solid rgba(197,160,89,0.55);
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.68rem !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.14);
    transition: 0.3s;
    white-space: nowrap;
}

.monthly-top-link:hover {
    background: var(--gold);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.monthly-top-link i {
    font-size: 0.9rem;
}

/* =========================
   SECCIÓN TRATAMIENTO DEL MES
========================= */
.monthly-treatment-section {
    background: #111;
    color: white;
    padding: 80px 10%;
}

.monthly-treatment-section .section-title h2 {
    color: var(--gold);
}

.monthly-treatment-card {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #181818;
    border: 1px solid rgba(197,160,89,0.35);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.monthly-treatment-image {
    min-height: 380px;
    background: linear-gradient(135deg, rgba(197,160,89,0.2), rgba(0,0,0,0.6));
}

.monthly-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.monthly-treatment-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.monthly-label {
    display: inline-block;
    width: fit-content;
    background: rgba(197,160,89,0.14);
    color: var(--gold-light);
    border: 1px solid rgba(197,160,89,0.45);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.monthly-treatment-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.monthly-treatment-content p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 22px;
}

.monthly-price {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 26px;
}

.monthly-btn {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--gold);
    color: white !important;
    text-decoration: none;
    border-radius: 40px;
    transition: 0.3s;
    font-weight: 500;
}

.monthly-btn:hover {
    background: #b68e47;
    transform: translateY(-2px);
}

@media(max-width: 900px) {
    .monthly-treatment-card {
        grid-template-columns: 1fr;
    }

    .monthly-treatment-image {
        min-height: 280px;
    }
}

@media(max-width: 768px) {
    .monthly-top-link {
        order: 2;
        font-size: 0.62rem !important;
        padding: 7px 11px;
    }

    .monthly-treatment-section {
        padding: 65px 6%;
    }

    .monthly-treatment-content {
        padding: 30px 22px;
    }

    .monthly-treatment-content h3 {
        font-size: 1.45rem;
    }

    .monthly-btn {
        width: 100%;
    }
}


/* =========================
   POPUP TRATAMIENTO DEL MES
========================= */
.offer-popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.75);
    backdrop-filter:blur(5px);
    z-index:6000;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.offer-popup-content{
    position:relative;
    width:100%;
    max-width:700px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
    border:1px solid rgba(197,160,89,0.35);
    animation:popupFade 0.3s ease;
}

.offer-popup-content img{
    width:100%;
    display:block;
    object-fit:cover;
}

.close-offer-popup{
    position:absolute;
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,0.7);
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
    z-index:2;
}

.close-offer-popup:hover{
    background:var(--gold);
}

@keyframes popupFade{
    from{
        opacity:0;
        transform:scale(0.96);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}









/* =========================
   HEADER LIMPIO + BOTÓN FLOTANTE OFERTA
========================= */

/* Header más equilibrado */
nav{
    justify-content:space-between !important;
    gap:28px !important;
    padding:18px 6% !important;
}

.logo{
    margin-right:36px !important;
    flex-shrink:0 !important;
}

.logo img{
    width:145px !important;
}

/* Menú principal centrado con aire */
.nav-links{
    flex:1 !important;
    justify-content:center !important;
    gap:24px !important;
    margin-left:0 !important;
}

/* Selector idioma estilo botón premium dorado */
.lang-btn{
    background:var(--gold) !important;
    color:white !important;
    border:none !important;
    border-radius:30px !important;
    padding:10px 18px !important;
    font-size:0.72rem !important;
    font-weight:500 !important;
    letter-spacing:0.5px !important;
    box-shadow:0 8px 20px rgba(197,160,89,0.22) !important;
    transition:0.3s !important;
    white-space:nowrap !important;
    margin-left:28px !important;
}

.lang-btn:hover{
    background:#b68e47 !important;
    transform:translateY(-2px) !important;
}

/* Ocultar el botón antiguo del tratamiento si estuviera en nav */
nav .monthly-top-link{
    display:none !important;
}

/* Botón flotante Tratamiento del Mes */
.monthly-floating-btn{
    position:fixed;
    right:28px;
    bottom:104px;
    z-index:1200;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    background:#121212;
    color:var(--gold);
    border:1px solid rgba(197,160,89,0.55);
    border-radius:999px;
    padding:13px 20px;
    font-family:'Montserrat',sans-serif;
    font-size:0.72rem;
    font-weight:600;
    letter-spacing:0.7px;
    text-transform:uppercase;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(0,0,0,0.22);
    transition:0.3s;
}

.monthly-floating-btn:hover{
    background:var(--gold);
    color:white;
    transform:translateY(-3px);
}

.monthly-floating-btn i{
    font-size:0.95rem;
}

/* En móvil queda como botón compacto */
@media(max-width:768px){

    nav{
        justify-content:space-between !important;
        gap:10px !important;
        padding:16px 5% !important;
    }

    .logo{
        margin-right:0 !important;
    }

    .logo img{
        width:118px !important;
    }

    .lang-btn{
        margin-left:0 !important;
        padding:8px 13px !important;
        font-size:0.65rem !important;
        order:3 !important;
    }

    .monthly-floating-btn{
        right:18px;
        bottom:96px;
        width:52px;
        height:52px;
        padding:0;
        border-radius:50%;
    }

    .monthly-floating-btn span{
        display:none !important;
    }

    .monthly-floating-btn i{
        font-size:1rem;
    }
}


/* =====================================================
   LOGO PREMIUM HEADER — MEJOR LEGIBILIDAD
===================================================== */

/* Header con más aire para que el logo no quede aplastado */
nav{
    min-height: 112px !important;
    padding: 18px 6% !important;
    align-items: center !important;
}

/* Contenedor del logo: limpio, sin caja negra, con respiración */
.logo{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex-shrink:0 !important;
    margin-right:42px !important;
    padding:0 !important;
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

/* Logo más grande y nítido */
.logo img{
    width:210px !important;
    max-width:210px !important;
    height:auto !important;
    max-height:none !important;
    object-fit:contain !important;
    display:block !important;
    image-rendering:auto !important;
}

/* El menú se adapta al nuevo tamaño del logo */
.nav-links{
    gap:22px !important;
}

/* Tablet */
@media(max-width:1100px){
    nav{
        padding:16px 5% !important;
    }

    .logo{
        margin-right:24px !important;
    }

    .logo img{
        width:180px !important;
        max-width:180px !important;
    }

    .nav-links{
        gap:16px !important;
    }
}

/* Móvil */
@media(max-width:768px){
    nav{
        min-height:auto !important;
        padding:14px 5% !important;
    }

    .logo{
        margin-right:0 !important;
    }

    .logo img{
        width:150px !important;
        max-width:150px !important;
    }
}

/* Móvil pequeño */
@media(max-width:420px){
    .logo img{
        width:135px !important;
        max-width:135px !important;
    }
}


/* =========================
   PREMIUM REVIEW BUTTONS
========================= */

.reviews-buttons{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    gap:18px !important;
    flex-wrap:wrap !important;
    margin-top:35px !important;
}

.review-btn{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:12px !important;
    min-width:290px !important;
    padding:16px 28px !important;
    border-radius:999px !important;
    text-decoration:none !important;
    font-family:'Montserrat',sans-serif !important;
    font-size:14px !important;
    font-weight:500 !important;
    transition:0.3s ease !important;
    border:1px solid rgba(197,160,89,0.45) !important;
}

.review-btn i{
    font-size:1rem !important;
}

.google-btn{
    background:var(--gold) !important;
    color:white !important;
    box-shadow:0 10px 22px rgba(197,160,89,0.22) !important;
}

.google-btn:hover{
    background:#b68e47 !important;
    transform:translateY(-2px) !important;
}

.doctoralia-btn{
    background:#121212 !important;
    color:var(--gold) !important;
    box-shadow:0 10px 22px rgba(0,0,0,0.12) !important;
}

.doctoralia-btn:hover{
    background:var(--gold) !important;
    color:white !important;
    transform:translateY(-2px) !important;
}

@media(max-width:768px){

    .reviews-buttons{
        flex-direction:column !important;
    }

    .review-btn{
        width:100% !important;
        max-width:340px !important;
        min-width:auto !important;
    }
}


/* =========================
   OPINIONES PREMIUM — 3 TARJETAS
========================= */
.premium-reviews{
    background:linear-gradient(180deg,#fff 0%,#fafafa 100%) !important;
    padding:70px 6% 80px !important;
    text-align:center !important;
    overflow:hidden !important;
}

.reviews-premium-title{
    margin-bottom:34px !important;
}

.reviews-premium-title h2{
    font-size:2.25rem !important;
    text-transform:none !important;
    letter-spacing:0.8px !important;
    color:#111 !important;
    margin-bottom:12px !important;
}

.reviews-title-decoration{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    margin:8px auto 18px;
    color:var(--gold);
}

.reviews-title-decoration span{
    width:115px;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
}

.reviews-title-decoration i{
    font-size:0.85rem;
}

.reviews-subtitle{
    max-width:520px;
    margin:0 auto !important;
    color:#555;
    font-size:1rem;
    line-height:1.55;
}

.reviews-premium-carousel{
    display:grid;
    grid-template-columns:56px 1fr 56px;
    align-items:center;
    gap:22px;
    max-width:1280px;
    margin:0 auto;
}

.reviews-premium-track{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    align-items:stretch;
}

.premium-review-card{
    position:relative;
    background:rgba(255,255,255,0.96);
    border:1px solid rgba(197,160,89,0.13);
    border-radius:16px;
    padding:34px 32px 28px;
    min-height:245px;
    box-shadow:0 14px 35px rgba(0,0,0,0.07);
    text-align:left;
    transition:0.3s ease;
}

.premium-review-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 42px rgba(0,0,0,0.09);
    border-color:rgba(197,160,89,0.28);
}

.review-stars{
    text-align:center;
    color:var(--gold);
    font-size:1.1rem;
    letter-spacing:2px;
    margin-bottom:18px;
}

.review-quote{
    position:absolute;
    left:22px;
    top:74px;
    font-family:'Cinzel',serif;
    font-size:4.3rem;
    line-height:1;
    color:var(--gold);
    opacity:0.78;
}

.premium-review-card p{
    position:relative;
    z-index:1;
    padding-left:28px;
    color:#222;
    font-size:0.95rem;
    line-height:1.75;
    margin-bottom:22px;
}

.review-separator{
    width:42px;
    height:1px;
    background:var(--gold);
    margin:0 auto 16px;
    opacity:0.7;
}

.premium-review-card strong{
    display:block;
    text-align:center;
    color:var(--gold);
    font-size:0.95rem;
}

.reviews-arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(197,160,89,0.45);
    background:white;
    color:var(--gold);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.reviews-arrow:hover{
    background:var(--gold);
    color:white;
    transform:translateY(-2px);
}

.premium-reviews .reviews-dots{
    margin-top:22px !important;
}

.premium-reviews .dot{
    cursor:pointer;
    width:10px;
    height:10px;
}

.premium-reviews .reviews-buttons{
    margin-top:34px !important;
}

@media(max-width:900px){
    .reviews-premium-carousel{
        grid-template-columns:44px 1fr 44px;
        gap:12px;
    }

    .reviews-premium-track{
        grid-template-columns:1fr;
    }

    .premium-review-card{
        max-width:520px;
        margin:0 auto;
    }

    .reviews-premium-title h2{
        font-size:1.75rem !important;
    }

    .reviews-title-decoration span{
        width:70px;
    }
}

@media(max-width:600px){
    .premium-reviews{
        padding:58px 4% 68px !important;
    }

    .reviews-premium-carousel{
        grid-template-columns:1fr;
    }

    .reviews-arrow{
        display:none;
    }

    .premium-review-card{
        padding:30px 24px 26px;
        min-height:auto;
    }
}


/* ===============================
   FOOTER PREMIUM AISLADO FINAL
   No toca WhatsApp, Doctoralia ni carrusel
=============================== */

.za-premium-footer-only{
    background:
        radial-gradient(circle at top left, rgba(197,160,89,0.18), transparent 32%),
        linear-gradient(135deg, #070707 0%, #141414 62%, #090909 100%) !important;
    color:#ffffff !important;
    padding:0 !important;
    text-align:left !important;
    border-top:1px solid rgba(197,160,89,0.22) !important;
}

.za-premium-footer-grid{
    max-width:1220px;
    margin:0 auto;
    padding:56px 7% 44px;
    display:grid;
    grid-template-columns:1.35fr 1fr 1fr 1.35fr;
    gap:42px;
    align-items:flex-start;
}

.za-premium-footer-brand img{
    width:190px;
    max-width:100%;
    height:auto;
    display:block;
    margin-bottom:18px;
}

.za-premium-footer-brand p{
    color:rgba(255,255,255,0.82) !important;
    font-size:0.9rem !important;
    line-height:1.6 !important;
    margin:0 0 18px !important;
}

.za-premium-footer-social{
    display:flex;
    gap:14px;
    align-items:center;
    margin-top:20px;
}

.za-premium-footer-social a{
    width:36px !important;
    height:36px !important;
    border-radius:50% !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:var(--gold) !important;
    border:1px solid rgba(197,160,89,0.45) !important;
    text-decoration:none !important;
    background:transparent !important;
    font-size:1rem !important;
    transition:0.25s ease !important;
}

.za-premium-footer-social a:hover{
    background:var(--gold) !important;
    color:#111111 !important;
    transform:translateY(-2px) !important;
}

.za-premium-footer-col h3{
    color:var(--gold) !important;
    font-family:'Cinzel', serif !important;
    font-size:1rem !important;
    letter-spacing:1px !important;
    margin:0 0 18px !important;
}

.za-premium-footer-col a{
    display:block !important;
    color:rgba(255,255,255,0.82) !important;
    text-decoration:none !important;
    font-size:0.88rem !important;
    line-height:1.35 !important;
    margin:0 0 11px !important;
    transition:0.25s ease !important;
}

.za-premium-footer-col a:hover{
    color:var(--gold) !important;
    transform:translateX(3px) !important;
}

.za-premium-footer-contact p{
    display:flex !important;
    align-items:flex-start !important;
    gap:11px !important;
    color:rgba(255,255,255,0.82) !important;
    font-size:0.88rem !important;
    line-height:1.45 !important;
    margin:0 0 13px !important;
}

.za-premium-footer-contact i{
    color:var(--gold) !important;
    min-width:16px !important;
    margin-top:4px !important;
}

.za-premium-footer-bottom{
    border-top:1px solid rgba(197,160,89,0.18);
    background:linear-gradient(90deg, rgba(197,160,89,0.26), rgba(197,160,89,0.08), rgba(197,160,89,0.26));
    padding:17px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.za-premium-footer-bottom p{
    color:rgba(255,255,255,0.82) !important;
    font-size:0.76rem !important;
    margin:0 !important;
}

.za-premium-footer-bottom a{
    color:rgba(255,255,255,0.86) !important;
    text-decoration:none !important;
    font-size:0.76rem !important;
}

.za-premium-footer-bottom a:hover{
    color:var(--gold) !important;
}

@media(max-width:1000px){
    .za-premium-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:36px;
    }
}

@media(max-width:700px){
    .za-premium-footer-only{
        text-align:center !important;
    }

    .za-premium-footer-grid{
        grid-template-columns:1fr;
        padding:46px 8% 36px;
        gap:34px;
    }

    .za-premium-footer-brand img{
        margin-left:auto;
        margin-right:auto;
    }

    .za-premium-footer-social{
        justify-content:center;
    }

    .za-premium-footer-contact p{
        justify-content:center !important;
        text-align:left !important;
    }

    .za-premium-footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}


/* =========================
   WHATSAPP PREMIUM DORADO
========================= */

.premium-wa{
    position:fixed !important;
    right:30px !important;
    bottom:30px !important;
    width:62px !important;
    height:62px !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    background:#121212 !important;
    color:var(--gold) !important;
    border:1px solid rgba(197,160,89,0.45) !important;
    text-decoration:none !important;
    font-size:1.7rem !important;
    box-shadow:0 12px 28px rgba(0,0,0,0.22) !important;
    z-index:1500 !important;
    transition:0.3s ease !important;
}

.premium-wa:hover{
    background:var(--gold) !important;
    color:white !important;
    transform:translateY(-3px) scale(1.03) !important;
}

@media(max-width:768px){
    .premium-wa{
        width:56px !important;
        height:56px !important;
        right:18px !important;
        bottom:22px !important;
        font-size:1.45rem !important;
    }
}


/* =========================
   ETIQUETA TARIFAS CARRUSEL
   Abajo derecha sobre cada imagen
========================= */

.service-card-image{
    position:relative !important;
}

.service-price-cta{
    position:absolute !important;
    right:16px !important;
    bottom:16px !important;
    z-index:40 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:8px 14px !important;
    border-radius:999px !important;
    background:rgba(18,18,18,0.86) !important;
    color:#ffffff !important;
    border:1px solid rgba(197,160,89,0.7) !important;
    font-family:'Montserrat',sans-serif !important;
    font-size:0.64rem !important;
    font-weight:600 !important;
    letter-spacing:0.9px !important;
    text-transform:uppercase !important;
    line-height:1 !important;
    box-shadow:0 8px 22px rgba(0,0,0,0.28) !important;
    backdrop-filter:blur(6px) !important;
    pointer-events:none !important;
    transition:0.3s ease !important;
}

.service-card-image:hover .service-price-cta{
    background:var(--gold) !important;
    border-color:var(--gold) !important;
    color:white !important;
    transform:translateY(-2px) !important;
}

@media(max-width:768px){
    .service-price-cta{
        right:12px !important;
        bottom:12px !important;
        padding:7px 12px !important;
        font-size:0.58rem !important;
    }
}


/* =====================================================
   OPTIMIZACIÓN MÓVIL FINAL
   Solo ajustes responsive; no cambia funcionalidades
===================================================== */

@media(max-width:768px){

    body{
        overflow-x:hidden !important;
    }

    section{
        padding:60px 6% !important;
        scroll-margin-top:95px !important;
    }

    /* Header más compacto y usable */
    nav{
        min-height:auto !important;
        padding:12px 5% !important;
        gap:8px !important;
        flex-wrap:wrap !important;
    }

    .logo{
        margin-right:0 !important;
        max-width:55% !important;
    }

    .logo img{
        width:138px !important;
        max-width:100% !important;
    }

    .menu-toggle{
        display:flex !important;
        align-items:center !important;
        justify-content:center !important;
        margin-left:auto !important;
        width:42px !important;
        height:42px !important;
        border-radius:50% !important;
        background:rgba(197,160,89,0.08) !important;
        color:var(--dark) !important;
    }

    .lang-btn{
        order:3 !important;
        padding:8px 13px !important;
        font-size:0.62rem !important;
        margin-left:0 !important;
        border-radius:999px !important;
    }

    .nav-links{
        order:4 !important;
        width:100% !important;
        margin-top:10px !important;
        border-radius:16px !important;
        overflow:hidden !important;
        box-shadow:0 10px 24px rgba(0,0,0,0.08) !important;
    }

    .nav-links a{
        text-align:center !important;
        padding:14px 8px !important;
        font-size:0.78rem !important;
        background:rgba(255,255,255,0.96) !important;
    }

    /* Hero móvil */
    .hero{
        height:68vh !important;
        min-height:520px !important;
        padding:0 6% !important;
        background-position:center !important;
    }

    .hero-box{
        width:100% !important;
        padding:30px 22px !important;
        border-radius:18px !important;
        background:rgba(255,255,255,0.84) !important;
    }

    .hero h1{
        font-size:1.72rem !important;
        line-height:1.25 !important;
        margin-bottom:12px !important;
    }

    .hero p{
        font-size:0.95rem !important;
    }

    .section-title{
        margin-bottom:34px !important;
    }

    .section-title h2{
        font-size:1.55rem !important;
        line-height:1.25 !important;
    }

    /* Sobre mí */
    #about p{
        font-size:0.94rem !important;
        line-height:1.8 !important;
    }

    /* Carrusel servicios */
    .services-section{
        padding:60px 0 !important;
    }

    .services-section .section-title{
        padding:0 6% !important;
    }

    .services-slider-container{
        padding:0 !important;
    }

    .services-slider{
        gap:0 !important;
        padding:0 !important;
        scroll-snap-type:x mandatory !important;
    }

    .service-card-image{
        min-width:100% !important;
        flex-basis:100% !important;
        height:390px !important;
        border-radius:0 !important;
        scroll-snap-align:start !important;
    }

    .service-overlay{
        padding:24px 22px 58px !important;
        font-size:1.05rem !important;
        text-align:left !important;
    }

    .service-price-cta{
        right:18px !important;
        bottom:18px !important;
        padding:8px 14px !important;
        font-size:0.62rem !important;
    }

    .slider-btn{
        width:42px !important;
        height:42px !important;
        font-size:22px !important;
        background:rgba(18,18,18,0.72) !important;
        color:white !important;
        border:1px solid rgba(197,160,89,0.42) !important;
    }

    .prev{
        left:10px !important;
    }

    .next{
        right:10px !important;
    }

    /* Modal precios */
    .prices-content{
        width:calc(100% - 22px) !important;
        margin:62px auto 24px !important;
        padding:30px 20px !important;
        max-height:82vh !important;
        border-radius:18px !important;
    }

    #priceTitle{
        font-size:1.45rem !important;
        margin-bottom:24px !important;
        padding-right:28px !important;
    }

    .close-prices{
        font-size:30px !important;
        line-height:1 !important;
    }

    .price-item{
        grid-template-columns:1fr auto 34px !important;
        gap:10px !important;
        font-size:0.86rem !important;
        padding:13px 0 !important;
    }

    .price-val{
        font-size:0.86rem !important;
    }

    .wa-icon svg{
        width:21px !important;
        height:21px !important;
    }

    /* Opiniones premium */
    .premium-reviews{
        padding:58px 5% 64px !important;
    }

    .reviews-premium-title h2{
        font-size:1.55rem !important;
    }

    .reviews-subtitle{
        font-size:0.92rem !important;
    }

    .reviews-title-decoration span{
        width:56px !important;
    }

    .reviews-premium-carousel{
        grid-template-columns:1fr !important;
        gap:0 !important;
    }

    .reviews-arrow{
        display:none !important;
    }

    .reviews-premium-track{
        grid-template-columns:1fr !important;
        gap:0 !important;
    }

    .premium-review-card{
        width:100% !important;
        max-width:100% !important;
        min-height:auto !important;
        padding:30px 22px 26px !important;
        border-radius:18px !important;
    }

    .premium-review-card p{
        padding-left:24px !important;
        font-size:0.9rem !important;
        line-height:1.7 !important;
    }

    .review-quote{
        left:18px !important;
        top:72px !important;
        font-size:3.6rem !important;
    }

    .reviews-buttons{
        flex-direction:column !important;
        gap:12px !important;
    }

    .review-btn{
        width:100% !important;
        max-width:340px !important;
        min-width:0 !important;
        padding:14px 20px !important;
        font-size:0.86rem !important;
    }

    /* Footer */
    .za-premium-footer-grid,
    .za-final-footer-grid,
    .za-safe-footer-wrap,
    .za-footer-fixed-wrap{
        grid-template-columns:1fr !important;
        padding:44px 8% 34px !important;
        gap:32px !important;
        text-align:center !important;
    }

    .za-premium-footer-brand img,
    .za-final-footer-brand img,
    .za-safe-footer-brand img,
    .za-footer-fixed-brand img{
        margin-left:auto !important;
        margin-right:auto !important;
        width:165px !important;
    }

    .za-premium-footer-social,
    .za-final-footer-social,
    .za-safe-footer-social,
    .za-footer-fixed-social{
        justify-content:center !important;
    }

    .za-premium-footer-contact p,
    .za-final-footer-contact p,
    .za-safe-footer-contact p,
    .za-footer-fixed-contact p{
        justify-content:center !important;
        text-align:left !important;
    }

    .za-premium-footer-bottom,
    .za-final-footer-bottom,
    .za-safe-footer-bottom,
    .za-footer-fixed-bottom{
        flex-direction:column !important;
        text-align:center !important;
        padding:16px 8% !important;
    }

    /* Cookies móvil */
    .cookie-banner{
        width:calc(100% - 20px) !important;
        bottom:10px !important;
        padding:17px !important;
        border-radius:18px !important;
    }

    .cookie-text{
        font-size:0.82rem !important;
    }

    .cookie-btn{
        width:100% !important;
        padding:13px !important;
    }

    .cookie-settings-content{
        width:calc(100% - 18px) !important;
        padding:24px 18px !important;
        max-height:84vh !important;
        overflow-y:auto !important;
    }

    /* Botones flotantes: no se pisan */
    .premium-wa,
    .whatsapp-float{
        width:54px !important;
        height:54px !important;
        right:17px !important;
        bottom:18px !important;
        font-size:1.45rem !important;
    }

    .monthly-floating-btn{
        width:54px !important;
        height:54px !important;
        right:17px !important;
        bottom:84px !important;
        padding:0 !important;
        border-radius:50% !important;
    }

    .monthly-floating-btn span{
        display:none !important;
    }

    #scrollTopBtn{
        width:44px !important;
        height:44px !important;
        left:17px !important;
        bottom:18px !important;
    }

    /* Popup oferta */
    .offer-popup{
        padding:14px !important;
    }

    .offer-popup-content{
        max-width:100% !important;
        border-radius:18px !important;
    }

    .close-offer-popup{
        width:38px !important;
        height:38px !important;
        top:10px !important;
        right:10px !important;
    }
}

@media(max-width:420px){

    .logo img{
        width:128px !important;
    }

    .hero{
        min-height:500px !important;
    }

    .hero h1{
        font-size:1.48rem !important;
    }

    .service-card-image{
        height:360px !important;
    }

    .price-item{
        grid-template-columns:1fr !important;
        gap:6px !important;
    }

    .price-val{
        text-align:left !important;
    }

    .wa-icon{
        justify-content:flex-start !important;
        margin-left:0 !important;
    }
}


/* =====================================================
   NAVBAR PREMIUM LUXURY
===================================================== */

nav{
    position:sticky !important;
    top:14px !important;
    width:calc(100% - 32px) !important;
    max-width:1280px !important;
    margin:14px auto 0 !important;
    padding:13px 26px !important;
    min-height:86px !important;
    border-radius:26px !important;
    background:rgba(255,255,255,0.86) !important;
    backdrop-filter:blur(18px) !important;
    -webkit-backdrop-filter:blur(18px) !important;
    border:1px solid rgba(197,160,89,0.22) !important;
    box-shadow:0 18px 45px rgba(0,0,0,0.08) !important;
    z-index:2000 !important;
}

nav::after{
    content:"" !important;
    position:absolute !important;
    left:28px !important;
    right:28px !important;
    bottom:0 !important;
    height:1px !important;
    background:linear-gradient(90deg, transparent, rgba(197,160,89,0.55), transparent) !important;
    pointer-events:none !important;
}

.nav-links{
    flex:1 !important;
    justify-content:center !important;
    align-items:center !important;
    gap:8px !important;
}

.nav-links a{
    position:relative !important;
    padding:10px 13px !important;
    border-radius:999px !important;
    font-size:0.72rem !important;
    letter-spacing:0.55px !important;
    color:#151515 !important;
    transition:0.28s ease !important;
}

.nav-links a::after{
    content:"" !important;
    position:absolute !important;
    left:50% !important;
    bottom:5px !important;
    width:0 !important;
    height:1px !important;
    background:var(--gold) !important;
    transform:translateX(-50%) !important;
    transition:0.28s ease !important;
}

.nav-links a:hover{
    color:var(--gold) !important;
    background:rgba(197,160,89,0.08) !important;
}

.nav-links a:hover::after{
    width:42% !important;
}

.logo{
    margin-right:28px !important;
}

.logo img{
    width:185px !important;
    max-width:185px !important;
    filter:drop-shadow(0 8px 16px rgba(197,160,89,0.12)) !important;
}

.lang-btn{
    background:#121212 !important;
    color:var(--gold) !important;
    border:1px solid rgba(197,160,89,0.45) !important;
    border-radius:999px !important;
    padding:10px 16px !important;
    font-size:0.68rem !important;
    box-shadow:0 8px 20px rgba(0,0,0,0.10) !important;
}

.lang-btn:hover{
    background:var(--gold) !important;
    color:#fff !important;
}

/* Evita que el hero quede demasiado pegado al header flotante */
.hero{
    margin-top:-100px !important;
    padding-top:100px !important;
}

@media(max-width:1100px){
    nav{
        width:calc(100% - 24px) !important;
        padding:12px 18px !important;
    }

    .logo img{
        width:160px !important;
        max-width:160px !important;
    }

    .nav-links a{
        padding:9px 9px !important;
        font-size:0.67rem !important;
    }
}

@media(max-width:768px){
    nav{
        top:10px !important;
        width:calc(100% - 18px) !important;
        margin:10px auto 0 !important;
        padding:11px 14px !important;
        border-radius:22px !important;
        min-height:auto !important;
    }

    nav::after{
        left:18px !important;
        right:18px !important;
    }

    .logo{
        max-width:52% !important;
        margin-right:0 !important;
    }

    .logo img{
        width:132px !important;
        max-width:132px !important;
    }

    .menu-toggle{
        background:#121212 !important;
        color:var(--gold) !important;
        border:1px solid rgba(197,160,89,0.38) !important;
        box-shadow:0 8px 18px rgba(0,0,0,0.10) !important;
    }

    .lang-btn{
        padding:8px 12px !important;
        font-size:0.6rem !important;
    }

    .nav-links{
        margin-top:12px !important;
        border-radius:18px !important;
        background:rgba(255,255,255,0.96) !important;
        border:1px solid rgba(197,160,89,0.15) !important;
        box-shadow:0 14px 30px rgba(0,0,0,0.08) !important;
    }

    .nav-links a{
        border-bottom:1px solid rgba(197,160,89,0.10) !important;
        border-radius:0 !important;
        padding:14px 10px !important;
        background:transparent !important;
    }

    .nav-links a:hover{
        background:rgba(197,160,89,0.08) !important;
    }

    .hero{
        margin-top:-86px !important;
        padding-top:86px !important;
    }
}

@media(max-width:420px){
    .logo img{
        width:122px !important;
        max-width:122px !important;
    }
}


/* =====================================================
   FIX NAVBAR PREMIUM SIN SOLAPAR HERO
===================================================== */

/* Mantiene el estilo premium pero la coloca en flujo normal */
nav{
    top:0 !important;
    margin:18px auto 18px !important;
}

/* El hero empieza debajo del menú, no por debajo de él */
.hero{
    margin-top:0 !important;
    padding-top:0 !important;
}

/* En móvil también evitamos que invada la imagen */
@media(max-width:768px){
    nav{
        top:0 !important;
        margin:10px auto 14px !important;
    }

    .hero{
        margin-top:0 !important;
        padding-top:0 !important;
    }
}


/* =====================================================
   FIX POPUP TRATAMIENTO DEL MES
   Espaciado superior/inferior para ver cierre
===================================================== */

.offer-popup{
    padding:40px 20px !important;
    overflow-y:auto !important;
}

.offer-popup-content{
    margin:auto !important;
    max-height:none !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.offer-popup-content img{
    max-height:calc(100vh - 120px) !important;
    width:auto !important;
    max-width:100% !important;
    object-fit:contain !important;
    border-radius:20px !important;
    box-shadow:0 18px 40px rgba(0,0,0,0.28) !important;
}

.close-offer-popup{
    top:18px !important;
    right:18px !important;
    width:46px !important;
    height:46px !important;
    border-radius:50% !important;
    background:rgba(18,18,18,0.88) !important;
    border:1px solid rgba(197,160,89,0.45) !important;
    color:var(--gold) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    font-size:1.4rem !important;
    z-index:9999 !important;
    backdrop-filter:blur(8px) !important;
}

.close-offer-popup:hover{
    background:var(--gold) !important;
    color:#fff !important;
}

@media(max-width:768px){

    .offer-popup{
        padding:70px 12px 28px !important;
    }

    .offer-popup-content img{
        max-height:calc(100vh - 140px) !important;
        border-radius:16px !important;
    }

    .close-offer-popup{
        top:14px !important;
        right:14px !important;
        width:42px !important;
        height:42px !important;
        font-size:1.2rem !important;
    }
}


/* =========================
   FOOTER LOCATION LINK
========================= */
.footer-location-link{
    color:rgba(255,255,255,0.82) !important;
    text-decoration:none !important;
    transition:0.25s ease !important;
}

.footer-location-link:hover{
    color:var(--gold) !important;
    text-decoration:none !important;
}


/* =========================
   FOOTER CLICKABLE LINKS
========================= */
.footer-location-link,
.footer-phone-link{
    color:rgba(255,255,255,0.82) !important;
    text-decoration:none !important;
    transition:0.25s ease !important;
}

.footer-location-link:hover,
.footer-phone-link:hover{
    color:var(--gold) !important;
}



/* =========================
   MEJORAS UX + SEO CONVERSIÓN
========================= */
.hero-cta-row{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    margin-top:24px;
}
.primary-cta,.secondary-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:13px 24px;
    border-radius:999px;
    text-decoration:none;
    font-size:0.86rem;
    font-weight:600;
    transition:0.3s ease;
}
.primary-cta{
    background:var(--gold);
    color:white;
    box-shadow:0 10px 24px rgba(197,160,89,0.24);
}
.primary-cta:hover{background:#b68e47;transform:translateY(-2px);}
.secondary-cta{
    background:#121212;
    color:var(--gold);
    border:1px solid rgba(197,160,89,0.45);
}
.secondary-cta:hover{background:var(--gold);color:white;transform:translateY(-2px);}
.trust-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    max-width:1120px;
    margin:34px auto 0;
    padding:0 6%;
}
.trust-item{
    background:white;
    border:1px solid rgba(197,160,89,0.16);
    border-radius:18px;
    padding:20px 18px;
    text-align:center;
    box-shadow:0 10px 28px rgba(0,0,0,0.05);
}
.trust-item i{color:var(--gold);font-size:1.25rem;margin-bottom:10px;}
.trust-item strong{display:block;font-size:0.88rem;margin-bottom:4px;}
.trust-item span{display:block;font-size:0.78rem;color:#666;line-height:1.45;}
.seo-intro{
    max-width:900px;
    margin:32px auto 0;
    text-align:center;
    color:#444;
    font-size:0.98rem;
    line-height:1.85;
}
@media(max-width:900px){.trust-strip{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){
    .hero-cta-row{flex-direction:column;}
    .primary-cta,.secondary-cta{width:100%;}
    .trust-strip{grid-template-columns:1fr;padding:0 6%;}
}


.location-section{
    padding:70px 5%;
    background:#121212;
    text-align:center;
}

.location-section .section-title h2{
    color:#c5a059;
}

.location-wrapper{
    max-width:900px;
    margin:40px auto 0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
    border:1px solid rgba(197,160,89,0.25);
}

.location-wrapper iframe{
    display:block;
    width:100%;
    height:320px;
    filter:grayscale(15%) contrast(1.02);
}


.footer-map-centered{
    width:100%;
    display:flex;
    justify-content:center;
    margin:35px 0 20px;
}

.footer-map-box{
    width:320px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(197,160,89,.25);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}



/* =========================
   WHATSAPP FLOAT LUXURY SAFE
========================= */

.za-whatsapp-floating{
    position:fixed !important;
    right:26px !important;
    bottom:26px !important;
    width:64px !important;
    height:64px !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-decoration:none !important;
    background:rgba(18,18,18,0.94) !important;
    backdrop-filter:blur(12px) !important;
    -webkit-backdrop-filter:blur(12px) !important;
    border:1px solid rgba(197,160,89,0.42) !important;
    box-shadow:0 14px 35px rgba(0,0,0,0.24) !important;
    z-index:9999 !important;
    transition:all .3s ease !important;
    overflow:hidden !important;
}

.za-whatsapp-floating::before{
    content:'' !important;
    position:absolute !important;
    inset:0 !important;
    border-radius:50% !important;
    padding:1px !important;
    background:linear-gradient(
        135deg,
        rgba(197,160,89,.75),
        rgba(197,160,89,.08)
    ) !important;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0) !important;

    -webkit-mask-composite:xor !important;
    mask-composite:exclude !important;
}

.za-whatsapp-floating i{
    color:var(--gold) !important;
    font-size:1.7rem !important;
    position:relative !important;
    z-index:2 !important;
    transition:.3s ease !important;
}

.za-whatsapp-floating:hover{
    transform:translateY(-4px) scale(1.04) !important;
    background:var(--gold) !important;
}

.za-whatsapp-floating:hover i{
    color:#ffffff !important;
}

@media(max-width:768px){

    .za-whatsapp-floating{
        width:56px !important;
        height:56px !important;
        right:18px !important;
        bottom:18px !important;
    }

    .za-whatsapp-floating i{
        font-size:1.45rem !important;
    }
}




    .services-slider {
        scroll-snap-type: x mandatory;
        scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch;
    }

    .service-card-image {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    @media (max-width: 600px) {
        .services-slider {
            gap: 0;
        }

        .service-card-image {
            min-width: 100%;
            flex-basis: 100%;
        }

        .slider-btn {
            width: 42px;
            height: 42px;
            font-size: 22px;
        }

        .prev { left: 6px; }
        .next { right: 6px; }
    }

.location-section{
    padding:70px 5%;
    background:#121212;
    text-align:center;
}

.location-section .section-title h2{
    color:#c5a059;
}

.location-wrapper{
    max-width:900px;
    margin:40px auto 0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
    border:1px solid rgba(197,160,89,0.25);
}

.location-wrapper iframe{
    display:block;
    width:100%;
    height:320px;
    filter:grayscale(15%) contrast(1.02);
}


.footer-map-centered{
    width:100%;
    display:flex;
    justify-content:center;
    margin:35px 0 20px;
}

.footer-map-box{
    width:320px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(197,160,89,.25);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}




    html[lang="es"] .es { display: block; }
    html[lang="es"] .en { display: none !important; }
    html[lang="en"] .es { display: none !important; }
    html[lang="en"] .en { display: block; }
    html[lang="en"] .nav-links.en,
    html[lang="en"] a.en,
    html[lang="en"] span.en { display: inline-block; }
    html[lang="es"] .nav-links.es,
    html[lang="es"] a.es,
    html[lang="es"] span.es { display: inline-block; }

.location-section{
    padding:70px 5%;
    background:#121212;
    text-align:center;
}

.location-section .section-title h2{
    color:#c5a059;
}

.location-wrapper{
    max-width:900px;
    margin:40px auto 0;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
    border:1px solid rgba(197,160,89,0.25);
}

.location-wrapper iframe{
    display:block;
    width:100%;
    height:320px;
    filter:grayscale(15%) contrast(1.02);
}


.footer-map-centered{
    width:100%;
    display:flex;
    justify-content:center;
    margin:35px 0 20px;
}

.footer-map-box{
    width:320px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(197,160,89,.25);
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}



/* =========================
   FIX DEFINITIVO IDIOMA
========================= */
html[lang="es"] .en { display: none !important; }
html[lang="en"] .es { display: none !important; }

html[lang="es"] .es,
html[lang="en"] .en { display: block !important; }

html[lang="es"] a.es,
html[lang="es"] span.es,
html[lang="es"] .nav-links.es,
html[lang="es"] .primary-cta.es,
html[lang="es"] .secondary-cta.es,
html[lang="en"] a.en,
html[lang="en"] span.en,
html[lang="en"] .nav-links.en,
html[lang="en"] .primary-cta.en,
html[lang="en"] .secondary-cta.en {
    display: inline-flex !important;
}

html[lang="es"] .nav-links.es,
html[lang="en"] .nav-links.en {
    display: flex !important;
}

.lang-btn {
    cursor: pointer !important;
    user-select: none !important;
}


/* =====================================================
   SEO LOCAL + GOOGLE MAPS
===================================================== */
.local-seo-section,
.seo-services-section {
    background: var(--soft-white);
    padding: 80px 10%;
}

.seo-services-section {
    padding-bottom: 35px;
    text-align: center;
}

.seo-services-section p {
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    line-height: 1.8;
}

.local-seo-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: stretch;
}

.local-seo-card {
    background: #fff;
    border: 1px solid rgba(197,160,89,0.22);
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

.local-seo-card h3 {
    color: var(--gold);
    margin-bottom: 18px;
}

.local-seo-card p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
}

.local-info {
    margin: 22px 0;
}

.local-info p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.local-info i {
    color: var(--gold);
    min-width: 18px;
    margin-top: 4px;
}

.local-info a {
    color: var(--dark);
    text-decoration: none;
}

.local-hours {
    padding: 18px 0;
    border-top: 1px solid rgba(197,160,89,0.18);
    border-bottom: 1px solid rgba(197,160,89,0.18);
    margin-bottom: 22px;
}

.local-hours h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.local-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.local-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--gold);
    color: white !important;
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.25s ease;
}

.local-btn:hover {
    background: #b68e47;
    transform: translateY(-2px);
}

.local-btn.secondary {
    background: #121212;
    color: var(--gold) !important;
    border: 1px solid rgba(197,160,89,0.45);
}

.local-btn.secondary:hover {
    background: var(--gold);
    color: white !important;
}

.local-map {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(197,160,89,0.22);
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
    min-height: 360px;
    background: white;
}

.local-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

@media(max-width: 900px) {
    .local-seo-section,
    .seo-services-section {
        padding: 60px 6%;
    }

    .local-seo-grid {
        grid-template-columns: 1fr;
    }

    .local-seo-card {
        padding: 28px 22px;
    }

    .local-actions {
        flex-direction: column;
    }

    .local-btn {
        width: 100%;
    }
}

/* =====================================================
   FIX MÓVIL — Tratamiento del Mes solo icono
   En móvil el botón flotante debe verse redondo, sin texto.
===================================================== */
@media (max-width: 768px) {
    .monthly-floating-btn,
    button.monthly-floating-btn {
        width: 56px !important;
        min-width: 56px !important;
        max-width: 56px !important;
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        right: 18px !important;
        bottom: 92px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        gap: 0 !important;
        font-size: 0 !important;
        line-height: 0 !important;
        overflow: hidden !important;
        white-space: nowrap !important;
    }

    .monthly-floating-btn span,
    button.monthly-floating-btn span,
    .monthly-floating-btn .es,
    .monthly-floating-btn .en {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .monthly-floating-btn i,
    button.monthly-floating-btn i {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.35rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
}

/* =====================================================
   FIX MÓVIL — Menú desplegable limpio a pantalla completa
   Evita que las opciones queden en una columna estrecha a la derecha.
===================================================== */
@media (max-width: 768px) {
    nav {
        position: sticky !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        padding: 12px 14px !important;
        overflow: visible !important;
    }

    .logo {
        flex: 1 1 auto !important;
        max-width: none !important;
    }

    .logo img {
        width: 135px !important;
        max-width: 135px !important;
    }

    .menu-toggle {
        order: 2 !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 0 !important;
        border-radius: 50% !important;
        background: #121212 !important;
        color: var(--gold) !important;
        border: 1px solid rgba(197,160,89,0.42) !important;
    }

    .lang-btn {
        order: 3 !important;
        flex: 0 0 auto !important;
        margin-left: 0 !important;
        white-space: nowrap !important;
    }

    .nav-links {
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 10px 12px !important;
        border-radius: 22px !important;
        background: rgba(255,255,255,0.98) !important;
        border: 1px solid rgba(197,160,89,0.20) !important;
        box-shadow: 0 18px 45px rgba(0,0,0,0.14) !important;
        overflow: hidden !important;
        z-index: 3000 !important;
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links a {
        width: 100% !important;
        display: block !important;
        padding: 15px 12px !important;
        text-align: center !important;
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
        border-radius: 14px !important;
        border-bottom: 1px solid rgba(197,160,89,0.10) !important;
        background: transparent !important;
        color: #151515 !important;
    }

    .nav-links a:last-child {
        border-bottom: none !important;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(197,160,89,0.10) !important;
        color: var(--gold) !important;
    }
}

@media (max-width: 390px) {
    .logo img {
        width: 120px !important;
        max-width: 120px !important;
    }

    .lang-btn {
        padding: 8px 10px !important;
        font-size: 0.58rem !important;
    }

    .menu-toggle {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
    }
}


/* =====================================================
   FIX FINAL — Idioma tarjetas de confianza + botón oferta móvil
===================================================== */
html[lang="es"] .trust-item .es,
html[lang="en"] .trust-item .en {
    display: block !important;
}

html[lang="es"] .trust-item .en,
html[lang="en"] .trust-item .es {
    display: none !important;
}

.monthly-floating-btn {
    background: #121212 !important;
    color: var(--gold) !important;
}

.monthly-floating-btn .es,
.monthly-floating-btn .en {
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .monthly-floating-btn,
    button.monthly-floating-btn {
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
        right: 14px !important;
        bottom: 88px !important;
        padding: 0 14px !important;
        border-radius: 999px !important;
        gap: 7px !important;
        font-size: 0.64rem !important;
        line-height: 1 !important;
        overflow: visible !important;
        white-space: nowrap !important;
        letter-spacing: 0.45px !important;
    }

    .monthly-floating-btn span,
    button.monthly-floating-btn span {
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
        font-size: 0.64rem !important;
        line-height: 1 !important;
    }

    html[lang="es"] .monthly-floating-btn span.es,
    html[lang="en"] .monthly-floating-btn span.en {
        display: inline-flex !important;
    }

    html[lang="es"] .monthly-floating-btn span.en,
    html[lang="en"] .monthly-floating-btn span.es {
        display: none !important;
    }

    .monthly-floating-btn i,
    button.monthly-floating-btn i {
        font-size: 1rem !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
}

@media (max-width: 390px) {
    .monthly-floating-btn,
    button.monthly-floating-btn {
        height: 42px !important;
        padding: 0 11px !important;
        font-size: 0.58rem !important;
        right: 10px !important;
    }

    .monthly-floating-btn span,
    button.monthly-floating-btn span {
        font-size: 0.58rem !important;
    }
}





/* ============================
   GALERÍAS POR TRATAMIENTO
============================ */
.service-card-image {
    cursor: zoom-in;
}

.service-price-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
    z-index: 5;
}

.service-price-btn:hover {
    transform: scale(1.04);
}

.service-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(0,0,0,0.88);
}

.service-gallery-modal.active {
    display: flex;
}

.service-gallery-content {
    position: relative;
    max-width: min(92vw, 1050px);
    text-align: center;
    color: white;
}

.service-gallery-content h3 {
    margin: 0 0 16px;
    font-family: 'Cinzel', serif;
    letter-spacing: .04em;
    color: var(--gold-light);
}

.service-gallery-content img {
    max-width: min(92vw, 1050px);
    max-height: 74vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    background: #111;
}

.service-gallery-content p {
    margin: 14px auto 0;
    max-width: 760px;
    font-size: 14px;
    color: #f2f2f2;
    line-height: 1.6;
}

.service-gallery-close,
.service-gallery-arrow {
    position: absolute;
    border: 0;
    cursor: pointer;
    color: white;
    background: rgba(255,255,255,0.14);
    transition: .25s;
}

.service-gallery-close:hover,
.service-gallery-arrow:hover {
    background: rgba(197,160,89,0.85);
}

.service-gallery-close {
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 40px;
}

.service-gallery-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 58px;
    border-radius: 18px;
    font-size: 34px;
}

.service-gallery-prev {
    left: 24px;
}

.service-gallery-next {
    right: 24px;
}

@media (max-width: 768px) {
    .service-gallery-modal {
        padding: 18px;
    }

    .service-gallery-content img {
        max-height: 70vh;
    }

    .service-gallery-arrow {
        width: 40px;
        height: 48px;
        font-size: 26px;
        border-radius: 14px;
    }

    .service-gallery-prev {
        left: 8px;
    }

    .service-gallery-next {
        right: 8px;
    }

    .service-gallery-close {
        top: 12px;
        right: 12px;
    }
}


/* ==================================================
   CARRUSEL SERVICIOS: CLICS SEPARADOS
================================================== */
.services-slider .service-card-wrap {
    min-width: calc(33.333% - 14px);
    height: 350px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    background: #eee;
}

.services-slider .service-card-wrap .service-card-image.service-gallery-trigger {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: inherit !important;
    overflow: hidden !important;
    background: transparent !important;
    box-shadow: none !important;
    display: block !important;
    cursor: zoom-in !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.services-slider .service-card-wrap .service-card-image.service-gallery-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in !important;
}

.services-slider .service-card-wrap .service-card-image.service-gallery-trigger:hover img {
    transform: scale(1.08);
}

.services-slider .service-card-wrap .service-overlay {
    pointer-events: none !important;
}

.services-slider .service-card-wrap .service-price-cta.service-price-btn {
    position: absolute !important;
    right: 16px !important;
    bottom: 16px !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    border: 1px solid rgba(197,160,89,0.7) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    background: rgba(18,18,18,0.86) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.64rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.9px !important;
    text-transform: uppercase !important;
    line-height: 1 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.28) !important;
    backdrop-filter: blur(6px) !important;
}

.services-slider .service-card-wrap .service-price-cta.service-price-btn span {
    cursor: pointer !important;
    pointer-events: none !important;
}

.services-slider .service-card-wrap .service-price-cta.service-price-btn:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 900px) {
    .services-slider .service-card-wrap {
        min-width: calc(50% - 10px) !important;
    }
}

@media (max-width: 768px) {
    .services-slider .service-card-wrap {
        min-width: 100% !important;
        flex-basis: 100% !important;
        height: 390px !important;
        border-radius: 0 !important;
        scroll-snap-align: start !important;
    }

    .services-slider .service-card-wrap .service-price-cta.service-price-btn {
        right: 18px !important;
        bottom: 18px !important;
        padding: 8px 14px !important;
        font-size: 0.62rem !important;
    }
}

@media (max-width: 520px) {
    .services-slider .service-card-wrap {
        height: 360px !important;
    }
}


/* ============================
   BLOQUE PREMIUM NUESTRA CLÍNICA
============================ */
.clinic-showcase-section {
    background: var(--soft-white);
    padding: 40px 5% 90px;
    scroll-margin-top: 120px;
}

.clinic-showcase-card {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,0.09);
    border: 1px solid rgba(197,160,89,0.22);
}

.clinic-showcase-image {
    min-height: 430px;
    position: relative;
    overflow: hidden;
}

.clinic-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.clinic-showcase-card:hover .clinic-showcase-image img {
    transform: scale(1.04);
}

.clinic-showcase-content {
    padding: 58px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clinic-eyebrow {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.clinic-showcase-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--dark);
}

.clinic-showcase-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0 0 28px;
}

.clinic-gallery-btn {
    width: fit-content;
    border: 1px solid rgba(197,160,89,0.75);
    background: var(--dark);
    color: #fff;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    transition: .25s ease;
}

.clinic-gallery-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .clinic-showcase-section {
        padding: 25px 5% 70px;
    }

    .clinic-showcase-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .clinic-showcase-image {
        min-height: 280px;
    }

    .clinic-showcase-content {
        padding: 36px 28px;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .clinic-showcase-section {
        padding: 20px 0 60px;
    }

    .clinic-showcase-card {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .clinic-showcase-image {
        min-height: 240px;
    }

    .clinic-showcase-content {
        padding: 32px 22px;
    }
}


/* ============================
   AJUSTES FINOS GALERÍA / MÓVIL / SEO VISUAL
============================ */
.clinic-showcase-image img {
    aspect-ratio: 16 / 10;
}

.clinic-showcase-content h2 {
    text-wrap: balance;
}

.clinic-showcase-content p {
    max-width: 520px;
}

.service-gallery-content img {
    background: #111;
}

@media (max-width: 768px) {
    .clinic-showcase-section {
        padding-top: 10px !important;
    }

    .clinic-showcase-card {
        margin: 0 auto;
        max-width: 94%;
    }

    .clinic-showcase-image {
        min-height: 230px !important;
    }

    .clinic-showcase-content p {
        font-size: 0.96rem;
    }

    .clinic-gallery-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .service-gallery-content h3 {
        font-size: 1.25rem;
        padding: 0 42px;
    }

    .service-gallery-content p {
        font-size: 0.9rem;
        padding: 0 12px;
    }
}

@media (max-width: 420px) {
    .clinic-showcase-image {
        min-height: 210px !important;
    }

    .clinic-showcase-content {
        padding: 28px 20px !important;
    }
}


/* FIX VISUAL TARIFA / PRICE CARRUSEL */
#servicesSlider .service-price-btn .es,
#servicesSlider .service-price-btn .en {
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

html[lang="es"] #servicesSlider .service-price-btn .es {
    display: inline-flex !important;
}

html[lang="es"] #servicesSlider .service-price-btn .en {
    display: none !important;
}

html[lang="en"] #servicesSlider .service-price-btn .es {
    display: none !important;
}

html[lang="en"] #servicesSlider .service-price-btn .en {
    display: inline-flex !important;
}


/* FIX IDIOMA FOOTER */
.footer-brand-subtitle .es,
.footer-brand-subtitle .en,
.footer-copy .es,
.footer-copy .en {
    line-height: 1.6;
}

html[lang="es"] .footer-brand-subtitle .es,
html[lang="es"] .footer-copy .es {
    display: inline !important;
}

html[lang="es"] .footer-brand-subtitle .en,
html[lang="es"] .footer-copy .en {
    display: none !important;
}

html[lang="en"] .footer-brand-subtitle .es,
html[lang="en"] .footer-copy .es {
    display: none !important;
}

html[lang="en"] .footer-brand-subtitle .en,
html[lang="en"] .footer-copy .en {
    display: inline !important;
}
