/*==========================================================
    METAL UTIEL
    CSS v2.0
==========================================================*/


/*==========================================================
    VARIABLES
==========================================================*/

:root{

    --primary:#0f172a;
    --secondary:#f97316;

    --dark:#111827;
    --light:#f8fafc;

    --text:#374151;

    --white:#ffffff;

    --border:#e5e7eb;

    --radius:18px;

    --shadow-sm:0 5px 18px rgba(0,0,0,.05);

    --shadow-md:0 12px 30px rgba(0,0,0,.08);

    --shadow-lg:0 18px 45px rgba(0,0,0,.15);

    --transition:.35s ease;

}



/*==========================================================
    RESET
==========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    scroll-padding-top:110px;

}

body{

    font-family:'Inter',sans-serif;

    color:var(--text);

    background:#fff;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

.section{

    padding:110px 0;

}

.bg-light{

    background:#f8fafc!important;

}



/*==========================================================
    TITULOS
==========================================================*/

.section-mini{

    color:var(--secondary);

    font-size:.9rem;

    letter-spacing:3px;

    font-weight:700;

    text-transform:uppercase;

}

.section-title{

    font-size:clamp(2rem,5vw,3rem);

    color:var(--primary);

    font-weight:800;

    margin-top:10px;

    margin-bottom:25px;

}



/*==========================================================
    NAVBAR
==========================================================*/

.navbar{

    background:#fff;

    padding:14px 0;

    transition:var(--transition);

    box-shadow:0 5px 25px rgba(0,0,0,.05);

    z-index:999;

}

.navbar.scrolled{

    padding:8px 0;

    box-shadow:0 12px 35px rgba(0,0,0,.10);

}

.logo-header{

    height:80px;

    transition:.35s;

}

.navbar.scrolled .logo-header{

    height:60px;

}

.navbar-nav{

    align-items:center;

}

.navbar-nav .nav-link{

    position:relative;

    color:var(--primary);

    font-weight:600;

    padding:12px 18px;

    margin-left:8px;

    border-radius:14px;

    transition:var(--transition);

}

.navbar-nav .nav-link::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(135deg,#f97316,#fb923c);

    transform:scaleX(0);

    transform-origin:left;

    border-radius:14px;

    transition:.35s;

    z-index:-1;

}

.navbar-nav .nav-link:hover{

    color:#fff;

    transform:translateY(-2px);

}

.navbar-nav .nav-link:hover::before{

    transform:scaleX(1);

}

.navbar-nav .active{

    background:var(--primary);

    color:#fff!important;

}



/*==========================================================
    BOTONES
==========================================================*/

.btn{

    border-radius:14px;

    padding:14px 34px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:var(--secondary);

    border:none;

}

.btn-primary:hover{

    background:#ea580c;

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(249,115,22,.35);

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    border:none;

    box-shadow:0 12px 30px rgba(37,211,102,.30);

}

.btn-whatsapp:hover{

    background:#1ebe5d;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(37,211,102,.45);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.7);

    color:#fff;

}

.btn-outline-light:hover{

    background:#fff;

    color:#111;

}



/*==========================================================
    TARJETAS GENERICAS
==========================================================*/

.card-modern{

    background:#fff;

    border:none;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card-modern:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

/*==========================================================
    HERO
==========================================================*/

.hero{

    position:relative;

    height:100vh;

    min-height:700px;

    display:flex;

    align-items:center;

    overflow:hidden;

    color:#fff;

    background:#000;

}

.hero-content{

    position:relative;

    z-index:5;

}

.hero h1{

    font-size:clamp(3rem,7vw,5.5rem);

    font-weight:800;

    line-height:1.05;

    margin-bottom:30px;

}

.hero p{

    font-size:1.2rem;

    max-width:650px;

    color:rgba(255,255,255,.92);

    margin-bottom:40px;

}

.hero .btn{

    margin-right:15px;

}



/*==========================================================
    FONDO HERO
==========================================================*/

.hero-bg{

    position:absolute;

    inset:0;

    z-index:1;

    overflow:hidden;

}

.hero-bg::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(8,15,30,.68),

        rgba(8,15,30,.60)

    );

    z-index:2;

}



/*==========================================================
    CARRUSEL
==========================================================*/

.hero-gallery{

    width:100%;

    height:100%;

}

.hero-track{

    display:flex;

    height:100%;

    width:max-content;

    animation:heroScroll 45s linear infinite;

}

.hero-item{

    width:100vw;

    height:100vh;

    flex:0 0 auto;

    overflow:hidden;

}

.hero-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform 8s linear;

}

.hero-item:hover img{

    transform:scale(1.05);

}



/*==========================================================
    BADGE HERO
==========================================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.18);

    padding:12px 24px;

    border-radius:50px;

    margin-bottom:30px;

    font-weight:600;

}

.hero-badge i{

    color:var(--secondary);

}



/*==========================================================
    EMPRESA HERO
==========================================================*/

