/* =========================================
   FIX PAGINA TUS VENTAS
========================================= */

/* espacio para el header fijo */
#dtr-main-content{
    padding-top:140px;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

/* seccion principal */
.contact-section{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 0 80px;
    background:#f5f5f5;
}

/* titulo */
.contact-heading{
    text-align:center;
    margin-bottom:40px;
}

.contact-heading h2{
    color:#00423f !important;
    font-size:clamp(2rem, 4vw, 3.2rem) !important;
    font-weight:900 !important;
    margin-bottom:10px !important;
    line-height:1.1;
}

.contact-heading p{
    color:#666 !important;
    font-size:1rem;
    margin:0 auto;
    text-align:center;
    max-width:600px;
}

/* card formulario */
.contact-card{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,66,63,0.10);
}

/* input */
.cf-field input{
    width:100%;
    border:none;
    border-bottom:2px solid #d9e5e4;
    padding:14px 4px;
    font-size:1rem;
    outline:none;
    background:transparent;
}

.cf-field input:focus{
    border-bottom-color:#00b5a8;
}

/* boton */
.cf-btn{
    width:100%;
    background:#00423f;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:14px;
    font-weight:700;
    margin-top:22px;
    transition:.25s;
}

.cf-btn:hover{
    background:#00b5a8;
}

/* footer */
#dtr-footer{
    background:#00423f !important;
    margin-top:auto;
    padding:0;
}

.footer-main{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:50px 0 30px;
}

.footer-contact{
    text-align:right;
}

.footer-contact p{
    color:#fff !important;
    margin:0;
    line-height:1.9;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.15);
    padding:18px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-copy,
.footer-links a{
    color:rgba(255,255,255,0.75) !important;
    font-size:.85rem;
}

/* =========================================
   FIX MENU MOBILE TUSVENTAS
========================================= */

.dtr-responsive-header{
    position:fixed !important;
    top:0;
    left:0;
    width:100%;
    z-index:99999 !important;
    background:#00423f !important;
}

/* contenedor menu */
.dtr-responsive-header-menu{
    position:absolute !important;
    top:100%;
    left:0;
    width:100%;

    background:#00423f !important;

    z-index:99998 !important;

    display:none;
}

/* UL */
.dtr-responsive-header-menu ul{
    margin:0 !important;
    padding:0 !important;
    list-style:none !important;
}

/* items */
.dtr-responsive-header-menu li{
    width:100%;
}

/* links */
.dtr-responsive-header-menu a{
    display:block;
    color:#fff !important;
    padding:16px 22px !important;
    text-decoration:none !important;
    font-size:1rem !important;
    border-bottom:1px solid rgba(255,255,255,0.08);
    background:#00423f;
}

.dtr-responsive-header-menu a:hover{
    background:rgba(255,255,255,0.08);
}

/* =========================================
   EL TEMPLATE AGREGA ESTAS CLASES
========================================= */

.dtr-responsive-header-menu.active,
.dtr-responsive-header-menu.open,
.dtr-responsive-header-menu.is-active{
    display:block !important;
}