@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
@import url(boton.css);

*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}



.parrow b{
    color:#05fd9e;
    animation: breathing 2s ease-in-out infinite !important;
}



@keyframes breathing {
        1%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(2);
            font-size: 24px;
            opacity: 1;
            color: #fd6005;
        }

        80% {
            opacity: 1;
            color: #9a05fd;
        }
    }



    @media(max-width:474px){
        
.parrow b{
    color:#05fd9e;
    animation: breathing 2s ease-in-out infinite !important;
}



@keyframes breathing {
        1%, 100% {
            transform: scale(1);
            opacity: 1;
        }
        50% {
            transform: scale(2);
            font-size: 12px;
            opacity: 1;
            color: #fd6005;
        }

        80% {
            opacity: 1;
            color: #9a05fd;
        }
    }

    }

nav {
    width: 100%;
    height: 10vh;
    position: fixed; /* Nav fijo */
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1000; /* Siempre encima */
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 0 20px;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Detrás de todos los elementos */
    opacity: 0.2; /* Ajusta la transparencia del video */
}

.dropdown {
    position: fixed; /* El menú hamburguesa también se queda fijo */
    top: 10vh; /* Debajo del nav */
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 999;
    transform: translateY(-500px);
    transition: transform 0.5s ease;
}

.dropdown .links a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background 0.3s;
}





.dropdown .links a:hover {
    background-color: #05fd9e;
}

#home .content{
    z-index: 10;
}

body{
    margin-top: 10vh;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
    scroll-snap-type: y mandatory;
}
.nav-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo{
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo img{
    width: 35px;
}

.logo span{
    color: #05fd9e;
    text-shadow: 0 0 10px #05fd9e;
}
.hamburg,
.cancel{
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    display: none;
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
}
.nav-container .links{
    display: flex;
}
.nav-container .links a{
    position: relative;
    font-size: 1.2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}
.nav-container .links a::before{
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #05fd9e;
    transition: 0.2s linear;
}
.nav-container .links a:hover::before{
    width: 100%;
}
.nav-container .links a:hover{
    color: #05fd9e;
}

.dropdown .links a:hover{
    background-color: #05fd9e;
}
section{
    position: relative;
    z-index: 1; /* Por encima del video */
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    scroll-snap-align: start; /* Ayuda al desplazamiento entre secciones */
    background: transparent; /* Permite ver el video de fondo */
}


.main-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.main-container .image{
    width: 500px;
    height: 80vh;
    overflow: hidden;
}
.main-container .image img{
    width: 100%;
}
.main-container .image:hover{
    animation: animate 1.5s ease-in-out infinite;
}
@keyframes animate {
    0%{
        scale: 1;
    }
    50%{
        scale: 1.05;
    }
    100%{
        scale: 1;
    }
}
.main-container .content{
    color: white;
    width: 40%;
    min-height: 100px;
}
.content h1{
    font-size: clamp(1rem, 1rem + 5vw, 1.8rem);
}
.content h1 span{
    color: #05fd9e;
    text-shadow: 0  0 10px #05fd9e;
}
.content .typewriter{
    font-size: clamp(1rem, 1rem + 5vw, 2.5rem);
    font-weight: 600;
}
.content .typewriter-text{
    color: #05fd9e;
    text-shadow: 0 0 10px #05fd9e;
}
.content p{
    font-size: clamp(0.4rem , 0.2rem + 9vw, 1rem);
    margin: 10px 0;
}
.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #05fd9e;
    border-radius: 50%;
    color: #05fd9e;
    margin: 5px 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}
