/* General Reset */
/* hebrew */
@font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 300 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/fredoka/v14/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWs89XyHw.woff2) format('woff2');
    unicode-range: U+0307-0308, U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 300 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/fredoka/v14/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWg89XyHw.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Fredoka';
    font-style: normal;
    font-weight: 300 700;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/fredoka/v14/X7n64b87HvSqjb_WIi2yDCRwoQ_k7367_DWu89U.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  /* vietnamese */
@font-face {
    font-family: 'Big Shoulders Stencil';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bigshouldersstencil/v2/TwMQ-JIEQ1Je5sI6Bx1TKHD83rT3u3NSCfbvxY5Cf8Y.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  }
  /* latin-ext */
  @font-face {
    font-family: 'Big Shoulders Stencil';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bigshouldersstencil/v2/TwMQ-JIEQ1Je5sI6Bx1TKHD83rT3u3NSCfbvxI5Cf8Y.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
  /* latin */
  @font-face {
    font-family: 'Big Shoulders Stencil';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bigshouldersstencil/v2/TwMQ-JIEQ1Je5sI6Bx1TKHD83rT3u3NSCfbvyo5C.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }


body {
    font-family: "Fredoka", serif;

    
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('background.jpg') no-repeat center center/cover;
    background-attachment: fixed
    
}


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

body {
    background-color: #000;
    color: #fff;
    text-align: center;
    overflow-y: auto;
}

/* Oculta el botón hamburguesa en escritorio */
.menu-toggle {
    display: none;
}

.logcenter {
    display: none;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 1.0);
    padding: 1px 0;
    z-index: 1000;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                      linear-gradient(90deg, #21A1FF, #FF009E, #21A1FF);
    background-size: 100% 100%, 200% 2px; /* La segunda capa es el doble de ancha para el efecto */
    background-position: 0 0, 0% 100%;
    background-repeat: no-repeat;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding-bottom: 3px;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav ul li a:hover {
    color: #9dd6ff;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Main */
.main {
    height: 100vh;
    display: flex;
    justify-content: flex-start; /* Cambia a flex-start para alinear arriba */
    align-items: center;
    flex-direction: column;
    padding-top: 50px; /* Margen superior para el navbar */
    box-sizing: border-box;
}

.content-container {
    max-width: 800px;
    min-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    flex-shrink: 0; /* Evita que el contenedor se encoja */
}

.t1 {
    color: #ffffff;
    font-family: "Big Shoulders Stencil", sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px; /* Separación entre el título y .band1 */
    position: relative;
    left: auto;
    transform: none;
}

.band1 {
    --blur: 1.75rem;
    --box-blur: calc(0.5 * var(--blur));
    --glow: var(--color, #ff008c);
    background: rgba(255, 0, 212, 0.060);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 5px solid currentColor;
    border-radius: 15px;
    box-shadow: 
        inset 0 0 0 2px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(0, 0, 0, 0.15),
        inset 0 0 var(--box-blur) var(--glow),
        0 0 var(--box-blur) var(--glow);
    padding: 50px;
    display: block;
    margin: 0 auto;
    filter: brightness(125%);
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 800px;
    flex-shrink: 0; /* Evita que el contenedor se encoja */
}

.imgmuestra {
    mask-image: 
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%, /* Borde izquierdo transparente */
            rgba(0, 0, 0, 1) 30%, /* Comienza el desvanecido izquierdo */
            rgba(0, 0, 0, 1) 80%, /* Termina el desvanecido derecho */
            rgba(0, 0, 0, 0) 100% /* Borde derecho transparente */
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%, /* Borde superior transparente */
            rgba(0, 0, 0, 1) 30%, /* Comienza el desvanecido superior */
            rgba(0, 0, 0, 1) 80%, /* Termina el desvanecido inferior */
            rgba(0, 0, 0, 0) 100% /* Borde inferior transparente */
        );
    mask-composite: intersect; /* Combina ambos degradés */
    
        max-height: 216px;    /* Altura máxima fija */
        width: auto;          /* Ancho se ajusta proporcionalmente */
        height: auto;         /* Altura se ajusta proporcionalmente (respetando max-height) */
        max-width: 100%;      /* Evita que la imagen exceda el ancho del contenedor */
    
}

.logo-container {
    position: relative;
    width: 90%; 
    max-width: 900px; 
    aspect-ratio: 16 / 9; 
    margin: 0 auto; 
    transform: translateY(50px);
    animation: fadeInUp 1.5s ease-out forwards;
    margin-top: 100px;
}

.logo2 {
    position: relative;
    margin: 0 auto; 
    width: 100%; 
    animation: fadeInUp 1.5s ease-out forwards;
}

.editor {
    color: white; /* Establece el color del enlace a blanco */
    text-decoration: none; /* Elimina el subrayado por defecto */
}

.editor:hover {
    color: aquamarine; /* Opcional: cambia el color cuando el usuario pasa el cursor sobre el enlace */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

element.style {
    text-shadow: rgba(10, 189, 240, 0.298039) 3px 3px 0px, rgba(254, 1, 1, 0.298039) -3px -3px 0px;
}

.logoan:nth-child(1) {
    opacity: 1;
    animation: bounce 10s infinite 1s;
}

.logoan:nth-child(2) {
    opacity: 0;
    animation: fadeIn 5s infinite alternate, bounce 10s infinite 1s;
}

/* Imágenes superpuestas */
.logoan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.logo2 {
    max-width: 500px;
    margin-bottom: 0px;
}

.logo {
    max-width: 200px;
    margin-bottom: 0px;
}



h1 {
    font-size: 26px;
    font-weight: 800;
    font-family: "Big Shoulders Stencil", sans-serif;
    padding: 8px;
}

body.home-page main.main h1 {
    font-size: clamp(30px, 5vw, 50px); 
    font-weight: 900;
}

h1 span {
    font-weight: bold;
    font-size: 48px;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #070707de;
    padding: 10px;
    text-align: center;
    font-size: 9px;
    border-top: 1px solid #000000;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

.contact-section {
    max-width: 500px;
    width: auto;
    padding-bottom: 0px;
    margin: 0 auto; /* Centra el elemento horizontalmente */
    text-align: center; /* Centra el contenido dentro del elemento */
}

.container-C {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    margin: 20px;
}

.contact-card:hover {
    transform: scale(1.05); /* Aumenta el tamaño en un 5% */
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.whatsapp {
    color: #25D366;
}

.phone {
    color: #007bff;
}

.email {
    color: #e74c3c;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #2c3e50;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.facebook { color: #1877f2; }
.instagram { color: #e4405f; }
.spotify { color: #1db954; }
.youtube { color: #ff0000; }

.contact-icon {
    transition: transform 0.3s;
}

.contact-icon:hover {
    transform: scale(1.2);
}

.newsletter {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px;
}

.newsletter input {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    width: 300px;
    margin: 20px 0;
    font-size: 1rem;
}

.newsletter button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #34495e;
}

.nav-link {
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.nav-link::after,
.nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #21A1FF;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-out;
}

.nav-link:hover::after,
.nav-link:hover::before {
    transform: scaleX(1);
}

/* Media Queries para móviles (basado en stylesm.css) */
@media (max-width: 768px) {
    /* Ajustar el header para que tenga una altura mínima y encierre el botón hamburguesa */
    .header {
        background: rgba(0, 0, 0, 0.8);
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                          linear-gradient(90deg, #21A1FF, #FF009E, #21A1FF);
        background-size: 100% 100%, 200% 2px; /* La segunda capa es el doble de ancha para el efecto */
        background-position: 0 0, 0% 100%;
        background-repeat: no-repeat;
        min-height: 36px; /* Altura mínima para asegurar que el fondo y el degradado sean visibles */
        padding: 10px 20px; /* Ajustar el padding para que el botón hamburguesa tenga espacio */
        display: flex;
        align-items: center;
    }

    /* Mostrar el botón hamburguesa en móviles */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1100;
        position: relative; /* Cambiar a position: relative para que contribuya a la altura del header */
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: white;
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    /* Convertir el navbar en un menú lateral */
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        transform: translateY(-5%);
    }

    .nav ul li a {
        text-decoration: none;
        color: white;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .nav.open {
        left: 0;
    }

    /* Ajustar el menú a una columna */
    .nav ul {
        flex-direction: column;
    }

    .nav ul li {
        margin: 10px 0;
    }

    /* Ajustar los íconos sociales */
    .social-icons {
        margin-top: 20px;
    }

    /* Ajustar el main para que el contenido comience desde arriba */
    .main {
        min-height: calc(100vh - 36px); /* Restar la altura del header */
        justify-content: flex-start; /* Comenzar desde arriba */
        padding-top: 46px; /* Espacio para el header (36px) más un margen de 10px */
    }

    /* Reducir el margin-top del logo-container para evitar que se desplace demasiado */
    .logo-container {
    margin-top: 40%;
    }

    /* Ajustar el content-container para que no se desborde y deje espacio al header */
    .content-container {
        min-width: auto;
        margin: 1px;
        text-align: center;
        padding: 20px;
        padding-top: 0px; /* Espacio para el header (36px) más un margen de 10px */
        min-height: calc(100vh - 36px); /* Asegurar que no se desborde hacia arriba */
        height: auto; /* Permitir que crezca hacia abajo si es necesario */
        box-sizing: border-box;
    }

    .logcenter {

        display: block;
        position: fixed;
        
        top: 5px;
        left: 93%; 
        transform: translateX(-50%); 
        height: 10px;
        width: auto; 
    
    }
    
    .logcenter img {
        height: 25px;
    }
    
    

}

/* Clases exclusivas de stylesm.css */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grid-item:hover {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.t1 {

    font-size: 25px;
    text-align: center;
    font-family: "Big Shoulders Stencil", sans-serif;

}

@media (max-width: 768px) {
    .container-C {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        margin-bottom: 20px;
      
    }
}