/*
Theme Name: Metromuv
Text Domain: metromuv
Version: 1.0
Requires PHP: 5.2.4
Description: Plantilla para Metromuv
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: Inbrax Chile
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    font-family: "Poppins", sans-serif !important;
	box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* a:link, a:visited, a:active {
    text-decoration:none;
} */


.navbar {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;

}

.navbar .logo {
    width: 70%;
    height: 20%;
}

.navbar .logo img {
    width: 100%;
    height: 100%;
}

.nav-item .nav-link {
    color: black;
    font-size: 16px;
    width: 100%;
    text-align: left;
}

.nav-item .nav-link:hover {
    color: #FF0051 !important;
}

.nav-item .nav-link.active {
    color: #FF0051;
}

.navbar .nav-item .btn-nav {
    padding: 10px 20px;
    border: 1px solid #FF0051;
    background-color: #FF0051;
    color: #fff !important;
    border-radius: 20px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}
.navbar .nav-item .btn-nav:hover {
    padding: 10px 20px;
    background-color: #fff;
    color: #FF0051!important;
    border: 1px solid #FF0051;
}
/*------------------ TABLAS---------------------*/
.mi-tabla {
  border-collapse: collapse;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

/* Títulos de las columnas */
.mi-tabla th {
  background-color: #FF0051;
  color: #ffffff;
  padding: 12px;
  border: 1px solid #dbe7fb;
  text-align: center; /* 👈 centra solo los encabezados */
}

/* Celdas generales */
.mi-tabla td {
  padding: 12px;
  border: 1px solid #e6eef8;
  text-align: left; /* 👈 por defecto, todo el contenido a la izquierda */
}

/* Solo la columna de descarga */
.mi-tabla td:nth-child(2) {
  text-align: center; /* 👈 centra los íconos 📥 */
}

/* Colores alternos de fila */
.mi-tabla tbody tr:nth-child(odd) {
  background-color: #FFE0EB;
}
.mi-tabla tbody tr:nth-child(even) {
  background-color: #ffffff;
}



/*------------------ DOC---------------------*/

.doc-item {
    display: inline-block;   /* se ajusta al contenido */
    text-align: left;
}

.doc-link {
    display: block;
    color: #FF0051;           /* rosado */
    text-decoration: underline;
    margin-top: 0.25rem;      /* separación del nombre */
	 font-weight: 600;
}
.doc-link:hover {
    color: #c2185b;
    text-decoration: none;
}
/*------------------- BANNER HOME------------------- */

.banner-home {
    background-image: url('assets/img/Bannerhome.png');
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-home .text-banner {
    color: #fff;
    margin: 0 auto;
    line-height: 5rem;
    font-size: 54px;
}

.banner-home .btn-donw {

    background-color: #FF0051;
    color: #fff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* box-shadow: 0px 3px 15px rgba(0,0,0,0.2); */
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.banner-home .btn-donw:hover {
    background-color: #FF0051;
    color: #fff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 20px;
    transform: translateX(-5%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.banner-home .img-banner {
    width: 59%;
    height: 100%;
    max-width: 90%;
}

/* section bg pink carousel */

.bg-pink {
    background-image: url("assets/img/fondo.png");
    background-color: #FF0051;
    background-repeat: no-repeat;
    background-size: 100%;
    color: #fff;
    padding: 40px 0px;
}


/* texto con sombreado en pink */
.pink {
    color: #fff;
    background-color: #FF0051;
    padding: 0px 20px;
    line-height: 3rem;
    /* border-radius: 25px; */
    /* font-size: 34px; */
}


/* Slider  Card*/
.card {
    width: 96% !important;
    border-radius: 25px;
    border: none;
    margin: 10px;

}

.card-header {
    border: 0px;
    padding: 15px 25px
}

.card-body {
    padding: 0px;
    border: none;
}

.img-card {
    border-radius: 25px;
    width: 100%;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li.slick-active button::before {
    opacity: .75;
    color: rgb(255, 255, 255);
}

.slick-dots li button::before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: rgb(224, 224, 224);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#descarga {
    color: #212427;

}

#descarga .icon-descarga {
    width: 80%;
    border-radius: 15px;
    height: auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s ease-in-out
}

#descarga .icon-descarga:hover {
    border-radius: 15px;
    text-decoration: none;
    transform: translateY(-2%);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 25px;
    height: auto;
}

/*  */
.secc-grey {
    background-color: #F4F4F4;
}

.circle-pink {
    position: relative;
    background-color: #FF0051;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

.color-pink {
    color: #FF0051;
}


.icon-descarga {
    width: 80%;
    height: auto;
}

/* ---------------ANIMATION----------------- */

.animation-element {
    opacity: 0;
    position: relative;
  }
  /*animation element sliding left*/
  
  .animation-element.slide-left {
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    -moz-transform: translate3d(-100px, 0px, 0px);
    -webkit-transform: translate3d(-100px, 0px, 0px);
    -o-transform: translate(-100px, 0px);
    -ms-transform: translate(-100px, 0px);
    transform: translate3d(-100px, 0px, 0px);
  }
  
  .animation-element.slide-right {
    opacity: 0;
    -moz-transition: all 500ms linear;
    -webkit-transition: all 500ms linear;
    -o-transition: all 500ms linear;
    transition: all 500ms linear;
    -moz-transform: translate3d(100px, 0px, 0px);
    -webkit-transform: translate3d(100px, 0px, 0px);
    -o-transform: translate(100px, 0px);
    -ms-transform: translate(100px, 0px);
    transform: translate3d(100px, 0px, 0px);
  }
  .animation-element.slide-left.in-view, .animation-element.slide-right.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
  
  


/*--------------- FOOTER------------------------ */

footer {
    background-color: #FF0051;
    color: #fff;
    padding: 60px 0px 40px 0px;
}

footer .item-footer {
    list-style: none;
    padding: 0;
    font-weight: light;
}

footer .icon-footer {
    max-width: 100%;
    width: 50%;
    height: auto;
    margin-bottom: 15px;
}

footer .item-footer li {
    padding: 5px 0px
}

footer .item-footer li a,
footer .link {
    color: #fff;

}


/* ---------------------------------PAGE FAQ----------------------------------------------------------------------------------- */
.bg-pink .title-pink{
    padding: 28px;
}

/* ------------------FAQ ---------------*/

/* -----tab nav lateral----- */

.NavFaq{
    display: flex;   
}

.nav-faq{
   display: flex;
   flex-direction: column;
   box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
   margin: 10px 20px;
   padding: 20px 35px;
   width: 20%;
   background-color: #ffffff;
}

.tab-content {
    padding:0px; 
}

/* Preguntas Frecuentres */

.dropdown-faq {
    border-radius: 0px;
    width: 100%;
    height: auto;
    padding: 10px
}


.dropdown-faq .faq {
    padding: 25px;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
    border-radius: 0px;
    transition: all .4s ease;
    margin-bottom: 18px;
}


.dropdown-faq .faq .faq-title {
    margin: 0 35px 0 0;
    color: #000;
    font-weight: 600;
}


.dropdown-faq .faq .faq-text {
    display: none;
    padding: 10px 25px 10px 3px;
}

.faq.active .faq-text {
    display: block;
}

.dropdown-faq .faq .faq-toggle {
    background-color: transparent;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 20px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.dropdown-faq .faq .faq-toggle .chevron,
.close {
    width: 17px;
    height: 17px;
}
.chevron, .close{
    fill: #FF0051;
}

.dropdown-faq .faq .faq-toggle .close {
    display: none;
    color: #FF0051;
}

.faq.active .faq-toggle .close {
    display: block;
    color: #FF0051;
}

.faq.active .faq-toggle .chevron {
    display: none;
}

.metromuv-wpcf7 {
    width: 70%;
}

.metromuv-wpcf7 .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #F4F4F4;
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid #FF0051;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.metromuv-wpcf7 .btn-form{
    background-color: #FF0051;
    color: #fff;
    border: 1px solid #FF0051;
    border-radius: 25px;
    transition: all .4s ease-in-out;
}

.metromuv-wpcf7 .btn-form:hover{
    background-color: #fff;
    color: #FF0051;
    border: 1px solid #FF0051;
}

.metromuv-wpcf7 span.wpcf7-not-valid-tip {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
}

.metromuv-wpcf7 div[data-id="group-987"],
.metromuv-wpcf7 div[data-id="group-817"] {
    display: none !important;
}

/*---------------- formulario----------------- */
.title-form{
    font-size: 42px;
}
.wpcf7-form {
    width: 450px;
}

.wpcf7-form ::placeholder {
    color: #b0b0b0;
  }

.wpcf7-form .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #F4F4F4;
    background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid #FF0051;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.wpcf7-form .form-select option{
    background-color: #F4F4F4;
    padding: 10px;
    border:  1px solid #FF0051;
}
.wpcf7-form .form-select:focus {
    border-color: #FF0051;
    outline: 0;
    box-shadow: 0 0 0 .02rem hwb(311 5% 1% / 0.25);
  }
  .wpcf7-form .mensaje{
    height: 100px;
  }
  .wpcf7-form label{
    display: inherit;
  }
.wpcf7-form .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color:#F4F4F4;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #FF0051;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.wpcf7-form .form-control:focus {
    color: var(--bs-body-color);
    background-color: #F4F4F4;
    border-color: #FF0051;
    outline: 0;
    box-shadow: 0 0 0 .02rem rgba(13,110,253,.25);
  }

 .wpcf7-form .btn-form{
    background-color: #FF0051;
    color: #fff;
    border: 1px solid #FF0051;
    border-radius: 25px;
    transition: all .4s ease-in-out;
  }

.wpcf7-form .btn-form:hover{
    background-color: #fff;
    color: #FF0051;
    border: 1px solid #FF0051;
}

/* ----------------------MEDIA QUERYS------------------- */

@media all and (max-width: 1194px) {

    .nav-faq{
        justify-content: center;
     }

    .navbar .nav-item .nav-link, .navbar .nav-item .btn-nav{
        font-size: 14px;
    }
    .secc-grey .circle-pink{
        width: 400px;
        height: 400px;
    }
    .secc-grey .circle-pink .img-circle{
        width: 100%;
        height: 100%;
    }
    .wpcf7-form{
        width: 320px;
    }
    .title-form{
        font-size: 34px;
    }
}


@media all and (max-width: 991px) {
    .navbar{
        height: auto;
        text-align: center;
    }

    .navbar .nav-item
    .banner-home .img-banner {
        width: 83%;
    }
     .navbar .nav-item .btn-nav{
        width: 200px;
        padding: 8px 20px;
        margin: 0 auto;
    }
    #descarga .reverse{
        display: flex;
        align-items: center;
    }
    .wpcf7-form{
        width: 320px;
        height: auto;
    }

    .secc-grey .circle-pink{
        width: 350px;
        height: 350px;
    }

    footer .icon-footer {
        width: 70%;
    }
}

@media all and (max-width: 768px) {

    .pink {
        font-size: 24px !important;
    }

    .dropdown-faq .faq{
        width: 640px;
    }

    .nav-faq{
        flex-direction: column;
        width: 100%;
        margin: 10px;
        justify-content: center;
     }

    .banner-home .text-banner {
        line-height: 4rem;
        font-size: 44px;
    }

    .banner-home .img-banner {
        width: 80%;
    }

    #descarga .reverse{
        flex-direction: column-reverse;
        justify-content: center;
    }
    #descarga .centered-xs{
        text-align: center;
    }
    #descarga .svg-icon{
        width: 110px;
    }

    .secc-grey{
        text-align: center;
        padding:35px 0px ;
    }

    .icon-descarga{
        width: 60%
    }

    .icon-descarga img{
        width: 100%;
    }

    
    footer {
        text-align: center;
        font-size: 15px;
    }

    footer .icon-footer {
        width: 140px;
    }

    footer .icon-descarga {
        width: 170px;
    }

    footer .footer-descrption {
        font-size: 12px;
    }

}

