@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: 'Kanit', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.fnt-kanit{
    font-family: 'Kanit', sans-serif;
}

.fnt-parisienne{
    font-family: 'Parisienne', sans-serif;
}

.fnt-quicksand{
    font-family: 'Quicksand', sans-serif;    
}

.fnt-montserrat{
    font-family: 'Montserrat', sans-serif;    
}

.fnt-through{
    text-decoration: line-through  
}

.fnt-cnt{
    text-align: center;
}

.fnt-rgt{
    text-align: right;
}

.fnt-jtf{
    text-align: justify;
}

.fnt-nml{
    font-weight: normal;
}

.fnt-bld{
    font-weight: bold;
}

.fnt-lgt{
    font-weight: lighter;
}

.fnt-bco{
    color: #FFF;
}

.fnt-negro{
    color: #000;
}

.fnt-rojo{
    color:#FF0000;    
}

.fnt-gris{
    color:#777;
}

.fnt-verde{
    color: #367230;
}

.fnt-dorado{
    color:#efae45;
}

.fnt-morado{
    color:#B68EC3;
}

.fnt-05 { 
    font-size: calc(0.5em + 0.5vw);
}

.fnt-06 { 
    font-size: calc(0.6em + 0.6vw);
}

.fnt-07 { 
    font-size: calc(0.7em + 0.7vw);
}

.fnt-08 { 
    font-size: calc(0.8em + 0.8vw);
}

.fnt-1 { 
    font-size: calc(1em + 1vw);
}

.fnt-12{
    font-size: calc(1.2em + 1.2vw);
}

.fnt-13{
    font-size: calc(1.3em + 1.3vw);
}

.fnt-15{
    font-size: calc(1.5em + 1.5vw);
}

.fnt-17{
    font-size: calc(1.7em + 1.7vw);
}

.fnt-2{
    font-size: calc(2em + 2vw);
}

.fnt-100{
    font-size: calc(4em + 4vw);    
}

.fnt-underline{
    text-decoration: underline;
}

.fnt-interlineado-3{
    line-height: 1.2em;
}

.fnt-not-underline{
    text-decoration: none;
}

.cursor-pointer{
    cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fondo difuminado */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;

  background-image: url('../images/berenice_victor.jpeg');
  background-size: cover;
  background-position: center;

  filter: blur(25px);
  transform: scale(1.2); /* evita bordes */
  z-index: 1;
}

