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

body
{
    background: #0F0F0F;
    font-family: Cabinet Grotesk, sans-serif;
    color: #ffffff;
    margin: 0px;
}

.TextoAmarillo
{
    color: #FFCA00;
}


.FlexColumna
{
  display: flex; /* Activa la caja flexible */
  flex-direction: column;
  justify-content: center; /* Centra el texto horizontalmente */
  align-items: center; /* Centra el texto verticalmente */
}

.FlexColumnaInicio
{
  display: flex; /* Activa la caja flexible */
  flex-direction: column;
  justify-content: center; /* Centra el texto horizontalmente */
  align-items: flex-start; /* Centra el texto verticalmente */
}

.Flex
{
  display: flex; /* Activa la caja flexible */
  flex-direction: row;
  justify-content: center; /* Centra el texto horizontalmente */
  align-items: center; /* Centra el texto verticalmente */
}

.FlexFila
{
  display: flex; /* Activa la caja flexible */
  flex-direction: row;
  justify-content: center; /* Centra el texto horizontalmente */
  align-items: center; /* Centra el texto verticalmente */
  flex-wrap: wrap;
  gap: 10px;
}

.boton-amarillo 
{
    /* Estilos básicos y de texto */
    background-color: #ffd700; /* Amarillo vibrante */
    color: #1a1a1a;            /* Texto oscuro para buen contraste */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    
    /* 1. Esquinas redondeadas */
    border-radius: 25px; 

    /* 2. Sombra amarilla (eje-x, eje-y, desenfoque, propagación, color) */
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.6);

    /* Transición suave para el efecto al pasar el ratón */
    transition: all 0.3s ease;
}

/* Efecto al pasar el cursor por encima (Hover) */
.boton-amarillo:hover 
{
    background-color: #ffea00; /* Un amarillo un poco más brillante */
    box-shadow: 0px 6px 20px rgba(255, 215, 0, 0.9); /* Sombra más intensa */
    transform: translateY(-2px); /* Eleva levemente el botón */
}

/* Efecto al hacer clic (Active) */
.boton-amarillo:active 
{
    transform: translateY(0);
    box-shadow: 0px 2px 10px rgba(255, 215, 0, 0.6);
}

h1{
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-text-primary);
    margin-bottom: 1rem;

}

.marquesina-container 
{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: #1a1a1a;
    padding: 10px 0;
    border: 1px solid #3a3a3a; 
}

.marquesina-texto 
{
    display: inline-block;
    padding-left: 100%; /* Empieza fuera de la pantalla a la derecha */
    animation: moverTexto 60s linear infinite;
}

@keyframes moverTexto 
{
    0% {transform: translateX(0);}
    100% {transform: translateX(-100%);}
}


.circulo-amarillo 
{
  width: 30px;
  height: 30px;
  background-color: white;
  border: 2px solid yellow; /* Puedes usar 'gold' para un amarillo más oscuro */
  border-radius: 50%;
}

.Redondeada
{
    border-radius: 15px;
}


.Contenedor 
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  width: 100%;
}


.Descripcion
{
    font-size: 1.1rem;
    color: #b3abab;
}



/* En pantallas de 768px o más (Tablets y Escritorio): 2 columnas */
@media (min-width: 768px) 
{
    .Imagen
    {
        width: 50%;
    }

    .Contenedor .Columna1
    {
        padding: 100px;
    }

    .Descripcion
    {
        font-size: 1.8rem;
        color: #b3abab;
    }


}


.Columna1
{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items:center;
    padding: 40px;
    width: 100%;
}

.Columna2
{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    width: 100%;
}

.Titulo
{
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
}

.Subtitulo
{
    font-size: 1rem;
}

.PagoProcesado
{
    font-size: 2rem;
    font-weight: bold;
}

.Correo
{
  border-radius: 40px;
  width: 250px;
  height: 40px;
}

.CajaIncluye
{
    width: 30%;
    background: #1a1a1a;
    padding: 60px;
    border-radius: 30px;
    padding: 30px;
    color: #888888;
    margin: 50px;
}

.MetodoPago
{
    width: 350px;
    height: 100px;
    background: #ffffff;
    border-radius: 30px;
    color: #888888;
    border: 1px solid #000000; 
    padding: 15px;
    transition: all 0.3s ease;
}

.MetodoPago:hover
{
    background-color: #ffea00; /* Un amarillo un poco más brillante */
    box-shadow: 0px 6px 20px rgba(255, 215, 0, 0.9); /* Sombra más intensa */
    transform: translateY(-2px); /* Eleva levemente el botón */
}

.Icono
{
    color: #FFCA00;
}

.Footer
{
    width: 100%;
    background: #1f1f1f;
    padding: 50px;
}

.TextoFooter
{
    color: #A0A0A0;
}


.TextoAzul
{
    font-size: 4rem;
    font-weight: bold;
    color: #447AFF;
}

.TextoGrande
{
    font-size: 4rem;
    font-weight: bold;
}

h3
{
    color: #ffffff;
}

.ImagenAlbum
{
    width: 30vw;
}

.FullScreen
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	transition: opacity 0.5s ease;
	display: flex;
  	justify-content: center; 
  	align-items: center;     
	display: none;
}


.VentanaModal
{
  font-family: Arial, Helvetica, sans-serif;
  width: 600px;
  height: 400px;
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 20px;   
}

.Spei
{
    display: none;
    flex-direction: column;
}

.TextoJustificado
{
	text-align: justify;
	line-height: 1.3;
    color: #0F0F0F;
	
}

.TextoIzquierda
{
	text-align: justify;
	line-height: 1.3;
    color: #0F0F0F;
	
}

.Brillar:hover
{
	filter: saturate(180%);
	/*filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));*/
}


.Mano
{
	cursor:pointer;
	text-decoration:none;
}