.empresa-hero{

    position:relative;

    height:80vh;

    min-height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    color:#fff;

    background:

    url("../img/taller.jpg")

    center center / cover;

}

.empresa-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(10,15,25,.70),

        rgba(10,15,25,.65)

    );

}

.empresa-hero .container{

    position:relative;

    z-index:5;

}

.empresa-hero h1{

    font-size:clamp(3rem,7vw,5rem);

    font-weight:800;

    margin-bottom:25px;

}

.empresa-hero p{

    max-width:720px;

    margin:auto;

    margin-bottom:45px;

    font-size:1.2rem;

}



/*==========================================================
    BREADCRUMB
==========================================================*/

.breadcrumb-section{

    background:#fff;

    border-bottom:1px solid var(--border);

    padding:20px 0;

}

.breadcrumb{

    margin:0;

}

.breadcrumb a{

    color:var(--secondary);

    font-weight:600;

}

.breadcrumb-item.active{

    color:#64748b;

}



/*==========================================================
    CTA
==========================================================*/

.cta{

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(

        135deg,

        #0f172a,

        #1e293b

    );

    color:#fff;

}

.cta::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-200px;

    right:-120px;

}

.cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(249,115,22,.08);

    left:-100px;

    bottom:-150px;

}

.cta .container{

    position:relative;

    z-index:5;

}

.cta h2{

    font-weight:800;

    margin-bottom:20px;

}

.cta p{

    color:rgba(255,255,255,.85);

}



/*==========================================================
    HERO ANIMATION
==========================================================*/

@keyframes heroScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}



/*==========================================================
    TARJETAS DE SERVICIOS
==========================================================*/

