:root {
  --fondo-arena: #FFFAF0; /* Otra opción #FFF5EE */
  --azul-principal: #80BBBF;
  --azul-letra: #00353F;
  --azul-botón: #005F73;
  --azul-mouse-en-letra: #005F73; 
  --azul-mouse-en-botón: #0A9396;
  --blanco-transparente-al-45: #FFFFFF99;
  --blanco-transparente-al-30: #FFFFFFBB;
  --blanco-transparente-al-20: #FFFFFFCC;
  --blanco-transparente-al-15: #FFFFFFDD;
  --ancho-máximo-contenido: 1140px;
  --azul-secundario: #76B4E0;
  --verde-secundario: #80B3A4;
}

@font-face {
    font-family: 'SeanSlab';
    src: url('/fonts/seanslab-bold.woff2') format('woff2');
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/fonts/ubuntu-bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    src: url('/fonts/ubuntu.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

body {
    background-color: var(--fondo-arena); 
    margin: 0px;
    padding: 0px;
}

.contenido {
    margin-top: 70px;
}

.anchoprincipal {
    max-width: var(--ancho-máximo-contenido);  
    margin: 0px auto; /* Centra horizontalmente. */
}

.menu {
    display: flex;
    background-color: var(--azul-principal);
    height: 95px;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 7px;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0px;
}

.menu-interno {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between; /* Esto separa izquierda y derecha. */
}

.menu-items {
    display: flex;
    gap: 3rem; /* Espacio entre cada enlace. */
}

.item-menu {
    font-family: Ubuntu, sans-serif;
    color: white;
    text-decoration: none; /* Sin subrayado. */
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.item-menu:hover {
    color: var(--azul-mouse-en-letra);
}

.logo {
    height: 65px;
}

.item-menu.agenda {
    background-color: var(--azul-botón);
    color: white;
    padding: 1.3rem 1.5rem;
    border-radius: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.item-menu.agenda:hover {
    background-color: var(--azul-mouse-en-botón);
}

.video-fondo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none; /* Para evitar que el video intercepte clics. */
    background-color: black; /* Previene destellos blancos antes de cargar. */
}

.video-fondo img,
.imagen-fondo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tarjeta-presentacion {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: flex-start; /* Alinea arriba */
    padding-top: 70px; /* Margen superior */
    box-sizing: border-box;
    z-index: 1;
    padding-bottom: 250px;
}

.tarjeta {
    background-color: rgba(48, 54, 54, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 400px); 
    width: 80%;
}

.tarjeta h1 { /* Ashley Rios */
    font-size: 3rem;
    margin-bottom: 0.3rem;
    font-family: 'SeanSlab', serif;
    color: var(--azul-letra);
    outline: none; /* Para que no seleccione el título con un rectángulo azul al cargar la página. */
}

.tarjeta h2 { /* Psicologa Clínica */
    font-size: 2.1rem;
    margin-bottom: 0.3rem;
    font-family: 'SeanSlab', sans-serif;
    color: var(--azul-letra);
}

.tarjeta h3 { /* Acompañandote hacia el equilibrio. */
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    font-family: Calibri;
    color: var(--blanco-transparente-al-20);
    font-weight: 700;
}

.tarjeta p, .tarjeta a { /* Teléfono y tipo de atención. */
    font-size: 1.7rem;
    margin-bottom: 0px;
    color: var(--azul-letra);
    font-family: Calibri;
    font-weight: 700;
}

.logo-whatsapp {
    vertical-align: middle;
    height: 1.8rem;
    margin-right: 0.3rem;
    position: relative; 
    top: -0.07rem;
    color: var(--azul-letra); /* el fill usará este color gracias a currentColor */
}

h2 {
    font-size: 2rem;
    font-family: 'SeanSlab', serif;
    color: var(--azul-letra);
    margin-bottom: 3rem;
}

p, li {
    font-family: Calibri, sans-serif;
    font-size: 1.3rem;
}


.psicoterapia ,.sobre-mi, .perros, .enfoque {
    background-color: var(--verde-secundario);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    border-radius: 1rem;
    height: 500px;
    margin-left: 5rem;
    margin-bottom: 5rem;
}

.psicoterapia, .enfoque {
    background-color: var(--azul-secundario);
    margin-left: 0rem;
    margin-right: 5rem;
    flex-direction: row-reverse;
}

.sobre-mi .foto, .perros .foto, .psicoterapia .foto, .enfoque .foto {
    max-width: 350px;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 10px rgba(0, 0, 0, 0.2);
    margin-left: -5rem;
    position: relative; 
    z-index: 1;
}

.sobre-mi .video-ashley {
    max-width: 360px;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 10px rgba(0, 0, 0, 0.2);
    margin-left: -5rem;
    height: 400px;
    position: relative; 
    z-index: 1;
}

.psicoterapia .foto, .enfoque .foto {
    box-shadow: -0.5rem 0.5rem 10px rgba(0, 0, 0, 0.2);
}

.psicoterapia .foto {
    max-width: 478px;
    margin-left: 0rem;
    margin-right: -5rem;
}

.enfoque .foto {
    max-width: 350px;
    margin-left: 0rem;
    margin-right: -5rem;
}

.enfoque .texto a {
    color: white;
    transition: color 0.3s ease, color 0.3s ease;
}

.enfoque .texto a:hover {
    color: var(--azul-letra);
}

.sobre-mi .texto, .perros .texto, .psicoterapia .texto, .enfoque .texto {
    flex: 1;
    color: white;
    line-height: 1.6;
    margin-right: 3rem;
    margin-left: 2rem;
}

.sobre-mi .texto h2, .perros .texto h2, .psicoterapia .texto h2, .enfoque .texto h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}