/* style.css */

:root {
    /* Variables de Tema Día (Blanco impoluto) */
    --bg-color: #ffffff;
    --text-main: #111111;
    --text-muted: #555555;
    --accent-color: #d4af37; /* Dorado Lujo */
    --accent-hover: #b5952f;
    --card-bg: #f9f9f9;
    --card-border: #eeeeee;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-shadow: rgba(0, 0, 0, 0.05);
    --btn-text: #ffffff;
    --btn-bg: #111111;
    --hero-overlay: rgba(255, 255, 255, 0.3);
    --logo-filter: invert(0);
}

[data-theme="dark"] {
    /* Variables de Tema Noche (Negro Carbón) */
    --bg-color: #121212;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --accent-color: #d4af37;
    --accent-hover: #f1c40f;
    --card-bg: #1e1e1e;
    --card-border: #333333;
    --nav-bg: rgba(18, 18, 18, 0.95);
    --nav-shadow: rgba(255, 255, 255, 0.05);
    --btn-text: #121212;
    --btn-bg: #ffffff;
    --hero-overlay: rgba(0, 0, 0, 0.3);
    --logo-filter: invert(1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-x: hidden;
    line-height: 1.6;
    width: 100vw;
    padding-bottom: 0; 
}

h1, h2, h3, h4, h5, h6, .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utilidades de animación */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- HEADER PC --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nav-shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.5s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: filter 0.5s ease;
    filter: var(--logo-filter);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.theme-switch {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.theme-switch:hover {
    color: var(--accent-color);
}

.btn-reserve {
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-reserve::after {
    display: none;
}

.btn-reserve:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* --- HERO SPLIT SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding-top: 120px; 
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    width: 100%;
    align-items: center;
}

.hero-image-col {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-width: 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
}

.hero-image-col img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    aspect-ratio: 1/1; 
}

.hero-text-col {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding-top: 20px; 
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.2rem; 
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.15;
    font-family: 'Playfair Display', serif;
}

.hero-seo-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--text-main);
    padding: 12px 35px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--text-main); 
    border-radius: 3px; 
    margin-bottom: 30px; 
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--text-main); 
    color: var(--bg-color);
    transform: scale(1.05);
}

.hero-socials-col {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    align-items: flex-start; 
}

.hero-socials-col a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-socials-col a:hover {
    color: var(--text-main);
    transform: scale(1.1);
}

.about-stats {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-main); 
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* --- SECCIONES COMUNES --- */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- SERVICIOS --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px; 
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--nav-shadow);
}

.service-info {
    padding: 40px 15px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    height: 100%;
}

.service-info h3 {
    font-size: 1.05rem; 
    margin-bottom: 15px;
    color: var(--text-main);
    white-space: nowrap; 
    text-align: center;
    width: 100%;
}

/* --- SOBRE EL ESTUDIO (EVO STYLE) --- */
.about-list {
    display: flex;
    flex-direction: column;
    gap: 100px; 
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; 
    gap: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-block {
    flex-direction: row !important; 
}

.about-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    flex: 1;
    max-width: 500px;
}

.about-mobile-title {
    display: none; 
}

.about-content h3 {
    font-size: 3rem; 
    margin-bottom: 10px;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3; 
    transition: transform 1.5s ease;
}

.about-block:hover .about-image img {
    transform: scale(1.03);
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 30px; 
    font-size: 1rem;
    flex-grow: 1; 
}

/* --- OPINIONES --- */
.reviews-section {
    background-color: var(--card-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-color);
    padding: 40px 30px;
    border: 1px solid var(--card-border);
    text-align: center;
    position: relative;
    border-radius: 16px; 
}