.service-card{

    background:#fff;

    border-radius:24px;

    padding:40px 35px;

    height:100%;

    text-align:center;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,var(--secondary),#fb923c);

    transform:scaleX(0);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card .icon{

    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-size:3.2rem;
    color:var(--secondary);
    background:none;
    width:auto;
    height:auto;
    border-radius:0;
    box-shadow:none;
    transition:var(--transition);

}

.service-card:hover .icon{

    transform:scale(1.12);

}

.service-card h5{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.service-card p{

    margin:0;

    color:#64748b;

}


/* Primera sección de páginas internas */

.primera-seccion{

    padding-top:170px !important;

}


/*==========================================================
    TARJETAS EMPRESA
==========================================================*/

.info-card,
.value-card,
.why-card,
.sector-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    height:100%;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.info-card:hover,
.value-card:hover,
.why-card:hover,
.sector-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.info-card i,
.value-card i,
.why-card i,
.sector-card i{

    font-size:3rem;

    color:var(--secondary);

    margin-bottom:20px;

}

.info-card h4,
.info-card h5,
.value-card h4,
.why-card h4,
.sector-card h4{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

.info-card p,
.value-card p,
.why-card p,
.sector-card p{

    color:#64748b;

    margin:0;

}


/*==========================================================
    FEATURES
==========================================================*/

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.feature-item i{

    color:var(--secondary);

    font-size:1.5rem;

    margin-top:4px;

}

.feature-item h5{

    color:var(--primary);

    font-weight:700;

    margin-bottom:5px;

}

.feature-item p{

    margin:0;

}


/*==========================================================
    TIMELINE
==========================================================*/

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:60px;

    top:0;

    bottom:0;

    width:4px;

    background:#e2e8f0;

}

.timeline-item{

    position:relative;

    display:flex;

    gap:40px;

    margin-bottom:60px;

}

.timeline-year{

    width:120px;

    flex-shrink:0;

    background:var(--secondary);

    color:#fff;

    border-radius:50px;

    text-align:center;

    padding:12px;

    font-weight:700;

    z-index:2;

}

.timeline-content{

    flex:1;

    background:#fff;

    border-radius:18px;

    padding:30px;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

}

.timeline-content h4{

    color:var(--primary);

    font-weight:700;

    margin-bottom:10px;

}


/*==========================================================
    HISTORY BOX
==========================================================*/

.history-box{

    background:#fff;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

}

.history-box h3{

    color:var(--secondary);

    font-size:2.2rem;

    font-weight:800;

    margin-bottom:5px;

}


/*==========================================================
    EMPRESA IMAGE
==========================================================*/

.empresa-image{

    position:relative;

}

.empresa-image img{

    border-radius:24px;

}

.experience-card{

    position:absolute;

    right:-30px;

    bottom:40px;

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    text-align:center;

}

.experience-card h2{

    color:var(--secondary);

    font-size:3rem;

    font-weight:800;

    margin-bottom:5px;

}


/*==========================================================
    QUOTE
==========================================================*/

.empresa-quote{

    background:var(--primary);

    color:#fff;

    padding:90px 0;

}

.quote-icon{

    font-size:4rem;

    color:var(--secondary);

    margin-bottom:20px;

    display:block;

}

.empresa-quote h2{

    font-weight:300;

    line-height:1.5;

}

.instalaciones-img{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.instalaciones-img img{

    width:100%;

    max-width:700px;

    height:600px;

    object-fit:cover;

    object-position:center;

    border-radius:24px;

}


/*==========================================================
    CONTADORES
==========================================================*/

.counter-card{

    background:#fff;

    border-radius:22px;

    padding:40px;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.counter-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.counter{

    color:var(--secondary);

    font-size:3rem;

    font-weight:800;

}


/*==========================================================
    GALERÍA
==========================================================*/

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-sm);

    cursor:pointer;

}

.gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        transparent,

        rgba(15,23,42,.55)

    );

    opacity:0;

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-card:hover::after{

    opacity:1;

}


/*==========================================================
    PROYECTOS
==========================================================*/

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.project-img{

    position:relative;

    overflow:hidden;

}

.project-img img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover .project-img img{

    transform:scale(1.08);

}

.project-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(15,23,42,.65);

    opacity:0;

    transition:.35s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay a{

    color:#fff;

    border:2px solid #fff;

    padding:12px 26px;

    border-radius:40px;

    transition:.35s;

}

.project-overlay a:hover{

    background:#fff;

    color:var(--primary);

}

.project-info{

    padding:30px;

}

.project-info h4{

    color:var(--primary);

    font-weight:700;

}

.project-info p{

    margin-bottom:0;

    color:#64748b;

}


/*==========================================================
    INSTALACIONES
==========================================================*/

.instalaciones-section{

    background:#0f172a;

    color:#fff;

}

.instalacion-item{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.35s;

}

.instalacion-item:hover{

    background:rgba(255,255,255,.10);

    transform:translateY(-6px);

}

.instalacion-item i{

    font-size:2.2rem;

    color:var(--secondary);

    margin-bottom:15px;

}

.instalacion-item h5{

    margin-bottom:8px;

}

.instalacion-item p{

    margin:0;

    color:#d1d5db;

}


/*==========================================================
    FOOTER
==========================================================*/

footer{

    background:#020617;

    color:#cbd5e1;

    padding:70px 0 25px;

}

.footer-title{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-links a:hover{

    color:var(--secondary);

    padding-left:8px;

}

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

}


/* ================================
   EMPRESA ASOCIADA
   ================================ */

.empresa-asociada {
    background: #eef1f5;
    padding: 35px 20px;
    text-align: center;
}

.empresa-asociada .container {
    text-align: center;
}

.empresa-titulo {
    color: #1b2a41;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
}

.femeval-logo {
    display: block !important;
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
}


/*==========================================================
    BOTÓN instagram
==========================================================*/

.btn-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #e76f00, #c2185b, #6a1b9a, #3949ab);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}




/*==========================================================
    BOTÓN WHATSAPP
==========================================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:2rem;

    z-index:9999;

    box-shadow:0 18px 35px rgba(37,211,102,.40);

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.1);

    color:#fff;

}


/*==========================================================
    BOTÓN VOLVER ARRIBA
==========================================================*/

.back-top{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    background:#ea580c;

    color:#fff;

}


/*==========================================================
    ANIMACIONES
==========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

.zoom-in{

    opacity:0;

    transform:scale(.92);

    transition:.8s;

}

.zoom-in.show{

    opacity:1;

    transform:scale(1);

}

.slide-left{

    opacity:0;

    transform:translateX(-70px);

    transition:.8s;

}

.slide-left.show{

    opacity:1;

    transform:translateX(0);

}

.slide-right{

    opacity:0;

    transform:translateX(70px);

    transition:.8s;

}

.slide-right.show{

    opacity:1;

    transform:translateX(0);

}



/*==========================================================
    RESPONSIVE
==========================================================*/

@media (max-width:1400px){

.container{

    max-width:1200px;

}

.hero h1{

    font-size:4.5rem;

}

}



@media (max-width:1200px){

.section{

    padding:90px 0;

}

.hero{

    min-height:650px;

}

.hero h1{

    font-size:3.8rem;

}

.section-title{

    font-size:2.5rem;

}

.timeline::before{

    left:45px;

}

.timeline-year{

    width:90px;

}

.experience-card{

    right:0;

}

}



@media (max-width:992px){

.logo-header{

    height:65px;

}

.hero{

    min-height:600px;

    text-align:center;

}

.hero-content{

    margin:auto;

}

.hero p{

    margin-left:auto;

    margin-right:auto;

}

.hero .btn{

    margin-bottom:15px;

}

.section{

    padding:80px 0;

}

.timeline::before{

    display:none;

}

.timeline-item{

    display:block;

}

.timeline-year{

    margin-bottom:20px;

}

.experience-card{

    position:relative;

    right:auto;

    bottom:auto;

    margin-top:30px;

}

.feature-item{

    align-items:flex-start;

}

.navbar-collapse{

    background:#fff;

    border-radius:20px;

    padding:25px;

    margin-top:20px;

    box-shadow:var(--shadow-md);

}

.navbar-nav .nav-link{

    margin:8px 0;

}

}



@media (max-width:768px){

.hero{

    min-height:540px;

}

.hero h1{

    font-size:2.8rem;

}

.hero p{

    font-size:1rem;

}

.section-title{

    font-size:2rem;

}

.hero-badge{

    font-size:.8rem;

    padding:10px 18px;

}

.gallery-card img{

    height:240px;

}

.project-img img{

    height:240px;

}

.counter{

    font-size:2.3rem;

}

.counter-card{

    padding:30px;

}

.instalacion-item{

    margin-bottom:20px;

}

.footer-title{

    margin-top:25px;

}

.back-top{

    right:18px;

    bottom:95px;

}

.whatsapp-float{

    right:18px;

    bottom:20px;

}

}



@media (max-width:576px){

.section{

    padding:65px 0;

}

.hero{

    min-height:500px;

}

.hero h1{

    font-size:2.2rem;

}

.hero p{

    font-size:.95rem;

}

.section-title{

    font-size:1.8rem;

}

.hero .btn{

    width:100%;

    margin-right:0;

}

.btn{

    width:100%;

}

.timeline-content{

    padding:22px;

}

.gallery-card img{

    height:220px;

}

.project-img img{

    height:220px;

}

.value-card,
.info-card,
.why-card,
.service-card,
.sector-card{

    padding:28px;

}

.whatsapp-float{

    width:58px;

    height:58px;

    font-size:1.7rem;

}

.back-top{

    width:48px;

    height:48px;

}

}



/*==========================================================
    UTILIDADES
==========================================================*/

.shadow-hover{

    transition:var(--transition);

}

.shadow-hover:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-lg);

}

