*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    height: 100vh;
    background: #E1E1E1;
}


header{
    position: relative;
}

.navbar{
    background: #E9E9E9;
    width: 100%;
    height: 124px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 15px 0 #0009;
    margin-bottom: 100px;
}

.navbar .logo{
    width: 12rem;
    height: auto;
    max-width: 100%;
    margin-left: 2rem;
}


.navbar_items{
    list-style: none;
    display: flex;
    gap: 3rem;

}

.navbar_items a{
    text-decoration: none;
    color: #000;
    font-size: 1.25rem;
}

.navbar_items a:hover{
    color: #C75500;
    font-weight: bolder;
}


.toggle_btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.cta_btn{
    background-color: #fff;
    color: #C75500;
    text-decoration: none;
    font-weight: bolder;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 1.25rem;
    cursor: pointer;
    margin-right: 3rem;
    max-width: 272px;
    width: 100%;
    text-align: center;
}

.cta_btn:hover{
    scale: 1.02;
    background-color: #C75500;
    color:#fff;
}

/* DROPDOWN MENU */

.dropdown_menu{
    display: none;
    position: absolute;
    right: 2rem;
    height: 0;
    top: 110px;
    width: 300px;
    background: hsla(0, 0%, 91%, 0.568);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

.dropdown_menu.open{
    height: 240px;
}

.dropdown_menu li{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .cta_btn{
    display: block;
    margin: 0 auto;
    background: #c75600;
    color: #fff;
}

/* RESPONSIVE DESIGN */

@media (max-width:992px){
    .navbar_items,
    .cta_btn{
        display: none;
    }

    .dropdown_menu a{
        text-decoration: none;
        color: #000;
        font-size: 1rem;
    }

    .dropdown_menu a:hover{
        color: #C75500;
        font-weight: bolder;
    }

    .navbar{
        padding-right: 20px;
    }

    .navbar .logo{
        width: 10rem;
    }

    .navbar .toggle_btn{
        display: block;
    }

    .dropdown_menu{
        display: block;
        z-index: 9999;
    }
    
}

@media (max-width:576px){
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}


/* CAROUSEL */
.hero_carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* margin: auto; */
    padding: 0 4rem;
}


.hero_track {
    display: flex;
    justify-content: start;
    transition: transform 0.6s ease-in-out;
    width:85%;
    gap: 4rem; /* separación entre slides */
    
}


.hero_card {
    flex: 0 0 100%;
    box-sizing: border-box;
    background-color: #fff;
    max-height: 550px;
    width: 100%;
    padding: 2rem 1rem;
    border-radius: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.336);
    transition: opacity 0.7s ease-in-out;
    margin: 2rem auto;  /* centrar */
}


.hero_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero_text {
    flex: 1 1 50%;
    padding: 2rem 3rem;
}

.hero_text h1 {
    font-size: 3.8rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 1.5rem;
    
}

.hero_text span {
    color: #C75500;
}

.hero_text p {
    font-size: 1.5rem;
    color: #4B4B4B;
    font-weight: 700;
    margin-bottom: 3rem;
}

.hero_text a{
    font-size: 1.5rem;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    display: inline-block; /* Necesario para aplicar padding y border */
    border: 2px solid #000;
    border-radius: 10px;
    background-color: transparent;
    padding: 0.75rem 3rem;
}

.hero_text a:hover{
    background-color: #000;
    color: #fff;
}


.hero_image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero_image img {
    max-width: 100%;
    height: auto;
    max-width: 470px;
    object-fit: cover;
}