.social-links i:hover{
    scale: 1.3;
    color: black;
    background-color: #05fd9e;
    filter: drop-shadow(0 0 10px #05fd9e);
}
.content button{
    width: 50%;
    height: 6vh;
    margin: 30px;
    background-color: #05fd9e;
    color: white;
    border: none;
    outline: none;
    font-size: 120%;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.2s linear;
}
.content button:hover{
    scale: 1.1;
    color: #05fd9e;
    border: 2px solid #05fd9e;
    background-color: transparent;
    font-weight: 700;
    box-shadow: 0 0 40px #05fd9e;
}

.coment-box{

    border: 1px;
    border-style: double;
    border-radius: 15px;
    height: 13rem;

}


@media (max-width:884px) {
    nav .logo{
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }
    .main-container {
        display: flex;
        flex-direction: column;
    }
    .nav-container .links{
        display: none;
    }
    .hamburg,
    .cancel{
        display: block;
    }
    .main-container .content{
        width: 80%;
    }
    .social-links i{
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
    .main-container .image{
        width: 50%;
        height: 60%;
    }
}
@media (max-width:440px){
    .coment-box{

        border: 1px;
        border-style: double;
        border-radius: 15px;
        height: 22rem;
    
    }
    
    .main-container .image{
        width: 70%;
        height: 60%;
        margin-top: -100px;
        margin-bottom: -200px;
    }
    .main-container .content{
        width: 70%;
    }

    .main-container button{
        margin-top: 15px;
    }
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  
  main {
    position: relative;
    width: 100%;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  }
  
  .item {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
  
    &:nth-child(1), &:nth-child(2) {
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      transform: none;
      border-radius: 0;
      box-shadow: none;
      opacity: 1;
    }
  
    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 220px); }
    &:nth-child(5) { left: calc(50% + 440px); }
    &:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
  }





  

.quince{
    background-image: url('IMG/quince.jpg')
}

.famili{
    background-image: url('IMG/eventofamiliar.jpg')
}

.weding{
    background-image: url('IMG/weding.jpg')
}

.empresarial{
    background-image: url('IMG/empresarial.jpg')
}

.Lika{
    align-items: center;
    
}



.loopa{
    width: 25rem;
    display: flex;
}


  
  .nac {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    user-select: none;
  
    & .btn {
      background-color: rgba(255,255,255,0.5);
      color: rgba(0,0,0,0.7);
      border: 2px solid rgba(0,0,0,0.6);
      margin: 0 0.25rem;
      padding: 0.75rem;
      border-radius: 50%;
      cursor: pointer;
  
      &:hover {
        background-color: rgba(255,255,255,0.3);
      }
    }
  }
  
  @media (width > 650px) and (width < 900px) {

    .hap{
        margin-left:8rem;
    }


    .loopa{
        width: 25rem;
        display: block !important;
    }

    .btn-18{
        margin-left: 0;
    }

    .live{
        display: none;
    }
    .carousel-content {
      & .title        { font-size: 1rem; }
      & .description  { font-size: 0.7rem; }
      & button        { font-size: 0.7rem; }
    }
    .item {
      width: 160px;
      height: 270px;
  
      &:nth-child(3) { left: 50%; }
      &:nth-child(4) { left: calc(50% + 170px); }
      &:nth-child(5) { left: calc(50% + 340px); }
      &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
    }
  }
  
  @media (width < 650px) {

    .hap{
        margin-left:8rem!important;
    }

    .btn-18{
        margin-top: 2rem;
        margin-left: 0;
    }

    .loopa{
        width: 25rem;
        display: block !important;
    }
    .live{
        display: none;
    }
    .carousel-content {
      & .title        { font-size: 0.9rem; }
      & .description  { font-size: 0.65rem; }
      & button        { font-size: 0.7rem; }
    }
    .item {
      width: 130px;
      height: 220px;
  
      &:nth-child(3) { left: 50%; }
      &:nth-child(4) { left: calc(50% + 140px); }
      &:nth-child(5) { left: calc(50% + 280px); }
      &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
    }
  }





  


  #countdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

#countdown {
    text-align: center;
}

#countdown h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#countdown #time {
    font-size: 1.5rem;
}

#countdown span {
    font-size: 2rem;
    color: #05fd9e;
}









.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-item {
    position: relative;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.carousel-text h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-text p {
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.carousel-text b {
    color: #05fd9e;
}


.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botones de navegación */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
    .carousel-text h2 {
        font-size: 1.5rem;
    }

    .carousel-text p {
        font-size: 0.9rem;
    }
}


/* Responsividad */
@media (max-width: 768px) {
    .carousel-btn {
        font-size: 1.5rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        font-size: 1rem;
        padding: 5px;
    }

    .carousel-item img {
        object-fit: cover;
    }
}
