/* FONTS */
@font-face {
    font-family: 'Tan Nimbus';
    src: url('https://fonts.cdnfonts.com/s/149174/TAN-NIMBUS.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Versailles';
    src: url('https://fonts.cdnfonts.com/s/10129/Versailles.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Times Roman MT';
    src: url('https://fonts.cdnfonts.com/s/6775/Times-Roman-MT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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

body {
    background-color: #f2ede7;
    color: #1e1b18;
    font-family: 'Times Roman MT', Georgia, serif;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

/* Tipografías */
h1, h2, h3, .titulo-seccion {
    font-family: 'Tan Nimbus', 'Times New Roman', serif;
    letter-spacing: 0.02em;
    font-weight: 400;
    text-transform: uppercase;
}

.subtitulo-elegante, .nombre-dra, .servicio-titulo, .filter-label, .base-titulo, .footer-head, .galeria-titulo {
    font-family: 'Versailles', 'Didot', serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Contenedor principal */
.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    background: #fffcf9;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    padding: 0 1rem 1rem 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .wrapper {
        padding: 0 2.5rem 2rem 2.5rem;
    }
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 50px;
}

.logo-img {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 480px) {
    .logo-img {
        max-width: 160px;
    }
}

@media (min-width: 768px) {
    .logo-img {
        max-width: 220px;
    }
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #dacfc4;
    padding: 0;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-menu-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-menu-container {
        gap: 2rem;
    }
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: #3f332b;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    padding: 0.4rem 0;
    transition: color 0.3s ease;
    font-family: 'Versailles', serif;
    font-weight: 300;
    overflow: hidden;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .nav-link {
        font-size: 1rem;
        letter-spacing: 0.15rem;
        padding: 0.5rem 0;
    }
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    color: #F8B5B7;
    white-space: nowrap;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    border-bottom: 2px solid #F8B5B7;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: transparent;
}

.btn-nav {
    background: #F8B5B7;
    color: #3f332b;
    padding: 0.4rem 1rem;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Versailles', serif;
    letter-spacing: 0.1rem;
    font-size: 0.7rem;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (min-width: 768px) {
    .btn-nav {
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
        letter-spacing: 0.15rem;
    }
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e89fa1;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.btn-nav:hover::before {
    left: 0;
}

.btn-nav:hover {
    color: #fffcf9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(248, 181, 183, 0.4);
}

/* Menú hamburguesa */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    padding: 0.5rem;
    z-index: 10;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #4b3f36;
    margin: 3px 0;
    transition: 0.3s;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    .nav-menu {
        display: flex !important;
    }
}

/* Mobile menu */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        background: #fffcf9;
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid #dacfc4;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu-container {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .nav-link, .btn-nav {
        width: 100%;
        text-align: center;
        white-space: normal;
        font-size: 0.9rem;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        color: #F8B5B7;
    }
    
    .btn-nav {
        width: auto;
        min-width: 200px;
        margin: 0 auto;
    }
}

/* WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: #F8B5B7;
    color: #3f332b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, background 0.2s;
    z-index: 998;
    border: 2px solid #fff2e6;
}

@media (min-width: 768px) {
    .whatsapp-float {
        width: 65px;
        height: 65px;
        font-size: 2.5rem;
        bottom: 2rem;
        left: 2rem;
    }
}

/* Botón UP */
.scroll-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #F8B5B7;
    color: #3f332b;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: opacity 0.3s, background 0.2s;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    border: 1px solid #fff2e6;
}

@media (min-width: 768px) {
    .scroll-to-top {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        bottom: 2rem;
        right: 2rem;
    }
}

.scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Slider Responsive */
.hero-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin: 1rem 0;
}

@media (min-width: 480px) {
    .hero-slider {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .hero-slider {
        height: 450px;
        border-radius: 20px;
        margin: 2rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    padding: 0 1rem;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 480px) {
    .slide-title {
        font-size: 1.6rem;
    }
}

@media (min-width: 768px) {
    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .slide-title {
        font-size: 2.5rem;
    }
}

.slide-text {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .slide-text {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .slide-text {
        font-size: 1.2rem;
    }
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Controles slider */
.slider-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

@media (min-width: 768px) {
    .slider-controls {
        bottom: 20px;
        gap: 10px;
    }
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

@media (min-width: 768px) {
    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

.slider-dot.active {
    background: #F8B5B7;
    transform: scale(1.2);
    border-color: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 181, 183, 0.7);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f332b;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

@media (min-width: 768px) {
    .slider-arrow.prev {
        left: 20px;
    }
    .slider-arrow.next {
        right: 20px;
    }
}

/* ===== FILTROS DE SERVICIOS ===== */
.servicios-filtros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem 0;
}

.filtro-servicio {
    background: transparent;
    border: 1px solid #dacfc4;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-family: 'Versailles', serif;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    color: #5a4b3e;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filtro-servicio:hover {
    background: #F8B5B7;
    border-color: #F8B5B7;
    color: #3f332b;
    transform: translateY(-2px);
}

.filtro-servicio.active {
    background: #F8B5B7;
    border-color: #F8B5B7;
    color: #3f332b;
    box-shadow: 0 4px 10px rgba(248, 181, 183, 0.3);
}

@media (min-width: 768px) {
    .servicios-filtros {
        gap: 1.2rem;
        margin: 2rem 0 3rem 0;
    }
    .filtro-servicio {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }
}

/* ===== SERVICIOS GRID ===== */
.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

@media (min-width: 640px) {
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .servicios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.servicio-card {
    background: #ffffff;
    border: 1px solid #eaded2;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.servicio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #F8B5B7;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -12px rgba(248, 181, 183, 0.3);
    border-color: #F8B5B7;
}

.servicio-card:hover::after {
    opacity: 1;
}

.servicio-titulo {
    font-size: 1rem;
    font-weight: 400;
    color: #2d231d;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 0.75rem;
    width: 100%;
}

.servicio-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #F8B5B7;
}

.servicio-desc {
    font-size: 0.9rem;
    color: #5a4b3e;
    line-height: 1.6;
    font-family: 'Times Roman MT', Georgia, serif;
    font-style: italic;
}

@media (min-width: 768px) {
    .servicio-titulo {
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
    }
    .servicio-desc {
        font-size: 1rem;
    }
}

/* Filtros círculos responsivos */
.filtros-circulos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0.5rem 0;
}

@media (min-width: 480px) {
    .filtros-circulos {
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .filtros-circulos {
        gap: 2rem;
        margin: 2.5rem 0;
    }
}

.filtro-circulo {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (min-width: 480px) {
    .filtro-circulo {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 768px) {
    .filtro-circulo {
        width: 130px;
        height: 130px;
    }
}

@media (min-width: 1024px) {
    .filtro-circulo {
        width: 150px;
        height: 150px;
    }
}

.filtro-circulo:hover {
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .filtro-circulo:hover {
        transform: translateY(-10px);
    }
}

.circulo-imagen {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border: 2px solid #F8B5B7;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .circulo-imagen {
        border-width: 3px;
    }
}

.filtro-circulo:hover .circulo-imagen {
    box-shadow: 0 12px 30px rgba(248, 181, 183, 0.4);
    border-color: #fff;
}

.circulo-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.filtro-circulo:hover .circulo-imagen img {
    transform: scale(1.1);
}

.circulo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filtro-circulo:hover .circulo-overlay,
.filtro-circulo.active .circulo-overlay {
    opacity: 1;
}

.circulo-texto {
    color: white;
    font-family: 'Versailles', serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

@media (min-width: 768px) {
    .circulo-texto {
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
        transform: translateY(20px);
    }
}

.filtro-circulo:hover .circulo-texto,
.filtro-circulo.active .circulo-texto {
    transform: translateY(0);
}

/* Títulos de sección */
.titulo-seccion {
    font-size: 1.3rem;
    color: #433d37;
    margin: 1.2rem 0 0.8rem;
    text-align: center;
}

@media (min-width: 480px) {
    .titulo-seccion {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .titulo-seccion {
        font-size: 2rem;
        margin: 2rem 0 1rem;
    }
}

/* Base conocimiento */
.base-conocimiento {
    background: #f9f4ef;
    padding: 1rem;
    border: 1px solid #e1d5c8;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .base-conocimiento {
        padding: 2rem;
        border-radius: 0;
    }
}

.base-intro {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #6b5847;
}

@media (min-width: 768px) {
    .base-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Cards conocimiento */
.cards-conocimiento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.2rem 0;
}

@media (min-width: 640px) {
    .cards-conocimiento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-conocimiento {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

.card-base {
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #ece1d7;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .card-base {
        padding: 1.5rem;
        border-radius: 0;
    }
}

.card-base h4 {
    font-family: 'Versailles', serif;
    font-size: 0.85rem;
    color: #5f4636;
    border-left: 3px solid #cbb59b;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .card-base h4 {
        font-size: 0.95rem;
        padding-left: 0.8rem;
    }
}

.card-base p {
    font-size: 0.8rem;
    color: #3a332d;
}

.sugerencia {
    margin-top: 0.5rem;
    font-style: italic;
    background: #f3ece4;
    padding: 0.4rem;
    border-radius: 4px;
    color: #7a5e4a;
    font-size: 0.75rem;
}

/* Advertencia */
.advertencia-box {
    background: #f0e2d6;
    border-left: 6px solid #b55a3a;
    padding: 1rem;
    margin-top: 1.2rem;
    border-radius: 0 12px 12px 0;
}

@media (min-width: 768px) {
    .advertencia-box {
        padding: 1.5rem 2rem;
        margin-top: 2rem;
        border-radius: 0 20px 20px 0;
    }
}

/* Galería */
.galeria-section {
    margin: 1.5rem 0;
    padding: 0;
}

@media (min-width: 768px) {
    .galeria-section {
        margin: 4rem 0;
    }
}

.galeria-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .galeria-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 2rem;
    }
}

.galeria-titulo {
    font-size: 1.2rem;
    color: #433d37;
}

.galeria-sub {
    color: #7a624b;
    font-style: italic;
    font-size: 0.8rem;
}

/* Carrusel */
.carrusel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.carrusel-wrapper {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .carrusel-wrapper {
        border-radius: 24px;
    }
}

.carrusel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.galeria-item {
    flex: 0 0 calc(100% - 0.5rem);
    margin-right: 0.5rem;
    background: #fcf7f2;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #eaded2;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 500px) {
    .galeria-item {
        flex: 0 0 calc(50% - 0.8rem);
        margin-right: 0.8rem;
    }
}

@media (min-width: 900px) {
    .galeria-item {
        flex: 0 0 calc(33.333% - 1rem);
        margin-right: 1rem;
    }
}

.galeria-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

@media (min-width: 480px) {
    .galeria-item img {
        height: 180px;
    }
}

@media (min-width: 768px) {
    .galeria-item img {
        height: 220px;
    }
}

.item-pie {
    padding: 0.6rem;
    background: white;
}

@media (min-width: 768px) {
    .item-pie {
        padding: 1rem;
    }
}

.carrusel-btn {
    background: #F8B5B7;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f332b;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.2s;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .carrusel-btn {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }
}

/* ===== CONTACTO (diseño tipo imagen) ===== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

@media (min-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contacto-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border: 1px solid #eaded2;
    border-radius: 24px;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.03);
}

@media (min-width: 768px) {
    .contacto-card {
        padding: 2.5rem;
    }
}

.contacto-card:first-child {
    background: #fcf8f4;
}

.nombre-dra {
    font-family: 'Tan Nimbus', serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    color: #2d231d;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .nombre-dra {
        font-size: 2rem;
    }
}

.dra-especialidad {
    font-family: 'Versailles', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    color: #7a624b;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F8B5B7;
    display: inline-block;
}

.contacto-info {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: #4a3f38;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contacto-info i {
    color: #F8B5B7;
    width: 20px;
    font-size: 1.1rem;
}

.contacto-info a {
    color: #4a3f38;
    text-decoration: none;
    border-bottom: 1px dotted #d4c0b0;
}

.contacto-info a:hover {
    color: #F8B5B7;
    border-bottom-color: #F8B5B7;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a3f38;
    text-decoration: none;
    font-family: 'Versailles', serif;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
    transition: all 0.2s;
    border: 1px solid #eaded2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: white;
}

.social-links a i {
    color: #F8B5B7;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #F8B5B7;
    border-color: #F8B5B7;
    color: white;
    transform: translateY(-2px);
}

.social-links a:hover i {
    color: white;
}

.subtitulo-elegante {
    font-family: 'Tan Nimbus', serif;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    color: #433d37;
    display: block;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .subtitulo-elegante {
        font-size: 1.4rem;
    }
}

.consulta-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a4b3e;
    font-style: italic;
}

/* WhatsApp block */
.whatsapp-block {
    background: #e7dbd0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    border-radius: 30px;
}

@media (min-width: 768px) {
    .whatsapp-block {
        padding: 2rem;
        flex-direction: row;
        justify-content: space-between;
        border-radius: 0;
    }
}

.lugar {
    font-size: 1rem;
    font-family: 'Versailles', serif;
    color: #3f332b;
    text-align: center;
}

@media (min-width: 768px) {
    .lugar {
        font-size: 1.3rem;
    }
}

.btn-agendar {
    background: #F8B5B7;
    color: #3f332b;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-family: 'Versailles', serif;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: 0.2s;
}

@media (min-width: 768px) {
    .btn-agendar {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 0.15rem;
    }
}

/* Credenciales Footer */
.credenciales-footer {
    text-align: center;
    margin: 2rem 0 0.5rem;
    font-size: 0.7rem;
    color: #8f7a68;
    letter-spacing: 0.05rem;
    font-family: 'Versailles', serif;
}

/* Footer */
.footer {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 2px solid #d4c0b0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: #6f5e50;
    font-size: 0.7rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        font-size: 0.85rem;
    }
}

/* Anclas */
.ancla {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

@media (min-width: 768px) {
    .ancla {
        top: -60px;
    }
}

/* MODAL GALERÍA */
.modal-galeria {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.modal-contenido {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-img-container {
    position: relative;
}

.modal-img-container img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border: 3px solid white;
    border-radius: 8px;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(248, 181, 183, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn.prev { left: 10px; }
.modal-nav-btn.next { right: 10px; }

.btn-cerrar-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-pie {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.modal-titulo {
    font-size: 1.2rem;
    font-weight: bold;
}