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

@font-face{
    font-family: "Shine";
    src: url(./fonts/Shine-in-Valentine.ttf);
}

@font-face{
    font-family: "Saling";
    src: url(./fonts/Saling-Cinta.ttf);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.animar {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  .animar.visible {
    opacity: 1;
    transform: translateY(0);
  }







.container1{
    width: 100%;
    display: flex;
    justify-content: center;
}

.container1 img{
    width: 600px;
}




.section2{
    background-image: url(./images/BKG-03.jpg);
    background-position: center;
    background-size: cover;
    height: 100%;
}

.img-header{
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-header img{
    width: 1400px;
    margin: 30px 0;
}

.video-bautizo {
    width:80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }


.Text1 h1{
    font-family: shine;
    font-weight: lighter;
    text-align: center;
    font-size: 120px;
    color: #ed8ec0;
    padding: 150px 0 30px;
}

.Text1 p{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: center;
    color: #a55b85;
    font-size: 30px;
    padding: 20px 30%;
}



/*Sección 3*/

#countdown {
    display: flex;
    justify-content: center;
    font-family: "Saling", sans-serif;
    font-size: 150px;
    font-weight: 300;
    text-align: center;
    color: #a55b85;
    margin: 20px;
}

.text-time{
    padding: 10px 50px;
}


.Time{
    font-size: 90px;
    color: #a55b85;
}

.circle {
    width: 160px;
    height: 160px;
    background-color: #ed8ec0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    margin: 0 auto;
}



.agendar-btn{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 35px;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    background-color: #ed8ec0;
    display: block;
    margin: 50px auto;
    cursor: pointer;
}

.agendar-btn a{
    color: #FFFFFF;
    text-decoration: none;
}





.container2{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 80px 0;
    padding: 0 0 300px;
}

.container2 img{
    width: 400px;
}



.datos{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 60px;
}

.dato1{
    padding: 30px 30px;
    background-color: #ed8ec118;
    border-radius: 20px;
}

.dato1 img{
    width: 300px;
    margin: 0 60px;
}

h2{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 40px;
    text-align: center;
}

h3{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-align: center;
}

h4{
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 80px;
    text-align: center;
    color: #ed8ec0;
}

.btn-ubicacion{
    display: flex;
    justify-content: center;
}

.btn-ubicacion img{
    width: 500px;
    padding: 30px;
}






.photos{
    display: flex;
    justify-content: center;
}

.photos img{
    width: 1000px;
}





.section5 {
    background: #fff;
    font-family: 'Arial', sans-serif;
    margin: 170px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120vh;
    background-image: url('./images/BKG-02.jpg'); /* Opcional */
    background-size: cover;
    background-position: center;
  }

  .form-container {
    background-color: #ed8ec0;
    padding: 120px 30px;
    border-radius: 40px;
    width: 1200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: white;
  }

  .form-container h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    text-align: center;
    font-family: 'shine';
    font-weight: lighter;
    font-size: 60px;
    color: white;
    margin-bottom: 120px;
  }

  .form-container label {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
  }

  .form-container input,
  .form-container textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    font-size: 16px;
    padding: 8px 0;
    margin-bottom: 25px;
    outline: none;
  }

  .form-container input::placeholder,
  .form-container textarea::placeholder {
    color: rgba(255,255,255,0.6);
  }

  .form-container button {
    width: 60%;
    padding: 12px;
    background-color: white;
    color: #ed8ec0;
    border: none;
    border-radius: 15px;
    font-size: 22px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s;
  }

  .form-container button:hover {
    background-color: #f4f4f4;
  }

  .Text2 h1{
    font-family: shine;
    font-weight: lighter;
    text-align: center;
    font-size: 120px;
    color: #ed8ec0;
    padding: 180px 0 30px;
}





.section5 img{
    width: 60%;
}





@media (min-width: 991.98px) and (max-width: 1199.98px) {

    .form-container {
        background-color: #ed8ec0;
        padding: 120px 30px;
        border-radius: 40px;
        width: 80%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        color: white;
      }
}




  @media (max-width: 575.98px)and (orientation:portrait) {

    .container1 img{
        width: 100%;
        padding: 30px 0;
    }


    .section2{
        background-image: url(./images/BKG-02-mobile.jpg);
        background-position: center;
        background-size: cover;
        height: 100%;
    }

    .container2{
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 80px 0;
        padding: 0 0 150px;
    }

    .img-header img{
        width: 380px;
        margin: 30px 0;
    }

    .Text1 h1{
        font-size: 50px;
        color: #ed8ec0;
        padding: 40px 0 10px;
    }

    .Text1 p{
        color: #a55b85;
        font-size: 20px;
        padding: 20px 10%;
    }

    .video-bautizo {
        width:100%;
        height: auto;
        display: block;
        margin: 0 auto;
      }




    #countdown {  
        display: flex;
        flex-flow: row wrap;  
        font-size: 50px;
        font-weight: 300;
        text-align: center;
        color: #275DB8;
        margin: 20px;
    }
    
    .text-time{
        padding: 10px 25px;
    }
    
    
    .Time{
        font-size: 52px;
        color: black;
    }

    .circle {
        width: 80px;
        height: 80px;
        background-color: #ed8ec0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: white;
        margin: 0 auto;
    }

    .agendar-btn{
        font-size: 22px;
        color: #FFFFFF;
        padding: 10px 20px;
        border-radius: 30px;
        border: none;
        background-color: #ed8ec0;
        display: block;
        margin: 40px auto 10px;
        cursor: pointer;
    }

    .agendar-btn{
        transition: transform 0.6s ease-in-out;
    }

    .agendar-btn:hover{
        transform: scale(1.03);
    }



    .container2 img{
        width: 200px;
    }


    .dato1{
        padding: 30px 0px;
        background-color: #ed8ec118;
        border-radius: 80px;
    }

    .dato1 img{
        width: 300px;
        margin: 0 30px;
    }

    h2{
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-size: 25px;
        text-align: center;
    }
    
    h3{
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-size: 18px;
        text-align: center;
    }
    
    h4{
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-size: 50px;
        text-align: center;
    }

    .btn-ubicacion img{
        width: 350px;
        padding: 30px;
    }




    .photos img{
        width: 100%;
    }


    .form-container {
        background-color: #ed8ec0;
        padding: 100px 30px;
        border-radius: 40px;
        width: 90%;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        color: white;
      }

      .Text2 h1{
        font-size: 50px;
        color: #ed8ec0;
        padding: 50px 0 30px;
    }



    .section5 img{
        width: 90%;
        height: auto;
    }
    
  }