.hero_image_end {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero_image_end img {
    width: 100%;
    margin-top: 40px;
    height: auto;
    max-width: 600px;
    object-fit: cover;
    border-radius: 15px;
}


.carousel_dots {
    text-align: center;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid black;
    border-radius: 50%;
    margin: 0 5px;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: black;
}


@media (max-width: 768px) {
    .hero_container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero_carousel {
        padding: 0 1rem;
    }

    .hero_track{
        flex-direction: row;
        width: 100%;
        gap: 1.5rem;
    }

    .hero_text,
    .hero_image,
    .hero_image_end {
        flex: 1 1 100%;
        padding: 1rem 0;
    }

    .hero_image img {
        max-width: 200px; /* más pequeño en móvil */
        width: 100%; 
        height: auto;
        object-fit: contain;
    }

    .hero_image_end img {
        max-width: 300px; /* más pequeño en móvil */
        width: 100%; 
        height: auto;
        object-fit: contain;
    }

    .hero_text h1 {
        font-size: 1.9rem;
    }

    .hero_text p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero_text a {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 0;
    }

    .hero_card {
        flex: 0 0 95%;
        width: 70%;
        max-width: 100%;
        padding: 1.5rem 1rem;
        margin: 1rem auto;
        height: auto; /* ✅ permite que crezca */
        box-sizing: border-box;

    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero_container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero_text,
    .hero_image,
    .hero_image_end {
        flex: 1 1 100%;
        padding: 2rem 0;
    }

    .hero_card {
        max-width: 95%;
        margin: 2rem auto;
        padding: 1rem 1rem;
        height: auto;
    }

    .hero_text h1 {
        font-size: 2.5rem;
    }

    .hero_text p {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero_image img{
        max-width: 200px;
    }

    .hero_image_end img{
        max-width: 300px;
    }

    .hero_text a {
        font-size: 1.1rem;
        padding: 0.7rem 2rem;
    }
}



/* DIV Tarjetas y llaveros inteligentes */

.container_info{
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 40px;

}

.container_info_img{
    display: flex;
    justify-content: center;
}

.container_info_img img{
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

.container_info_text{
    width: 100%;
    max-width: 600px;
    height: auto;
}

.container_info_text h4{
    font-size: 2.8rem;
    color: #000;
}

.container_info_text span{
    color: #C75500;
}

.container_info_text p{
    padding-top: 30px;
    font-size: 1.5rem;
    color: #000;
    font-weight: 500;
}

/* RESPONSIVE DESIGN */

@media (max-width:992px){
    .container_info_text{
        text-align: center;
    }

    .container_info_text h4{
        font-size: 1.5rem;
    }

    .container_info_text p{
        font-size: 1rem;
    }

}

/* BENEFICIOS CONTAINER CARDS */

.beneficios_cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
}

.card_beneficios{
    background: #fff;
    padding: 1.5rem;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.336);
    width: 317px;
    height: auto;
    max-height: 360px;
    flex-wrap: wrap;
}

.card_beneficios i{
    padding: 1rem 0.8rem;
    font-size: 2rem;
    color: #C75500;
}

.card_beneficios p{
    padding: 1rem 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #4B4B4B;
}

.card_beneficios span{
    color: #C75500;
}

/* RESPONSIVE DESIGN */

@media (max-width:576px){
    .card_beneficios p{
        font-size: 1.4rem;
    }

}

/* BANNER CTA  */

.banner{
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner_container{
    padding: 2rem 1rem;
    width: 100%;
}

.banner_container h4{
    font-size: 2rem;
    color: #C75500;
}

.banner_container a{
    margin: 1.5rem;
    font-size: 1rem;
    color: #000;
    font-weight: 700;
    text-decoration: none;
    display: inline-block; /* Necesario para aplicar padding y border */
    border: 2px solid #000;
    border-radius: 10px;
    background-color: transparent;
    padding: 0.75rem 3rem;
    margin-bottom: 5rem;
}

.banner_container a:hover{
    background-color: #000;
    color: #fff;
}

@media (max-width:992px){
    .banner_container h4{
        font-size: 1.4rem;
        
    }

}


/* Aplicaciones de Tapp Cards */

.applications{
    margin-bottom: 4rem;
}

.applications_container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem; /* espacio entre columnas */
    flex-wrap: wrap;/* se acomode en pantallas pequeñas */
}

.applications_content{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.applications_content h4{
    color: #000;
    font-size: 2.8rem;
    padding-bottom: 1rem;
}

.applications_content span{
    color: #C75500;
}

.applications_card{
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #C75500;
    border-radius: 15px;
    padding: 1rem 3rem;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.425);
    transition: all 0.3s ease;
}

.applications_card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.applications_card i{
    font-size: 1.5rem;
}

.applications_card p{
    font-size: 1.3rem;
    font-weight: 600;
}

.applications_card_img img {
    width: 100%;
    display: inline-block;
    height: auto;
    text-align:right;
    mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 15%,
    black 20%,
    black 80%,
    rgba(0, 0, 0, 0.1) 85%,
    transparent 100%
    );
    -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.8) 10%,
    black 20%,
    black 80%,
    rgba(0, 0, 0, 0.9) 90%,
    transparent 100%
    );

}

