
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Petit+Formal+Script&display=swap');


:root {
    /* Escala de Grises Existente */
    --gris1: #2b2b2b;            /* Gris muy oscuro casi negro */
    --gris2: #4d4d4d;            /* Sustituto gris oscuro */
    --gris3: #8c8c8c;            /* Sustituto gris medio-claro */
    --gris4: #6e6e6e;            /* Gris medio */
    --gris-claro: #f5f5f5;       /* Gris muy claro */
    --gris-intermedio: #b6b6b6;  /* Gris intermedio */
    --gris-oscuro: #333333;      /* Gris oscuro */
    --blanco: #ffffff;           /* Blanco puro */

    /* Escala de Negros */
    --negro-solido: #000000;     /* Negro absoluto */
    --negro-intenso: #0d0d0d;   /* Negro muy profundo */
    --negro-fuerte: #1a1a1a;    /* Negro con leve gris */
    --negro-suave: #1f1f1f;     /* Negro atenuado */
    --negro-ardilla: #262626;   /* Negro humo */
    --negro-carbon: #1c1c1c;    /* Negro carbón */
    --negro-grafito: #2a2a2a;   /* Negro grafito */
    --negro-oxidado: #292929;   /* Negro industrial */
}


html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 16px;
    font-family: 'Cormorant', serif;

}
body {
  overflow-x: hidden !important;
}


/* 
#pantalla-inicio {
  position: fixed;
  inset: 0;
  background-color: #f8f5f0;
  background-image: radial-gradient(circle at top left, rgba(220,210,190,0.3), transparent 60%),
                    radial-gradient(circle at bottom right, rgba(180,170,150,0.25), transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
   z-index: 11111111111111;
  opacity: 1;
  transition: opacity 1.2s ease;
  overflow: hidden;
}

#pantalla-inicio.fade-out {
  opacity: 0;
  pointer-events: none;
}

#inicio-contenido {
  animation: aparecer 1.8s ease forwards;
}

#inicio-contenido h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #2f2a24;
  letter-spacing: 1px;
  margin-bottom: 0.4em;
  font-weight: 600;
}

#inicio-contenido p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  color: #5a534a;
  opacity: 0.8;
  margin-bottom: 2em;
}

#btn-inicio {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  padding: 12px 40px;
  background-color: #d8cbb8;
  color: #2f2a24;
  border: none;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
}

#btn-inicio:hover {
  background-color: #cdbfa9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

#pantalla-inicio::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/linen.png');
  opacity: 0.2;
  z-index: -1;
}


*/




/* === Pantalla inicial blanca con botón === */
#pantalla-inicial {
    position: fixed;
    inset: 0;
    background: #fefefe;
    display: flex
;
    align-items: end;
    justify-content: center;
    z-index: 11111111111;
    transition: opacity 1s 
ease;
    padding-bottom: 100px;
    overflow:  hidden !important;

}
#pantalla-inicial.fade-out {
  opacity: 0;
  pointer-events: none;
}

#btn-entrar {
  background: white;
  color: black;
  font-size: 24px;
  font-family: inherit;
  font-style: italic;
  border: 1px solid #ccc;
  width: 100%;
  padding: 12px 24px;
  cursor: pointer;
  letter-spacing: 3px;
  transition: opacity 0.8s ease, transform 0.3s ease;
  z-index: 111111111111111;
}



#btn-entrar:hover {
  transform: scale(1.05);
}

/* === LOADER === */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 111111111;
  transition: opacity 1s ease;
    overflow:  hidden !important;

}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loader video {
  width: 200px;          /* 👈 tamaño reducido */
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}




.fade-in {
  opacity: 1 !important;
  display: flex !important;
}

.fade-out {
  opacity: 0 !important;
  transition: opacity 0.8s ease;
}














/*MUSIC*/
#div_btn_music {
  position: fixed;
  bottom: 2px;
  right: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 11111111;
  transition: transform 0.3s ease;
}

#div_btn_music:hover {
  transform: scale(1.08);
}

#div_btn_music img {
  width: 45px;
  height: 45px;
  z-index: 2;
  position: relative;
}