.radius{

    border-radius:var(--radius);

}

.text-orange{

    color:var(--secondary);

}

.bg-orange{

    background:var(--secondary);

}

.bg-dark-blue{

    background:var(--primary);

}

.object-cover{

    object-fit:cover;

}

.overflow-hidden{

    overflow:hidden;

}



/*==========================================================
    SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#e5e7eb;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ea580c;

}



/*==========================================================
    SELECCIÓN DE TEXTO
==========================================================*/

::selection{

    background:var(--secondary);

    color:#fff;

}



/*==========================================================
    FOCUS
==========================================================*/

button:focus,
.btn:focus,
.form-control:focus,
.form-select:focus{

    box-shadow:0 0 0 .25rem rgba(249,115,22,.25);

    border-color:var(--secondary);

}



/*==========================================================
    TRANSICIONES GLOBALES
==========================================================*/

a,
button,
img,
.card-modern,
.service-card,
.info-card,
.value-card,
.project-card,
.gallery-card{

    transition:all .35s ease;

}


/*==========================================================
    FORMULARIO CONTACTO
==========================================================*/

.form-control{

    border-radius:14px;

    padding:14px 18px;

    border:1px solid #d1d5db;

    box-shadow:none;

}

.form-control:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 .2rem rgba(249,115,22,.15);

}

textarea.form-control{

    resize:vertical;

}



/*==========================================================
    MAPA
==========================================================*/

.map-container{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow-md);

}

.map-container iframe{

    display:block;

    width:100%;

}

.mapa-contacto {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.mapa-contacto iframe {
    display:block;
}

/*==========================================================
    CTA CONTACTO
==========================================================*/

.cta .btn{

    min-width:260px;

}

@media(max-width:992px){

    .cta .btn{

        min-width:100%;

    }

}

/*==========================================================
    BANNER SERVICIOS
==========================================================*/

.service-banner{

    position:relative;
    height:420px;
    border-radius:28px;
    overflow:hidden;
    margin-bottom:45px;
    box-shadow:var(--shadow-lg);

}

.service-banner img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;

}

.service-banner:hover img{

    transform:scale(1.05);

}

.service-banner::after{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(15,23,42,.25),
        rgba(15,23,42,.80)
    );

}

.service-banner-content{

    position:absolute;
    left:60px;
    bottom:60px;
    z-index:2;
    color:#fff;
    max-width:700px;

}

.service-banner-content h2{

    font-size:clamp(2rem,5vw,3.5rem);
    font-weight:800;
    margin:12px 0 18px;

}

.service-banner-content p{

    color:rgba(255,255,255,.92);
    max-width:650px;

}

@media(max-width:768px){

    .service-banner{

        height:320px;

    }

    .service-banner-content{

        left:30px;
        right:30px;
        bottom:30px;

    }

}
