/* --- Variables & Reset --- */
:root {
    /* Paleta de Colores */
    --primary-black: #1a1a1a; /* Negro suave para fondos oscuros/texto */
    --secondary-dark: #2c2c2c; /* Gris muy oscuro para tarjetas/footer */
    --primary-gold: #c5a049; /* Dorado elegante, no amarillo chillón */
    --gold-hover: #b08d3e;
    --white: #ffffff;
    --light-gray: #f8f9fa; /* Para fondos de secciones claras */
    --text-grey: #555555;

    /* Tipografías */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Espaciados y Bordes */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.logo-container {
    width: 300px;
    height: 100px;
    background-image: url(images/adolfo-uribes-logotipo.webp);
    background-size: cover;
    background-position: center;
}
body {
    font-family: --font-body;
    color: var(--primary-black);
    line-height: 1.7;
    background-color: var(--white);
    font-size: 16px;
}

/* --- Tipografía General (MODIFICADO) --- */
h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h3, h4, h5 {
    font-family: var(--font-body); /* Montserrat para subtítulos */
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 1rem;
}
a{
	font-family: 'Montserrat';
    font-weight: 400;
}
/* Eliminamos los estilos de texto del enlace del logo */
.logo {
    text-decoration: none;
}

/* Le damos un tamaño al logo y nos aseguramos de que se vea bien */
.logo img {
    height: 55px; /* <-- PUEDES AJUSTAR ESTE VALOR para hacerlo más grande o pequeño */
    width: auto;  /* Esto mantiene la proporción correcta de la imagen */
    display: block; /* Evita espacios extra no deseados */
}
.main-nav a { font-family: var(--font-body); }
.btn { font-family: var(--font-body); }
.price { font-family: var(--font-body); }


a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Tipografía General --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Clases de Utilidad --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding { padding: var(--section-padding); }
.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--primary-black); color: var(--white); }
.text-gold { color: var(--primary-gold) !important; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.d-block { display: block; }
.mt-2 { margin-top: 1.5rem; }
.mt-4 { margin-top: 3rem; }
.mb-3 { margin-bottom: 2rem; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.size-xl { font-size: 1.5rem; }

/* Grid Systems */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* --- Header & Navigation --- */
.site-header {
    background-color: var(--white); /* O negro si prefiere header oscuro */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(0 0 0 / 24%)
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-dot { color: var(--primary-gold); }

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-black);
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-gold);
}

/* Efecto subrayado minimalista en hover */
.main-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.main-nav a:not(.btn-nav):hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Botón destacado en el menú (Contacto) */
.main-nav a.btn-nav {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
}

.main-nav a.btn-nav:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}

/* --- Botones Generales --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary, .btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover, .btn-gold:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline.text-dark {
    border-color: var(--primary-black);
    color: var(--primary-black);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

.btn-outline.text-dark:hover {
    background-color: var(--primary-black);
    color: var(--white);
}

.btn-whatsapp-full {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-whatsapp-full:hover {
    background-color: #1ebc57;
    border-color: #1ebc57;
    color: white;
}

/* --- Página Inicio (Index) --- */
/* Hero Section */
.hero {
    position: relative;
    height: 85vh; /* Ocupa casi toda la pantalla */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top right;
    z-index: -1;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* Oscurece la foto para que el texto blanco resalte */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Tamaño responsivo */
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* *** NUEVA SECCIÓN: BENEFITS *** */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    text-align: center;
}
.benefit-item { padding: 1rem; }
.benefit-icon {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}
.benefit-item h3 {
    font-weight: 700;
    font-size: 1.2rem;
}
.benefit-item p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Intro Text */
.lead-text {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Services Preview Cards */
.services-preview {
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--primary-gold);
}

.card-img-wrap {
    height: 250px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    text-align: left;
}