/* 🔊 Ondas de sonido tipo ")" */
/* 🔊 Ondas de sonido tipo "(" apuntando a la izquierda */
#div_btn_music.playing::before,
#div_btn_music.playing::after {
  content: "";
  position: absolute;
  top: -7%;
  left: 2%;
  width: 10px;
  height: 20px;
  border-left: 1px solid rgba(78, 78, 78, 0.823);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-radius: 50%;
  transform-origin: center right;
  transform: rotate(35deg) scale(0.6);
  animation: ondaCurva 1.2s ease-out infinite;
}

/* Segunda onda, un poco más grande y con delay */
#div_btn_music.playing::after {
  width: 16px;
  height: 20px;
  top: 2%;
  left: 4%;
  animation-delay: 0.5s;
  transform: rotate(35deg) scale(0.6);
}

button, a ,#div_btn_music,
#div_btn_music * {
  outline: none;
  -webkit-tap-highlight-color: transparent; /* elimina el destello celeste en móviles */
  -webkit-focus-ring-color: transparent;    /* elimina el borde azul en Chrome */
  user-select: none;                        /* evita seleccionar el ícono */
}
/* Animación de expansión */
@keyframes ondaCurva {
  0% {
    opacity: 0.9;
    transform: rotate(35deg) scale(0.6);
  }
  100% {
    opacity: 0;
    transform: rotate(35deg) scale(1.6);
  }
}


/* Estado pausado */
#div_btn_music.paused img {
  opacity: 0.6;
}





/*SECCIONES*/

.seccion {
    height: calc(100vh - 32px);
    padding: 16px;
    width: calc(100% - 64px);
    background: url(../img/fondo_n.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: bottom;
    border-bottom: 3px solid #d2cfcf;
    padding-left: 32px;
    padding-right: 32px;
}

body {
  opacity: 0;
  transition: opacity 800ms ease; /* puedes ajustar la velocidad */
}
body {
  opacity: 1;
}


/*SECCION 1*/
#seccion_1{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
     
}

#div_portada{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.titulo {
  position: relative;     /* Necesario para que Arctext calcule bien */
  display: inline-block;  /* Mantiene el ancho natural del texto */
  color: #564F3F;
  text-align: center;
  font-family: Cormorant;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 10px;
  padding-bottom: 35px;
}







#imagen_portada {
    width: 90%;
    object-fit: cover;
   
}
#video-portada{
      width: 90%;
    object-fit: cover;
    border-top-right-radius: 90%;
    border-top-left-radius: 90%;
    filter: grayscale(1);
    box-shadow: 0 0 40px rgb(0 0 0 / 23%), 0 0 20px rgb(0 0 0 / 5%), inset 0 0 50px rgba(0, 0, 0, 0.57);
}



#fechas{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.fecha_portada{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 122.222% */
}



#div_conta{
     display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#div_conta p{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-transform: uppercase;
}


/* Contenedor general */
#cuenta_regresiva {
  display: flex;
  justify-content: center;
  gap: 16px; /* separa los bloques entre sí */
  text-transform: uppercase;
}

/* Cada bloque (días, horas, etc.) */
#cuenta_regresiva div {
  display: flex;
  flex-direction: column; /* número arriba, texto abajo */
  align-items: center;
  text-align: center;
  gap: 8px;
}

/* NÚMEROS */
#cuenta_regresiva span {
  margin: 0;
  color: #564F3F;
  font-family: Cinzel, serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

/* TEXTOS (Días, Horas, Min, Seg) */
#cuenta_regresiva div {
  color: #564F3F;
  font-family: Cinzel, serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-transform: uppercase;
}






/*SECCION 2*/
#seccion_2{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
   
}

#imagen_seccion2{
    width: 170px;
}
#texto_rings{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}
#texto_rings p {
    margin: 0;
    color: #564F3F;
    text-align: center;
    font-family: Cinzel;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
}
#texto_rings h2{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: 'Cormorant', serif;

font-size: 26px;
font-style: italic;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}
#texto_rings h2 span{
        margin: 0;
    color: #564F3F;
text-align: center;
font-family:'Courier New', Courier, monospace;

font-size: 24px;
font-style: italic;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}
#texto_rings h3{
     margin: 0;
     color: #564F3F;
font-family: Cinzel;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}