@media screen and (max-width: 768px) {
    .applications_card_img{
        margin: 0;
        padding: 0;
    }
}


/* CARDS FRASES, INFO DE TAPP CARDS CON IMG */

.container_frases_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}


.frases_info_card1{
    flex: 1 1 50%;
    max-width: 550px;
    height: 100%;
    background-color: #000;
    border-radius: 30px;
    padding: 2rem 3rem 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.frases_info_card1_title h5 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

.frases_info_card1_title span,
.frases_info_card1_p span {
    color: #C75500;
}

.frases_info_card1_content{
    display: flex;
    gap: 1rem;
}

.frases_info_card1_p{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.2rem;
    color: #fff;
}

.frases_info_card1_img img{
    max-width: 250px;
    height: auto;
}


.frases_info_card2{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    
    
}

.frases_info_card{
    background-color: #ffffff;
    color: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    max-height: 250px;
    height: 100%;
    width: 100%;
    flex: 1 1 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    margin-bottom: 0;
    padding-bottom: 0;
    
}

.frases_info_card img{
    max-width: 100%;
    max-height: 180px;
    

    
}

.frases_info_card h5{
    font-size: 1.8rem;
    color: #000;
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 768px) {
    .frases_info_card1 {
        padding: 2rem 1.2rem 1rem 1.2rem;
        max-width: 100%;
    }

    .frases_info_card1_title h5 {
        font-size: 1.8rem;
        text-align: center;
    }

    .frases_info_card1_content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .frases_info_card1_img img {
        max-width: 180px;
        width: 100%;
        height: auto;
    }

    .frases_info_card1_p {
        font-size: 1rem;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .frases_info_card2 {
        flex-direction: column;
        align-items: center;
    }

    .frases_info_card {
        width: 90%;
        padding: 1rem;
    }

    .frases_info_card h5 {
        font-size: 1.65rem;
        margin-bottom: 30px;
    }

    .frases_info_card img {
        max-height: none; /* 🔥 quita el límite */
        width: 100%;       /* ocupa todo el ancho disponible */
        height: auto;
        object-fit: contain;
    }
    
}



/* CIRCLE ICONS */

.circle_icons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.icon_circle{
    width: 85px;
    height: 85px;
    background-color: #C75500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon_circle:hover{
    background-color: #000;
    transform: scale(1.05);
}

.icon_circle i{
    font-size: 1.6rem;
    color: #fff;
    transition: color 0.3s ease;
}

.icon_circle i:hover{
    color:#C75500;
    
}

.circle_icons_text {
    display: flex;
    flex-direction: column; /* Acomoda verticalmente ícono + texto */
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 110px; /* O el ancho que quieras para que todos ocupen lo mismo */
}

.circle_icons_text p{
    margin-top: 10px;
    min-height: 40px; 
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}


/* CÓMO FUNCIONA TAPP CARDS */
.disenalo{
    margin-top: 5rem;
    padding: 2rem 0;
    margin-bottom: 6rem;
}

.disenalo h3{
    color: #000;
    text-align: end;
    margin:  0 20% 0 0;
    font-size: 1.8rem;
}

.grid_container {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Sistema de 12 columnas */
    gap: 1rem;
    max-width: 1100px;
    height: 400px;
    margin: 0 auto;
    padding: 2rem;
}

.card_blanca, .card_naranja{
    padding: 1.5rem;
    border-radius: 15px;
    color: #fff;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    
}

.img_wrapper {
    width: 30%;
    height: auto;
    flex-shrink: 0;
}

.img_wrapper img{
    max-width:150px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card_blanca_text h4{
    color: #C75500;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
}

.card_blanca_text p{
    color: #000;
    font-size: 1.2rem;
    padding: 15px 10px;
    line-height: 1.2;
    margin-left: 10px;
}

.card_naranja_text h4{
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
}

.card_naranja_text p{
    color: #fff;
    font-size: 1.2rem;
    padding-top: 15px;

}

.img_wrapper_naranja {
    width: 100px; 
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_wrapper_naranja img {
    width: 100%;
    height: auto;
}


/* Tarjetas blancas más anchas */
.wide {
    grid-column: span 7; /* Ocupa 7 de las 12 columnas */
    background-color: #fff;
    color: #000;
}

/* Tarjetas naranjas más estrechas */
.narrow {
    grid-column: span 5; /* Ocupa 5 de las 12 columnas */
    background-color: #C75500;
    color: #fff;
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 768px) {
    .grid_container {
        grid-template-columns: 1fr; /* Una columna */
        height: auto;
        padding: 1rem;
        margin-bottom: 0; 
        padding-bottom: 0;
    }

    .disenalo h3{
        text-align: center;
        margin: 10px 0;
        font-size: 2rem;
    }

    .wide,
    .narrow {
        grid-column: span 12; /* Ocupan toda la fila */
    }

    .card_blanca,
    .card_naranja {
        flex-direction: column; /* Imagen arriba, texto abajo */
        align-items: center;
        text-align: center;
    }

    .img_wrapper,
    .img_wrapper_naranja {
        width: 100px; /* Imagen más pequeña en móviles */
        margin-bottom: 1rem;
    }

    .card_blanca_text p,
    .card_naranja_text p {
        padding: 10px;
        font-size: 1rem;
    }

    .card_blanca_text h4,
    .card_naranja_text h4 {
        font-size: 1.3rem;

    }
}


/* PRECIOS TAPP CARDS */

/* .precios{
    background: linear-gradient(#C75500, #000);
} */

.precios{
    padding: 4rem 20px;
    background: linear-gradient(#C75500, #000);
}

.precios h2{
    color: #fff;
    text-align: start;
    margin:  2rem 0 0 10%;
    font-size: 2.5rem;
}

.container_precios{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 40px 0;
}

.card_precio{
    background: #fff;
    padding: 1rem;
    border-radius: 30px;
    height: auto;
    max-height: 360px;
    width: 250px;
    flex-wrap: wrap;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.336);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card_precio:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 25px rgba(199, 86, 0, 0.582)
}

.text_precio{
    color: #000;
    font-weight: bolder;
    font-size: 2rem;
    padding: 30px 0 0 0;
}

.text_tiempo{
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    padding-top: 8px;
}

.card_precio a{
    color: #fff;
    background: #C75500;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border-radius: 10px;
    padding: 0.6rem 3.5rem;
    margin: 2rem 0 2rem 0;  
    transition: 0.4s;
}

.card_precio a:hover{
    transform: translateY(-6px);
    
}

/* RESPONSIVE DESIGN */

@media screen and (max-width: 768px) {
    .precios h2{
        text-align: center;
        margin: 0;
    }
}



/* PREGUNTAS FRECUENTES */

.faq{
    background-color: #000000;
    padding: 2rem 0;
    padding-bottom: 3rem;
}

.faq h3{
    color: #fff;
    font-size: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    
}

.faq_div{
    max-width: 65%;
    margin: 10px auto;

}

.accordion{
    color: #fff;
    cursor: pointer;
    background-color: #000;
    font-size: 1.2rem;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
}

.accordion i{
    font-size: 1.3rem;
}

.active, .accordion:hover{
    background-color: #0f0f0f;
}

.answer{
    padding: 1rem 2rem 2.5rem 2rem;
    background-color: #000;
    overflow: hidden;
    display: none;

}

.answer p{
    color: #E1E1E1;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq_div{
    border-bottom: 2px solid rgba(255, 255, 255, 0.603);
}

.faq_div.active{
    border: none;
}

/* RESPONSIVE DESIGN  */
@media (max-width: 768px) {

    .faq h3{
    font-size: 1.6rem;
    }

    .accordion{
        text-align: start;
        font-size: 1.1rem;
    }

    .faq_div{
        max-width: 85%;
    }

    .answer p{
        font-size: 1.1rem;
    }
}

/* div Marquee */

.marquee {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex; /* Importante: duplicación horizontal */
    animation: scroll-left 7s linear infinite;
}

.marquee-content span {
    font-size: 2.8rem;
    font-weight: bolder;
    font-style: italic;
    color: #000;
    padding-right: 4rem; /* Espacio entre las repeticiones */
}
    
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE DESIGN  */
@media (max-width: 768px) {

    .marquee-content span{
    font-size: 2.2rem;
    }
}


.last_banner{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000;
    padding: 3rem 0;
}

.last_banner_container{
    width: 100%;
}

.last_banner_container h4{
    font-size: 1.8rem;
    color: #fff;
}

.last_banner_container a{
    margin: 1.8rem 0;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    display: inline-block; /* Necesario para aplicar padding y border */
    background-color: #C75500;
    border-radius: 10px;
    padding: 0.75rem 3rem;
    margin-bottom: 1rem;
    transition: 0.4s;
}

.last_banner_container a:hover{
    background-color: #fff;
    color: #C75500;
    font-size: 1.5rem;
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){
    .last_banner_container h4{
        font-size: 1.4rem; 
    }

    .last_banner_container a{
        font-size: 1.3rem;
    }

    .last_banner_container a:hover{
        font-size: 1.4rem;
    }

}


/* CONTACTEMOS  */

.contacto{
    background-color: #000;
    padding-bottom: 1rem;
    padding-top: 20px;

}

form{
    background: #1E1E1E;
    padding: 30px 30px;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 0 20px #fff2;
    font-size: 16px;
    margin-bottom: 40px;
    border-radius: 15px;   
    box-sizing: border-box;
    border: black;
}

.form_input{
    margin-bottom: 15px;
    border: none;
}

fieldset{
    border:none;
    padding: 0 5px 20px 5px;
    margin: 20px;
    

}

label{
    color: #fff;
    font-size: 0.9rem;
    padding-left: 10px;
    line-height: 2;
}

input, textarea{
    width: 100%;
    box-sizing: border-box;
    padding: 10px 8px;
    border: 1px solid #AEAEAE;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
}

textarea{
    resize: vertical;
    min-height: 102px;
    min-width: 100%;
}

input:focus,
textarea:focus {
    border-color: #AEAEAE; /* deja el borde gris*/
    outline: none;             /* elimina el contorno */
    box-shadow: none;          /* elimina sombras si las hubiera */
}

.btn_enviar {
    display: flex;
    justify-content: flex-end; 
    
}

.btn{
    background-color: #fff;
    color: #000;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 5px;
    border: transparent;
    text-align: center;
    font-size: 0.9rem;
    transition: 0.4s;
    margin: 0 30px;
    cursor: pointer;
}

.btn:hover{
    color: #C75500;
    font-size: 1rem;
}

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    form {
        width: 90%;
        max-width: 100%;
        padding: 30px;
        margin: auto;
        border: none;
    }

    input, textarea {
        width: 100%;
        font-size: 0.7rem;
    }

    fieldset{
    border: none;
    padding: 0 5px 10px 5px;
    margin: 5px;
    }
}

/* FOOTER */

footer{
    background: #000;
    padding: 10px 0;
    border: transparent;
    padding: 2rem 0 0 0;
}

.icons_social_media{
    display: flex;
    color: #C75500;
    gap: 15px;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 0 20px;

}
.icons_social_media a{
    color: #C75500;
    padding-bottom: 2rem;
}

.icons_social_media i {
    transition: all 0.3s ease;
}

.fa-whatsapp:hover, .fa-instagram:hover, .fa-tiktok:hover, .fa-envelope:hover{
    color: #fff;
    transform: translateY(-6px);
}

.footer_text{
    padding-bottom: 20px;
}

.footer_text a{
    text-decoration: none;
    text-align: center;
    color: #fff;
}

/* BOTÓN DE WHATSAPP */

.whatsapp-btn{
    position: fixed; 
    bottom: 1.25rem;
    right: 1.25rem;
    background-color: #25d366;
    color: white;
    border-radius: 30%;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    width: 55px;
    height: 60px;
    margin-right: 5px;
}

.whatsapp-btn a{
    color: white;
    font-size: 2.5rem;
}

.whatsapp-btn:hover {
    background-color: #02f75e;
} 