/* Imagen principal (NO se recorta) */
.hero-img {
  position: relative;
  z-index: 2;

  max-height: 90vh;
  max-width: 90vw;

  width: auto;
  height: auto;

  object-fit: contain; /* 🔥 clave */
  border-radius: 12px; /* opcional elegante */
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.divider {
  width: 60px;
  height: 2px;
  background-color: #C9A96E; /* dorado */
  margin: 0 auto;
  opacity: 0.6;
}

.section-shadow {
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.axy{
    display: flex;
    justify-content: center;
}

.axx{
    display: flex;
    align-items: center;
}

.axz{
    text-align: center;
}

.bck-color-gris{
    background-color: #f0eded;
}

.bck-color-oferta{
    background-color:rgb(215, 81, 36);
}

.bck-color-marfil{
    background-color: #f9f5f2;
}

.bck-color-dorado{
    background-color: #efae45;
}

.bck-color-morado{
    background-color: #B68EC3;
}

.bck-color-whatsapp{
    background-color: #25D366;
}

.color-dorado{
    color: #efae45;
}

.color-verde{
    color: #367230;
}


.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.border-solid-1{
    border: solid 1px;
}

.border-color-dorado{
    border-color:#efae45;
}

.border-radius-04{
    border-radius: 4px;
}

.shadow-0{
    box-shadow: 7px 7px 12px 0 rgba(137, 131, 121, 0.3);
}

.shadow-2 {
    box-shadow: 7px 7px 12px 7px rgba(239, 174, 69, 0.3);
}

.shadow-3 {
    box-shadow: 7px 7px 12px 7px rgba(158, 124, 170, 0.3);
}

.btn-primary {
    color: #fff;
    background-color: #efae45;
    border-color: #efae45;
}

.btn-secondary{
    color: #fff;
    background-color: #00A884;
    border-color: #00A884;    
}

.width-30{
    width: 30%;
}

.movible {
    opacity: 0;
    transition: opacity 0.5s;
}

.contenedor-relative{
    position: relative;
}

.img-sup-izq{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width:10%;
}

.img-inf-der{
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: cover;    
    width: 10%;
}

.img-izq{
    position: absolute;
    top: 10;
    left: 0;
    object-fit: cover;    
    width: 7%;
}

.img-der{
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;    
    width: 7%;    
}

.img-decoracion{
  max-width: 280px;
  width: 100%;
}
@media (max-width: 768px) {
  .img-decoracion {
    max-width: 180px;
  }
}

.padres-section {
    padding: 60px 20px;
    background-color: #faf9f7; /* tono suave */
}

.divider {
    width: 60px;
    height: 2px;
    background-color: #d4af37; /* dorado elegante */
    margin: 0 auto 20px auto;
}

.titulo-padres {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: #444;
    text-transform: uppercase;
}

.label {
    font-size: 13px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 8px;
}

.nombres {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #222;
    line-height: 1.6;
}

.separador {
    color: #d4af37;
    font-size: 20px;
}

.btn-audio {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;

    background-color: #000;
    color: #fff;
    font-size: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/*********************************************************************


                                FOOTER


**********************************************************************/
#footer {
  background: #343A40;
  padding: 30px 0 0 0;
  font-size: 12px;
  color: #999;
}

#footer h3.widget-title {
  font-size: 15px;
  font-size: 0.9375rem;
  text-transform: uppercase;
  color: #ccc;
  margin: 0 0 20px;
}

#underfooter {
  background: #191919;
  padding: 15px 0;
  color: #777;
  font-size: 12px;
}

#underfooter p {
  margin: 0;
}

.follow-me-icons {
  font-size: 20px;
}

.follow-me-icons i {
  float: left;
  margin: 0 10px 0 0;
}


/**************************************************
                     MEDIA QUERY 
**************************************************/  

/*** PARA PANTALLAS PEQUEÑAS ***/

@media (max-width: 767px) {
    .imagen-grande{
        display: none; /* Oculta ambas imágenes en pantallas pequeñas */
    }

    .imagen-mobile {
        display: block; /* Muestra la imagen para dispositivos móviles */
    }
}

/*** PARA PANTALLAS GRANDES ***/

@media (min-width: 768px) {
    .imagen-mobile {
        display: none; /* Oculta la imagen para dispositivos móviles en pantallas grandes */
    }
    .imagen-grande{
        display: block;
    }
    .img-sup-izq{
        width:10%;
    }
    .img-inf-der{
        width: 10%;
    }        
    .img-izq{
        width: 7%;        
    }
    .img-der{
        width: 7%;        
    }        
}

/** PANTALLAS MAYORES A 576PX */
@media(min-width:576px){
    .texto-corto{
        display: none;
    }
    .texto-largo{
        display: block;
    }
    .img-sup-izq{
        width:15%;
    }
    .img-inf-der{
        width: 15%;
    }        
    .img-izq{
        width: 12%;
    }    
    .img-der{
        width: 12%;        
    }    
}

/** PANTALLAS MENORES A 576PX */
@media(max-width:576px){
    .texto-corto{
        display: block;
    }
    .texto-largo{
        display: none;
    }
    .img-sup-izq{
        width:25%;
    }
    .img-inf-der{
        width: 25%;
    }    
    .img-izq{
        width: 17%;
    }
    .img-der{
        width: 17%;        
    }
}