.quote-icon {
    color: var(--accent-color);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.review-client {
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- GALERÍA --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    padding-bottom: 100%; 
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* --- FOOTER --- */
footer {
    background-color: var(--card-bg); 
    color: var(--text-main);
    padding: 80px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    filter: var(--logo-filter); 
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-social {
    margin: 30px 0 15px 0;
}

.footer-social a {
    color: var(--text-main);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Enlaces Legales Footer PC */
.footer-legal {
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid var(--card-border);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-copy {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* --- BOTTOM NAV MOBILE (App Nativa Feel) --- */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--nav-shadow);
    z-index: 1000;
    padding: 15px 0; 
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px)); 
    box-shadow: 0 -5px 25px rgba(0,0,0,0.08);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav li {
    text-align: center;
    flex: 1;
}

.mobile-nav a, .mobile-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    transition: color 0.3s;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav a i, .mobile-nav button i {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.mobile-nav a.active, .mobile-nav a:hover, .mobile-nav button:hover {
    color: var(--accent-color);
}

/* --- MODAL INFO MÓVIL (App Bottom Sheet) & PC (Modal Centrado) --- */
.mobile-modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: flex-end; 
}

.mobile-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.mobile-modal-content {
    background-color: var(--bg-color);
    width: 100%;
    border-radius: 25px 25px 0 0;
    padding: 30px 25px 50px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 1px solid var(--card-border);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}

.mobile-modal-overlay.show .mobile-modal-content {
    transform: translateY(0);
}

.mobile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.mobile-modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-main);
}

.close-modal-btn {
    background: none; 
    border: none; 
    font-size: 1.5rem; 
    color: var(--text-muted); 
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--card-bg);
    transition: color 0.3s ease;
}

.close-modal-btn:hover {
    color: var(--accent-color);
}

.mobile-modal-body {
    max-height: 65vh;
    overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.mobile-modal-body::-webkit-scrollbar {
    display: none;
}

.mobile-modal-list {
    list-style: none;
}

.mobile-modal-list li {
    border-bottom: 1px solid var(--card-border);
}

.modal-list-btn {
    width: 100%; 
    background: none; 
    border: none; 
    text-align: left; 
    padding: 18px 0;
    font-size: 1rem; 
    color: var(--text-main); 
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-list-btn:hover {
    color: var(--accent-color);
}

.modal-list-btn i.fa-solid.fa-moon, .modal-list-btn i.fa-solid.fa-sun, .modal-list-btn i.fa-scale-balanced, .modal-list-btn i.fa-shield-halved, .modal-list-btn i.fa-cookie-bite {
    font-size: 1.3rem; 
    color: var(--accent-color); 
    width: 30px; 
    text-align: center;
}

/* --- Acordeón Legal --- */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 10px;
}

.accordion-btn.active span {
    color: var(--accent-color);
}

.legal-text {
    padding: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: justify;
}

.legal-text h4 {
    color: var(--text-main);
    margin: 20px 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}
.legal-text h4:first-child { margin-top: 0; }

.legal-text p { margin-bottom: 10px; }
.legal-text ul { margin-left: 20px; margin-bottom: 10px; }
.legal-text li { margin-bottom: 5px; }

/* Utility Classes para Visibilidad */
.d-none { display: none !important; }
.d-md-block { display: none !important; } 

/* --- AVISO DE COOKIES (RGPD) --- */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    right: 25px; /* Movido a la derecha en PC para no tapar la cara */
    width: calc(100% - 50px);
    max-width: 380px;
    background-color: var(--bg-color);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 1500; /* Z-index menor que el modal (2000) para que se quede por debajo */
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-header i {
    font-size: 1.3rem;
    color: var(--text-main);
}

.cookie-header h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-weight: 600;
}

