* --- Estilos Globales y Variables --- */
:root {
    --bg-dark: #0d2b36; /* Color de fondo oscuro (aproximado) */
    --text-light: #ffffff;
    --text-highlight: #f06a6a; /* Rojo/Coral */
    --input-blue: #3b82f6;     /* Azul del input */
}

body {
    font-family: 'Arial', sans-serif; /* Busca una fuente similar (ej. Poppins, Nunito) */
    background-color: var(--bg-dark);
    color: var(--text-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita scroll horizontal */
}


.container{
        margin: 0 50px;
}
/* --- Encabezado --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.social-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px; /* Espacio entre iconos */
    align-items: center;
}

.social-nav li {
    display: flex;
    align-items: center;
}

.social-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-nav a:hover {
    transform: scale(1.1);
}

.social-nav img {
    display: block;
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px; /* Espacio entre enlaces */
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: bold;
    font-size: 0.9rem;
}

nav a:hover {
    color: var(--text-highlight);
}

.btn-login {
    text-decoration: none;
    color: var(--text-light);
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.15); /* Transparente */
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.9rem;
}


.hero-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 40px;
    padding: 20px;
    background-color: #f0f0f042;
    border-radius: 20px;
}

.hero-image {
    flex: 0 0 50%; /* Ocupa la mitad derecha (aunque sea invisible) */
    text-align: center;
}

/* Background slider container */
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.hero-image img {
    max-width: 100%; /* La imagen se ajusta al contenedor */
    /* La ilustración original probablemente usa posicionamiento 
       absoluto para salirse del 'flow', pero esto es más simple */
}

/* --- Contenido de Texto --- */
h1 {
    font-size: 5rem; /* Tamaño de fuente grande */
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #42210B;
}

.text-highlight {
    color: var(--text-highlight);
}

.hero-content p {
    font-family: 'serif', serif;
    font-size: 20px;
    line-height: 1.7;
    max-width: 600px; /* Limita el ancho del párrafo */
    margin-bottom: 40px;
    color: #A12115; /* Un gris claro para el párrafo */
}
.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
/* --- Formulario de Suscripción --- */
.subscribe-form {
    display: flex;
    height: 60px; /* Altura fija para el formulario */
    max-width: 450px;
}

.subscribe-form {
    flex-grow: 1; /* El input ocupa todo el espacio posible */
    border: none;
    border-radius: 30px; /* Muy redondeado */
    padding: 0 30px;
    font-size: 1rem;
    background-color: var(--input-blue);
    color: var(--text-light);
}