/*SECCION 3*/
#seccion_3 {
  height: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 21px;
  position: relative;

  background-image: 
    url(../img/fondo_n.png),
     url(../img/fondo_n.png),
      url(../img/fondo_n.png);

  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% calc(100% / 3), 100% calc(100% / 3), 100% calc(100% / 3);
  background-position: top, center, bottom;

  border-bottom: 3px solid #d2cfcf;
  overflow-x: hidden;
}



#seccion_3::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 31px;
    width: 1px;
    background-color: #C2BAA6;
}


#imagen_seccion3{
    height: 120px;
}

.marcadores{
    gap: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
}

.marcadores p{
    margin: 0;
    color: #564F3F;
    text-align: center;
    font-family: Cinzel;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 137.5% */
    text-transform: uppercase;
}

.marcadores div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.marcadores h3{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: "Petit Formal Script";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.marcadores h4{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 26px; /* 183.333% */
text-transform: uppercase;
}

.marcadores img{
    position: absolute;
    width: 30px;
    left: -16px;
    top: 16px;
}


.horarios{
     display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: calc(100% - 16px);
    padding-left: 8px;
    padding-right: 8px;
}

.horarios p{
    margin: 0;
    color: #564F3F;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
}


.imagenes_lugares{
    display: flex;
    flex-direction: column;
    height: 345px;
    position: relative;
    width: 100%;
}

#alfonso1 {
    width: 143px;
    height: 179px;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-image: url(../img/sj3.jpeg);
    background-size: cover;
   
    position: absolute;
    top: 0;
    left: -36px;
}


#alfonso2{
    border-radius: 4px;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
width: 178px;
height: 222px;
flex-shrink: 0;
background-image: url(../img/sj2.jpeg);
 background-size: 100%;
    background-position-y: center;
    background-position-x: center;
position: absolute;
top: 120px;
right: -50px;
}
.imagenes_lugares p{
    color: #202020;
font-family: Cinzel;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
position: absolute;
left: 40px;
top: 270px;
margin: 0;
    align-items: center;
    justify-content: center;
    display: flex
;
    gap: 10px;
}

.imagenes_lugares iframe{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    
}

.como_llegar {
 color: #c50000;
font-family: Cinzel;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
position: absolute;
left: 8px;
top: 270px;
margin: 0;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    display: flex
;
    gap: 2px;
}

.como_llegar svg path {
  stroke: #c50000;
}





#imagenes_lugares2{
    height: 250px;
}

#bol1 {
    width: 143px;
    height: 179px;
    flex-shrink: 0;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background-image: url(../img/bol1_2.webp);
    background-size: 100%;
    position: absolute;
    top: -130px;
    right: -36px;
    filter: contrast(1.1)
          brightness(.8)
          saturate(2.8)
          sepia(0.6)
          hue-rotate(-10deg);
}
#bol2 {
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    width: 178px;
    height: 222px;
    flex-shrink: 0;
    background-image: url(../img/bol2.png);
    background-size: cover;
    position: absolute;
    top: 10px;
    left: -50px;
}
.imagenes_lugares iframe{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    border-radius: 8px;  
}

#imagenes_lugares2 .como_llegar{
    right: 8px;
    top: 170px;

    left: inherit;
}




/*SECCION ROPA*/
#seccion_4{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

#imagen_seccion4 {
    width: 142px;
    height: 70px;
    object-fit: cover;
}


#div_1_seccion4{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
#div_1_seccion4 h3{
    margin: 0;
  color: #564F3F;
text-align: center;
font-family: "Petit Formal Script";
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

#div_1_seccion4 h4{
    margin: 0;
color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 137.5% */
text-transform: uppercase;
}

#div_2_seccion4{
 display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: start;
    gap: 16px;

}

#div_2_seccion4 h3{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-transform: uppercase;

}

#div_2_seccion4 p{
    margin: 0;
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 220% */
text-transform: uppercase;
width: 80%;
    padding-bottom: 16px;
    border-bottom: 1px dotted #C2BAA6;
}

#modestia{
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-transform: uppercase;
}


/*SECCION REGALOS*/

#seccion_5{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-height: calc(100vh - 32px) !important;
    height: max-content !important;

}

#imagen_seccion5 {
    width: 142px;
    height: 85px;
    object-fit: cover;
}