.cookie-banner p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-banner a {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-banner a:hover {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-rechazar {
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-rechazar:hover {
    background-color: var(--card-bg);
}

.btn-aceptar {
    background-color: var(--text-main);
    border: 1px solid var(--text-main);
    color: var(--bg-color);
}

.btn-aceptar:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

/* --- MEDIA QUERIES --- */
@media (min-width: 769px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-inline { display: inline !important; }
    .d-md-flex { display: flex !important; }
    
    /* Modal centrado premium en PC */
    .mobile-modal-overlay {
        align-items: center; 
        justify-content: center; 
    }
    .mobile-modal-content {
        width: 80%;
        max-width: 800px;
        border-radius: 20px;
        padding: 40px;
        transform: translateY(30px) scale(0.95);
    }
    .mobile-modal-overlay.show .mobile-modal-content {
        transform: translateY(0) scale(1);
    }
    .mobile-modal-body {
        max-height: 60vh;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; 
    }
    html, body {
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }
    html::-webkit-scrollbar, body::-webkit-scrollbar {
        display: none; 
    }
    .desktop-nav {
        display: none; 
    }
    .mobile-nav {
        display: block; 
    }
    .hero {
        padding-top: 90px;
        min-height: auto;
    }
    .hero-split-container {
        display: flex;
        flex-direction: column; 
        gap: 20px;
        padding: 0 15px;
    }
    .hero-text-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.75rem; 
        letter-spacing: 1.5px;
        margin-top: 20px; 
        margin-bottom: 15px;
    }
    .hero-seo-text {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .hero-btn {
        border-radius: 50px !important;
        padding: 12px 28px;
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .hero-image-col {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .hero-image-col img {
        border-radius: 10px;
    }
    .hero-socials-col {
        display: flex;
        justify-content: center;
        flex-direction: row;
        gap: 30px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .about-stats {
        justify-content: center;
        margin-top: 20px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
    header {
        padding: 10px 0;
    }
    .header-content {
        justify-content: center; 
    }
    .reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
        padding-bottom: 20px;
        gap: 15px;
    }
    .reviews-grid::-webkit-scrollbar {
        display: none; 
    }
    .review-card {
        flex: 0 0 75vw; 
        scroll-snap-align: center;
        opacity: 1 !important; 
        transform: none !important;
        transition: none !important;
    }
    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 20px;
        gap: 15px;
    }
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    .service-card {
        flex: 0 0 75vw; 
        scroll-snap-align: center;
        text-align: center; 
        opacity: 1 !important; 
        transform: none !important;
        transition: none !important;
    }
    .service-info {
        padding: 30px 20px;
    }
    .service-info h3 {
        font-size: 1.05rem; 
        margin-bottom: 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .service-info p {
        margin-bottom: 25px;
    }

    section {
        padding: 50px 0; 
    }
    #servicios {
        padding-bottom: 20px; 
    }
    #estudio {
        padding-top: 10px !important; 
    }

    .about-list {
        gap: 60px;
    }
    .about-block {
        display: flex;
        flex-direction: column;
        gap: 15px; 
    }
    .about-mobile-title {
        display: block; 
        order: -1; 
        text-align: center;
        font-size: 2.1rem; 
        margin-bottom: 5px;
        color: var(--text-main);
        font-family: 'Playfair Display', serif;
    }
    .about-image {
        order: 2; 
        border-radius: 10px;
        width: 100%;
        margin: 0; 
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    }
    .about-image img {
        aspect-ratio: 4/3; 
    }
    .about-content {
        order: 3; 
        max-width: 100%;
        padding: 0; 
        text-align: center; 
    }
    .about-content h3 {
        display: none; 
    }
    .about-stats h3 {
        display: block; 
        font-size: 2rem;
    }
    .contact-block, .horario-block {
        flex-direction: column !important; 
    }
    .contact-block .hero-socials-col, .horario-block .hero-socials-col {
        display: flex !important; 
        justify-content: center !important; 
    }
    .horario-block .horario-buttons {
        justify-content: center !important; 
    }
    .footer-copy p {
        font-size: 0.7rem; 
    }

    /* Adaptación del Banner de Cookies para Móvil */
    .cookie-banner {
        bottom: 90px; /* Flota por encima del menú inferior */
        left: 15px;
        right: 15px; /* Centrado */
        width: calc(100% - 30px);
        padding: 20px;
    }
}

@media (min-width: 769px) {
    .horario-block {
        flex-direction: row !important;
    }
    .horario-address {
        font-size: 0.75rem; 
        white-space: nowrap; 
    }
}

.horario-address {
    font-size: 0.95rem; 
    color: var(--text-muted); 
    letter-spacing: 0.5px;
}

.beauty-quote-section {
    padding: 80px 0;
    text-align: center;
}
.beauty-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-main);
    line-height: 1.4;
    max-width: 1000px; 
    margin: 0 auto;
    font-style: italic;
}
.beauty-quote-author {
    margin-top: 25px;
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .beauty-quote-section {
        padding: 40px 15px 50px 15px; 
    }
    .quote-card {
        background-color: var(--card-bg);
        border-radius: 20px; 
        padding: 40px 25px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
        border: 1px solid var(--card-border);
    }
    .beauty-quote-text {
        font-size: 1.6rem; 
    }
}