@media all and (max-width: 576px) {

    .dropdown-faq .faq{
        width: 340px;
    }

    .nav-faq{
        flex-direction: column;
        width: 100%;
     }

    .navbar .logo{
        width: 125px ;
    }
    .banner-home{
        height: 80vh ;
    }
    .banner-home .btn-donw {
        padding: 8px 40px;
    }
    .banner-home .btn-donw:hover{
        padding: 8px 40px;
    }
    .banner-home .img-banner {
        width: 60%;
        margin-top: 30px;
    }
    .secc-grey .circle-pink{
        width: 300px;
        height: 300px;
    }
    .center-xs{
        display: flex;
        justify-content: center;
    }

    .banner-home {
        text-align: center;
        height:700px;
    }

    #descarga{
        text-align: center;
    }
    #descarga .content-descarga{
        text-align: center;
    }
    #descarga .icon-descarga {
        width: 170px;
        height: 47px; 
        padding: 0px 5px;
    }
   
    .pink{
        line-height: 2.45rem;
    }
    /* form */
    .title-form{
        font-size: 24px;
    }
    .wpcf7-form .btn-form{
       text-align: center;
    }

}

@media all and (max-width: 376px) {

    .dropdown-faq .faq{
        width: 290px;
    }

    #descarga .icon-descarga{
        width: 135px;
    }
    .secc-grey .circle-pink{
        width: 300px;
        height: 300px;
    }
    .wpcf7-form{
        width: 100%;
        height: auto;
    }

    .nav-faq{
        margin: 10px;
        width: 100%;
     }
}

@media all and (max-width: 320px) {

    .dropdown-faq .faq{
        width: 240px;
    }

}