.card-content p {
    color: var(--text-grey);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

p{
	font-family: 'Montserrat';
    font-weight: 400;
}

.text-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Promo Banner */
.promo-banner h2 { color: var(--white); }
.promo-tag {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}
.promo-text { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* --- Footer --- */
/* --- Footer (Unificado) --- */
.site-footer { background-color: var(--secondary-dark); color: #aaa; padding: 4rem 0 1rem; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.site-footer h3, .site-footer h4 { color: var(--white); margin-bottom: 1.2rem; }
.footer-links a:hover, .site-footer a:hover { color: var(--primary-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; }
.seo-tiny { font-size: 0.75rem; opacity: 0.5; margin-top: 0.5rem; }

.seo-tiny {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 0.5rem;
}

/* --- Página Servicios --- */
.page-header {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.page-header h1 { color: var(--white); font-size: 2.5rem; }
.page-header p { font-size: 1.1rem; opacity: 0.8; }

.page-header-contact{
	background-image: url(images/chica-masaje-relajante-tenerife.webp);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-header-services{
	background-image: url(images/masaje-espalda-relajante-tenerife.webp);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-header-about{
	background-image: url(images/masaje-espalda-descontracturante-tenerife.webp);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-title-large {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-grey);
}

.check-list li::before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ideal-box {
    border-left: 4px solid var(--primary-gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.rounded-shadow {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.align-center { align-items: center; }

/* Tarifas Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr; /* Por defecto una columna en móvil */
    gap: 2rem;
    margin-top: 3rem;
}
.price-card { background: rgba(255,255,255,0.05); padding: 2.5rem 1.5rem; border-radius: var(--border-radius); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.price-card h3 { color: var(--white); font-size: 1.2rem; font-family: var(--font-body); text-transform: uppercase;}
.price { font-size: 3rem; font-weight: 700; margin: 1rem 0; color: var(--white); }
.price-card.featured { border-color: var(--primary-gold); background: rgba(197, 160, 73, 0.1); position: relative; }
.small-text { font-size: 0.85rem; }

.price-card.featured {
    border-color: var(--primary-gold);
    background: rgba(197, 160, 73, 0.1); /* Toque dorado sutil */
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.bg-white-10 { background-color: rgba(255,255,255,0.1); }
.rounded { border-radius: var(--border-radius); }
.p-3 { padding: 2rem; }

.extras-grid { gap: 2rem; }
.extra-item {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}
.extra-item h4 { color: var(--white); margin-bottom: 0.5rem;}
.extra-item p { opacity: 0.9; font-size: 0.95rem;}

/* --- Página Sobre Mí --- */
.portrait-shadow {
    border-radius: var(--border-radius);
    box-shadow: 15px 15px 0px var(--primary-gold); /* Efecto de diseño moderno */
    max-height: 500px;
    object-fit: cover;
    width: 100%;
	object-position: top;
}

.quote-box {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-black);
    border-left: 4px solid var(--primary-gold);
    padding: 1rem 0 1rem 2rem;
    background-color: var(--light-gray);
}

/* --- Página Contacto --- */
.contact-grid { gap: 4rem; }
.info-box {
    font-style: normal;
    font-size: 1.1rem;
    margin: 1rem 0;
    line-height: 1.8;
}

.info-details li { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text-grey); }
.hours-list li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0.8rem 0;
}

.cta-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
}

.map-col iframe {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

/* --- RESPONSIVE (MEDIA QUERIES) --- */
@media (min-width: 769px) {
    .grid-2-col { grid-template-columns: 1fr 1fr; }
    /* En desktop, las tarjetas de precio destacadas resaltan más */
    .price-card.featured { transform: scale(1.1); }
}

@media (max-width: 768px) {
    :root { --section-padding: 50px 0; }

    /* Ajustes tipografía móvil */
    .hero-content h1 { font-size: 2.5rem; }
    .service-title-large { font-size: 1.7rem; }

    /* Hamburger Styles */
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--primary-black);
        transition: var(--transition);
    }

    /* Animación Hamburger a X */
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile Nav Overlay */
    .main-nav {
        position: fixed;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease-in-out;
        z-index: 1000;
    }

    .main-nav.active { left: 0; }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .main-nav a { font-size: 1.5rem; }

    /* Reordenar elementos en móvil */
    .reverse-mobile { display: flex; flex-direction: column-reverse; gap: 2rem;}

    .price-card.featured { transform: scale(1); margin: 1rem 0; }

    .portrait-shadow { box-shadow: 10px 10px 0px var(--primary-gold); margin-bottom: 2rem;}

    .cta-contact-btns { max-width: 100%; }

	.hero-bg{
		object-position: -900px;
	}
}

/* --- RESPONSIVE (MEDIA QUERIES) --- */
@media (min-width: 992px) {
    /* **NUEVO: Fuerza 3 columnas en PC para tarifas** */
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .price-card.featured {
        transform: scale(1.05); /* Mantenemos el destaque en PC */
        z-index: 2;
    }
}

/* --- El resto del CSS responsivo, de botones, etc. se mantiene igual --- */

/* (Aquí iría el resto del CSS que te proporcioné en la primera respuesta, ya que no necesita cambios) */
.grid-2-col { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) {
    .grid-2-col { grid-template-columns: 1fr 1fr; }
}