.subscribe-form input::placeholder {
    color: #d1e0ff; /* Placeholder más claro */
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form .btn-send {
    border: none;
    background-color: #9d182d;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 50px;
    border-radius: 30px;
    cursor: pointer;
    z-index: 2;
}

.subscribe-form .btn-send:hover {
    background-color: #A12115;
}

/* --- Botón Navideño --- */
.btn-send {
        transition: all 0.3s ease;

    display: inline-block;
    text-decoration: none;
    border: none;
    background: linear-gradient(135deg, #9d182d 0%, #c41e29 100%);
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 50px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(157, 24, 45, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-send::before {
    content: '';
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
    animation: twinkle 2s infinite;
}

.btn-send::after {
    content: '';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    animation: twinkle 2s infinite 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.btn-send:hover {
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #9d182d 0%, #c41e29 200%);
    box-shadow: 0 6px 20px rgba(157, 24, 45, 0.6);
    transform: translateY(-2px);
}

.btn-send:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(157, 24, 45, 0.4);
}

/* --- Efecto de Nieve --- */
.snowflake {
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
    -webkit-animation-name: snowflakes-fall, snowflakes-shake;
    -webkit-animation-duration: 10s, 3s;
    -webkit-animation-timing-function: linear, ease-in-out;
    -webkit-animation-iteration-count: infinite, infinite;
    -webkit-animation-play-state: running, running;
    animation-name: snowflakes-fall, snowflakes-shake;
    animation-duration: 10s, 3s;
    animation-timing-function: linear, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running, running;
    color: #fff;
    font-size: 1em;
    font-family: Arial;
    text-shadow: 0 0 1px #000;
}

@-webkit-keyframes snowflakes-fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

@-webkit-keyframes snowflakes-shake {
    0% { -webkit-transform: translateX(0px); transform: translateX(0px); }
    50% { -webkit-transform: translateX(80px); transform: translateX(80px); }
    100% { -webkit-transform: translateX(0px); transform: translateX(0px); }
}

@keyframes snowflakes-fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

@keyframes snowflakes-shake {
    0% { transform: translateX(0px); }
    50% { transform: translateX(80px); }
    100% { transform: translateX(0px); }
}

.snowflake:nth-of-type(0) {
    left: 1%;
    -webkit-animation-delay: 0s, 0s;
    animation-delay: 0s, 0s;
}

.snowflake:nth-of-type(1) {
    left: 10%;
    -webkit-animation-delay: 1s, 1s;
    animation-delay: 1s, 1s;
}

.snowflake:nth-of-type(2) {
    left: 20%;
    -webkit-animation-delay: 6s, .5s;
    animation-delay: 6s, .5s;
}

.snowflake:nth-of-type(3) {
    left: 30%;
    -webkit-animation-delay: 4s, 2s;
    animation-delay: 4s, 2s;
}

.snowflake:nth-of-type(4) {
    left: 40%;
    -webkit-animation-delay: 2s, 2s;
    animation-delay: 2s, 2s;
}

.snowflake:nth-of-type(5) {
    left: 50%;
    -webkit-animation-delay: 8s, 3s;
    animation-delay: 8s, 3s;
}

.snowflake:nth-of-type(6) {
    left: 60%;
    -webkit-animation-delay: 6s, 2s;
    animation-delay: 6s, 2s;
}

.snowflake:nth-of-type(7) {
    left: 70%;
    -webkit-animation-delay: 2.5s, 1s;
    animation-delay: 2.5s, 1s;
}

.snowflake:nth-of-type(8) {
    left: 80%;
    -webkit-animation-delay: 1s, 0s;
    animation-delay: 1s, 0s;
}

.snowflake:nth-of-type(9) {
    left: 90%;
    -webkit-animation-delay: 3s, 1.5s;
    animation-delay: 3s, 1.5s;
}

/* --- Iconos Sociales --- */
.social-links {
    /* En el diseño están abajo a la izquierda */
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 25px;
}

.footer {
    position: fixed;
    bottom: 30px;
    right: 60px;
    font-size: 2rem;
   
}

.whatsapp-icon {
    width: 90px; /* 60px * 1.5 = 90px */
    height: 90px;
}

.social-links a {
    /* Aquí pondrías el estilo para tus iconos (ej. tamaño) */
    font-size: 2rem;
    color: var(--text-light);
}

.elsie-swash-caps-regular {
  font-family: "Elsie Swash Caps", serif;
  font-weight: 400;
  font-style: normal;
}

.elsie-swash-caps-black {
  font-family: "Elsie Swash Caps", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  color: #42210B;
}

/* ---- reset ---- */ 
html,body{ 
  margin:0; 
  font-family: 'Pacifico', cursive;
  
  display: flex;
  justify-content:center;
  align-items:center;
}
canvas{ 
  display: block;
  vertical-align: bottom;
}
/* ---- particles.js container ---- */ 
#particles-js{ 
  position:absolute; 
  top:0;
  left:0;
  width: 100%; 
  height: 100%; 
  background-color: #041728; 
  background-image: url("https://images.unsplash.com/photo-1513297887119-d46091b24bfa?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80"); 
  background-repeat: no-repeat; 
  background-size: cover;
  background-position: 0; 
  z-index:0;
}
.text{
  color:#fff;
  font-size:7vw;
  position:inline-block;
  z-index:1;
  text-align:center;
  cursor:default;
  pointer-events:none;
}

.follow-me{
/*   display:fixed;
  top:0;
  left:0; */
  font-size:4vw;
  transform:translateX(100px);
  z-index:2;
}
a:hover, a:visited, a:link, a:active{
  text-decoration: none;
  color: rgba(255,255,255,0.8);
}

/* --- Media Queries para Responsividad --- */
@media (max-width: 768px) {

.container{
        margin: 0 10px;
}
    header {
        padding: 20px 0;
        flex-wrap: wrap;
    }

    .social-nav ul {
        gap: 15px;
    }

    .social-nav img {
        width: 40px !important;
        height: 40px !important;
    }

    h1 {
        font-size: 3rem;
    }


    .hero-content {
        order: 1;
        flex: 1;
        max-width: 100%;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: 2;
        flex: 1;
    }

    .footer {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .whatsapp-icon img {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 480px) {
    .social-nav ul {
        gap: 10px;
    }

    .social-nav img {
        width: 40px !important;
        height: 40px !important;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 16px;
    }
}


