  /* TIPOGRAFIAS */
  @font-face {
    font-family: 'Futura';
    src: url('/assets/fonts/futura.ttf') format('truetype'); /* Asegura el formato */
}


.Futura{
    font-family: 'Futura';
}

  /* IMAGENES GENERALES */
.banner-d {
    display: block;
    width: 100%;
    height: auto;
  }

.tree{
    width: 70%;
}

.phone{
    width: 50%;
    height: auto;
}

  /* ALIENACION */
.flex-end{
    display: flex;
    align-items: flex-end;
    max-width: 100%;
    /* Permite que el texto se rompa en palabras largas si es necesario */
    word-wrap: break-word;   /* Soporte en navegadores antiguos */
    overflow-wrap: break-word; /* Propiedad moderna */
    white-space: normal; 
}

.flex-end3{
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex-start{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.grid-end{
    display: grid;
    justify-items: end;
}

.w-80{
    width: 90%;
}

  /* PADDING */
.pad1{
    padding: 20px;
}

.pad2{
    padding: 10px;
}


  /* MARGIN */
.m-top1{
    margin-top: 1.5rem;
}

.m-top2{
    margin-top: 0.9rem;
}

.m-top3{
    margin-top: 3rem;
}

.m-top4{
    margin-top: 0.5rem;
}
.margin-1{
    margin: 3rem;
}

.margin-2{
    margin: 3rem;
}
  /* COLORES DE LETRA */
.text-pink {
    color: #FF3375;
}

.text-blue {
    color: #003375;
}

.text-white {
    color: #fff;
}

  /* GROSOR DE LETRA */
.bolder {
    font-weight: bolder;
}

.bold {
    font-weight: bold;
}

.thin{
    font-weight: 300;
}

  /* TAMAÑO DE LETRA */
.fsize1 {
    font-size: xx-large;
}

.fsize2 {
    font-size: x-large;
}

.fsize3 {
    font-size: large;
}

.fsize4 {
    font-size: medium;
}

.fsize5 {
    font-size: small;
}

.fsize6 {
    font-size: smaller;
}

.fsize7 {
    font-size: smaller;
}

.fsize8 {
    font-size: xx-large;
}

.fsize9 {
    font-size: x-large;
}
.fsize10 {
    font-size: x-large;
}
.fsize11 {
    font-size: large;
}


  /* CAJAS DE TEXTO  */
.pink-box{
    background-color: #FF3375;
    padding: 10px 0px 10px 0px;
    border-radius: 15px;
}

.blue-box{
    background-color: #003375;
    padding: 10px 10px 10px 10px;
    border-radius: 15px;
}


  /* BOTONES  */
.btn-pink {
    background-color: #FF3375;
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 7px; 
    color: #fff;
    font-weight: bolder;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #fff;
    border: 2px solid #FF3375;
    border-radius: 25px;
    color: #FF3375;
    font-weight: bolder;
}

.btn-blue {
    background-color: #003375;
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 7px; 
    color: #fff;
    font-weight: bolder;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    background-color: #fff;
    border: 2px solid #003375;
    border-radius: 25px;
    color: #003375;
    font-weight: bolder;
}

  /* SECCION HUELLITAS */
.bg-blue{
    background-color: #022859;
    padding: 2rem;

}
.card-img1{
    width: 80%;
    height: auto;
}

.card-custome1{
    position: relative;
    background-color: transparent;
    border-color: transparent;
}

.card-custome2{
    position: relative;
    background-color: #fff;
    border-color: transparent;
    border-radius: 0%;
}

.card-icon {
    position: absolute;
    width: 15%;
    top: 10px;  
    left: 10px; 
    z-index: 2; 
  }

  .text-overlay {
    position: absolute;  
    top: 86px;
    left: 86px;
    width: 65%;
    height: 100%;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
  }

  .text-overlay2 {
    position: absolute;  
    top: 113px;
    left: 86px;
    width: 65%;
    height: 100%;
    z-index: 2; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
  }

  .circle{
    width: 30%;
  }

  /* SECCION ARBOLITO <3 */
.card-custome3{
    padding: 2rem;
    background-color: #fff;
    border-radius: 0%;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.tree {
    content: url('/assets/img/arbol-azul.svg');
    transition: 0.3s ease-in-out;
}

.tree:hover {
    content: url('/assets/img/arbol-rosa.svg');
}

 /* FOOTER */
 .footer{
    background-color: #003366;
    padding: 6rem;
 }
 .footer-2{
    background-color: #14416f;
    padding: 2rem 3rem 2rem 3rem;
 }

 /* CAROUSEL */

 .carousel-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .img-center {
        width: 50%;
        transition: transform 0.5s ease-in-out;
    }

    .img-side {
        width: 25%;
        opacity: 0.6;
        transition: transform 0.5s ease-in-out;
    }


/* VIDEOS */
.blue-box-videos {
    background-color: #003375;
    padding: 7px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 20px;
}


.blue-box-videos:hover {
    background-color: #FF3375;
}

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

.col-lg-6, .col-md-6, .col-sm-12 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-videos img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.margin-for-videos {
    margin-bottom: 15px;
    margin-top: 20px;
}

.video-wrapper {
    position: relative;
    width: 590px;
    height: 360px;
}

.youtube-iframe {
    width: 100%;
    height: 100%;
    pointer-events: none; 
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 73px; 
    max-height: 73px;
    width: auto;
    height: auto;
    cursor: pointer;
    z-index: 10;
    object-fit: contain;
}

/* FORMULARIO */

    .form-box {
        border-radius: 20px;
        background: white;
        padding: 40px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .input-custom {
        background-color: #f7f7f7;
        border: none;
        border-radius: 10px;
        padding: 15px;
        font-size: 16px;
        width: 100%;
        padding-right: 40px;
    }

    .input-custom:focus {
        box-shadow: none;
        outline: none;
    }

    .btn-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        font-size: 29px;
        border-radius: 2px;
    }

    .position-relative {
        position: relative;
    }

    .input-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
    }

    .btn-icon {
        width: 26px;
        height: 26px;
        margin-left: 5px;
        filter: invert(1); 
    }

    .btn-pink:hover .btn-icon {
        filter: invert(35%) sepia(94%) saturate(740%) hue-rotate(-15deg) brightness(99%) contrast(105%);
    }

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

/* COMENTARIOS */
.barras{
    width: 70%;
    height: auto;
}

.card-custome4{
    border-radius: 20px;
    background: white;
    padding: 80px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.mascotas{
	width: 60%;
    z-index: 3;
    height: auto;
    margin-bottom: -2.25rem;
}

.btn-w{
    width: 30%;
    height: auto;
}
.btn-w{
    width: 40%;
    height: auto;
}

/* BOTON WHATSAPP */

    .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }
        .whatsapp-float img {
            width: 60px;
            height: 60px;
        }