#div_1_seccion5{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
     width: 100%;
}
#div_1_seccion5 h3{
    margin: 0;
color: #564F3F;
text-align: center;
font-family: "Petit Formal Script";
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
     width: 100%;

}

#div_1_seccion5 h4{
    margin: 0;
 color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
     width: 100%;

text-transform: uppercase;
}

#div_1_seccion5 p{
    margin: 0;
   
    margin-top: 8px;
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-transform: uppercase;
padding-bottom: 16px;
  width: 86%;
border-bottom: 1px dotted #C2BAA6;
}

#div_cbu, #div_caja{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 2px;
        width: 100%;
}

#div_cbu h2, #div_caja h2{
    margin: 0;
    color: #7A7A7A;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 183.333% */
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
text-transform: uppercase;
}



#div_cbu p, #div_caja p{
    margin: 0;
 color: #7A7A7A;
 text-transform: uppercase;
font-family: Cinzel;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: var(--Typescale-Label-Large-Line-Height, 20px); /* 142.857% */
letter-spacing: var(--Typescale-Label-Large-Letter-Spacing, 0.1px);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 6px;
}



/*SECCION CONFIRM*/



#seccion_6{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

#imagen_seccion6 {
    width: 100px;
    height: 100px;
    object-fit: cover;
}



#div_1_seccion6{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
     width: 100%;
}

#div_1_seccion6 h3{
    margin: 0;
color: #564F3F;
text-align: center;
font-family: "Petit Formal Script";
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: normal;
     width: 100%;

}

#div_1_seccion6 h4{
    margin: 0;
 color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
     width: 100%;

text-transform: uppercase;
}

#confirmar_form{
    color: #564F3F;
text-align: center;
font-family: Cinzel;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 137.5% */
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
text-transform: uppercase;
}


#div_costo_tarjeta{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;
    justify-content: center;
    width: 100%;
}

#div_costo_tarjeta h3{
    margin: 0;
    color: #7A7A7A;
font-family: Cinzel;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: var(--Typescale-Label-Large-Line-Height, 20px); /* 142.857% */
letter-spacing: var(--Typescale-Label-Large-Letter-Spacing, 0.1px);
}

#div_costo_tarjeta p{
    margin: 0;
    margin-top: 12px;
    color: #564F3F;
text-align: left;
font-family: Cinzel;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}



/*SECCION RETRATOS*/


#seccion_7{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
        padding: 16px;
    width: calc(100% - 32px);
    min-height: calc(100vh - 32px );
    height: max-content !important;
}


#div_1_seccion7{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
     width: 100%;
     padding-top: 12px;
}

#div_1_seccion7 h3{
    margin: 0;
color: #564F3F;
text-align: center;
font-family: "Petit Formal Script";
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
     width: 100%;

}

#div_fotos_1 { 
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

#div_fotos_1 h4{
  font-size:  10px;
  color: #564F3F;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Cinzel;
  margin: 0;
  line-height: 18px;
}


#container_img_bb{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
}

#container_img_bb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

#karimbb{
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}

#paubb{
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
}






/* CSS - adapta tus estilos actuales */
#div_fotos_2 {
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: start;
  gap: 10px;
  width: 300px;
  position: relative;
  height: 430px;
}

#div_fotos_2 h4 {
  font-size: 10px;
  color: #564F3F;
  font-weight: 400;
  text-transform: uppercase;
  font-family: Cinzel;
  margin: 0;
  line-height: 18px;
}

/* Carrusel */
#container_retratos {
  position: relative;
  overflow: hidden;
  width: 85%;
  height: 370px; /* ajustá según tu diseño */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.track {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 12px;
}

/* 🔹 Flechas */
.arrow {
  position: absolute;
  bottom: 0%;
  width: 50px;
  height: 50px;
  border: none;
  background:transparent;
   color: #C2BAA6;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  backdrop-filter: blur(3px);
  transition: background 0.3s ease, transform 0.3s ease;
}

.arrow:hover {
  color: #87806f;
}

.arrow.left {
  left: 30%;
}

.arrow.right {
  right: 30%;
}




@media (max-width: 340px) {
  #alfonso2 {
      right: -75px;
  }
  #bol2 {

    left: -75px;
}

}
