/* ==========================================
   RESET GENERAL
========================================== */
.menu-toggle {
    display: none;
}
.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

body{
    top:0 !important;
}

.skiptranslate{
    display:none !important;
}

.goog-logo-link{
    display:none !important;
}

.goog-te-gadget{
    color:transparent !important;
    font-size:0 !important;
}

.goog-tooltip{
    display:none !important;
}

.goog-text-highlight{
    background:none !important;
    box-shadow:none !important;
}

iframe.skiptranslate{
    display:none !important;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-primary);

    color:var(--text-color);

    background:var(--background-color);

    overflow-x:hidden;

    line-height:1.6;

}

/* ==========================================
   ELEMENTOS GENERALES
========================================== */

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea{

    font-family:inherit;

    outline:none;

}

/* ==========================================
   CONTENEDOR PRINCIPAL
========================================== */

.container{

    width:90%;

    max-width:var(--container-width);

    margin:auto;

}

/* ==========================================
   ESPACIADO GENERAL DE SECCIONES
========================================== */

section{

    padding:var(--section-padding) 0;

}

/* ==========================================
   TITULOS
========================================== */

.section-title{

    font-size:2.6rem;

    font-weight:700;

    text-align:center;

    margin-bottom:20px;

}

.section-subtitle{

    max-width:700px;

    margin:auto;

    text-align:center;

    color:var(--text-light);

    margin-bottom:60px;

}


/* ==========================================
   HEADER
========================================== */
.header .btn-primary{

    padding:14px 28px;

    border-radius:10px;

    font-size:.95rem;

}
.header{

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 90px;

    z-index: 9999;

    background: rgba(10, 15, 25, 0.55);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,.08);

}

/* ==========================================
   NAVBAR
========================================== */

.navbar{
    height: 100%;
    display: flex;
    align-items: center;
}

/* ==========================================
   LOGO
========================================== */

.logo{
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img{
    width: 125px;
}

/* ==========================================
   MENÚ
========================================== */

.nav-menu{
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 55px;
}

.nav-menu li{
    display: flex;
    align-items: center;
}

.nav-menu a{
    color: white;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

/* ==========================================
   BOTÓN
========================================== */
.btn-primary:hover{

    transform:translateY(-3px);

    background:#c51f1f;

    box-shadow:0 18px 35px rgba(214,38,38,.45);

}

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:10px 28px;

    background:var(--secondary-color);

    color:#fff;

    border-radius:10px;

    font-weight:600;

    font-size:1rem;

    transition:.35s ease;

    box-shadow:0 10px 25px rgba(214,38,38,.30);

}
/* ==========================================
   HERO
========================================== */

#hero{

    min-height:100vh;



    display:flex;

    align-items:center;

    position:relative;

    background-image:
        linear-gradient(
            90deg,
            rgba(8,12,20,.92) 0%,
            rgba(8,12,20,.88) 35%,
            rgba(8,12,20,.55) 55%,
            rgba(8,12,20,.10) 75%,
            rgba(8,12,20,0) 100%
        ),
        url("../img/hero/hero.png");

    background-size:cover;

    background-position:center right;

    background-repeat:no-repeat;

}

.hero-content{

    display:flex;

    align-items:center;

    min-height:100vh;

    width:48%;

    

}

.hero-text{

    color:white;

}

.hero-tag::after{

    content:"";

    display:block;

    width:70px;

    height:4px;

    background:var(--secondary-color);

    margin-top:18px;

}

.hero-text h1{

    font-size:5.3rem;

    font-weight:800;

    line-height:.95;

    letter-spacing:-3px;

    margin:30px 0;

    max-width:700px;

}

.hero-text p{

    max-width:620px;

    font-size:1.25rem;

    color:#D7D7D7;

    line-height:1.9;

    margin-bottom:50px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

/* ==========================================
   BOTÓN SECUNDARIO
========================================== */

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border:2px solid rgba(255,255,255,.35);

    color:white;

    border-radius:8px;

    font-weight:600;

    transition:var(--transition);

    backdrop-filter:blur(8px);

}

.btn-secondary:hover{

    background:white;

    color:#111;

    border-color:white;

}

/* ==========================================
   MENÚ ACTIVO
========================================== */

.nav-menu a.active{

    color:var(--secondary-color);

    font-weight:600;

}

.nav-menu a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:100%;

    height:3px;

    background:var(--secondary-color);

    border-radius:10px;

}
/*==========================================
    ABOUT SECTION
==========================================*/

.about-section{

    padding:120px 0;

    background:#f4f6f8;

}
.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}
.about-main{

     transition:.45s;

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 30px 60px rgba(0,0,0,.15);

}
.about-small{

    transition:.45s;

    position:absolute;

    right:-40px;

    bottom:-40px;

    width:260px;

}
.about-small img{

    width:100%;

    border-radius:20px;

    border:8px solid white;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}
.about-content h2{

    font-size:3rem;

    line-height:1.1;

    margin:20px 0 30px;

    color:#1d2738;

}
.about-content p{

    font-size:1.1rem;

    color:#606d80;

    line-height:1.9;

    margin-bottom:45px;

}
.about-items{

    display:flex;

    flex-direction:column;

    gap:28px;

}
.about-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}
.about-item i{

    color:var(--secondary-color);

    font-size:1.6rem;

    margin-top:4px;

}
.about-item h4{

    font-size:1.25rem;

    margin-bottom:6px;

    color:#1d2738;

}
.about-item span{

    color:#6d7686;

    line-height:1.7;

}
.about-stats{

    display:flex;

    gap:70px;

    margin:55px 0;

}
.about-stats h3{

    font-size:3rem;

    color:var(--secondary-color);

    margin-bottom:5px;

}
.about-stats span{

    color:#6d7686;

}
.about-images:hover .about-main{

    transform:scale(1.03);

}
.about-images:hover .about-small{

    transform:translateY(-12px);

}
.about-images::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:#D72626;

border-radius:25px;

top:-35px;

left:-35px;

z-index:-1;

}
/*==========================================
        EXPERIENCE
==========================================*/

.stats{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    radial-gradient(circle at top right,
    rgba(214,38,38,.12),
    transparent 40%),

    radial-gradient(circle at bottom left,
    rgba(214,38,38,.08),
    transparent 35%),

    linear-gradient(
        180deg,
        #111319 0%,
        #181C24 100%
    );

}
.stats-title{

    text-align:center;

    margin-bottom:70px;

}
.stats-title span{

    color:#ffffff;

    letter-spacing:6px;

    font-size:.95rem;

    font-weight:600;

    text-transform:uppercase;

    opacity:.85;

}
.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}
.stat-item{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:55px 40px;

    transition:.35s;

    backdrop-filter:blur(18px);

}
.stat-item:hover{

     transform:translateY(-15px) scale(1.02);

    border-color:rgba(214,38,38,.45);

    box-shadow:

    0 20px 45px rgba(0,0,0,.35),

    0 0 30px rgba(214,38,38,.12);

}
.stat-item h2{

    font-size:4.5rem;

    font-weight:800;

    color:white;

    margin-bottom:12px;

}
.stat-item p{

    color:#BFC6D1;

    font-size:1.05rem;

}
.stats::before{

    width:600px;

    height:600px;

    top:-350px;

    right:-250px;

    background:rgba(214,38,38,.08);

}
.stats::after{

    width:400px;

    height:400px;

    left:-180px;

    bottom:-180px;

    background:rgba(214,38,38,.05);

}
.stat-item:nth-child(1){

    transform:rotate(-1deg);

}

.stat-item:nth-child(2){

    transform:translateY(-18px);

}

.stat-item:nth-child(3){

    transform:rotate(1deg);

}
.stats-banner{

    margin-top:90px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}
.stats-banner img{

    width:100%;

    display:block;

    transition:.6s;

}
.stats-banner:hover img{

    transform:scale(1.04);

}
.brands-title{

    margin:70px 0 45px;

    text-align:center;

}
.brands-title h3{

    color:white;

    font-size:1.4rem;

    letter-spacing:4px;

    text-transform:uppercase;

}
.brands-slider{

    overflow:hidden;

    width:100%;

}
.brands-track{

    display:flex;

    align-items:center;

    gap:90px;

    width:max-content;

    animation:scrollBrands 30s linear infinite;

}
.brands-track img{

    height:48px;

    opacity:.85;

    transition:.35s;

}
.brands-track img:hover{

    opacity:1;

    transform:scale(1.08);

}
@keyframes scrollBrands{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/*==========================================
            SERVICES
==========================================*/

.services{

    background:#f6f7fb;

    padding:130px 0;

}

.services .section-tag{

    display:block;

    text-align:center;

    color:#d72626;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

}

.services-title{

    text-align:center;

    font-size:3rem;

    color:#1b2432;

    line-height:1.2;

    margin-bottom:25px;

}

.services-description{

    max-width:760px;

    margin:auto;

    text-align:center;

    color:#67758a;

    font-size:1.08rem;

    line-height:1.9;

    margin-bottom:70px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.service-card{

    background:white;

    padding:45px;

    border-radius:22px;

    transition:.35s;

    box-shadow:0 12px 40px rgba(0,0,0,.05);

    border:1px solid #eceff4;

}


.service-card:hover{
    transform:translateY(-8px);
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.service-card i{

    font-size:2.6rem;

    color:#d72626;

    margin-bottom:30px;

    transition:.35s;

}

.service-card:hover i{

    transform:rotate(-10deg) scale(1.12);

}

.service-card h3{

    font-size:1.45rem;

    margin-bottom:18px;

    color:#1d2738;

}

.service-card p{

    color:#6e7b8d;

    line-height:1.8;

}
/*==========================================
        EQUIPMENT
==========================================*/

.equipment{

    padding:120px 0;

    background:#ffffff;

}

.equipment .section-tag{

    display:block;

    text-align:center;

    color:var(--secondary-color);

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:20px;

}

.equipment-title{

    font-size:3.2rem;

    text-align:center;

    color:#1d2738;

    margin-bottom:25px;

}

.equipment-description{

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#6d7686;

    font-size:1.15rem;

    line-height:1.8;

    margin-bottom:70px;

}

.equipment-grid{

    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:35px;
    margin-top:70px;

}

/* Todas ocupan 2 columnas */

.equipment-card{

    grid-column:span 2;

}

/* Tarjeta 4 */

.equipment-card:nth-child(4){

    grid-column:2 / 4;

}

/* Tarjeta 5 */

.equipment-card:nth-child(5){

    grid-column:4 / 6;

}
.equipment-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    height:340px;

    cursor:pointer;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    transition:.4s;

}

.equipment-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.equipment-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15));

    display:flex;

    align-items:flex-end;

    padding:35px;

}

.equipment-overlay h3{

    color:white;

    font-size:1.8rem;

    font-weight:700;

}

.equipment-card:hover{

    transform:translateY(-10px);

    box-shadow:0 35px 60px rgba(0,0,0,.22);

}

.equipment-card:hover img{

    transform:scale(1.08);

}

.equipment-card:hover .equipment-overlay{

    background:linear-gradient(to top,
        rgba(214,38,38,.85),
        rgba(0,0,0,.15));

}
/*==========================================
        CONTACT
==========================================*/

.contact-section{

    padding:130px 0;

    background:#f5f7fa;

}

.contact-header{

    text-align:center;

    margin-bottom:70px;

}

.contact-header h2{

    font-size:3rem;

    margin:20px 0;

    color:#1d2738;

}

.contact-header p{

    max-width:700px;

    margin:auto;

    color:#687588;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.location-card iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

.location-card .address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.location-card .address i {
    color: #e21f26;
    font-size: 20px;
    margin-top: 3px;
}
.contact-form{

    background:white;

    padding:45px;

    border-radius:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea{

    padding:18px;

    border-radius:10px;

    border:1px solid #dcdcdc;

    font-size:1rem;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    margin-top:10px;

    width:100%;

}

.social-contact {
    margin-top: -99px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-contact a{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#111827;

    color:white;

    font-size:1.2rem;

    transition:.35s;

}

.social-contact a:hover{

    background:#D72626;

    transform:translateY(-5px);

}
/*=====================================
CONTACTO FLOTANTE
======================================*/

.floating-contact{

    position:fixed;

    right:30px;

    bottom:35px;

    display:flex;

    flex-direction:column;

    gap:16px;

    z-index:9999;

}

.floating-contact a{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:1.45rem;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.phone{

    background:#0f172a;

}

.whatsapp{

    background:#25D366;

}

.mail{

    background:#D72626;

}

.floating-contact a:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}
/*=========================================
LANGUAGE SELECTOR
=========================================*/

.language-dropdown{

    position:relative;

    margin-left:25px;

}

.language-btn{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 16px;

    border:none;

    background:rgba(255,255,255,.10);

    color:#fff;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    backdrop-filter:blur(10px);

}

.language-btn:hover{

    background:rgba(255,255,255,.18);

}

.language-btn .fi{

    font-size:22px;

}

.language-menu{

    position:absolute;

    top:60px;

    right:0;

    width:190px;

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    display:none;

    z-index:9999;

}

.language-menu.active{

    display:block;

}

.language-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:15px;

    cursor:pointer;

    transition:.25s;

}

.language-item:hover{

    background:#f3f4f6;

}

.language-item .fi{

    font-size:22px;

}
.goog-te-banner-frame{
    display:none !important;
}

body{
    top:0 !important;
}

.goog-logo-link{
    display:none !important;
}

.goog-te-gadget{

    color:transparent !important;

}
/*======================================
POPUP PROMOCIÓN
======================================*/

.promo-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(6px);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    opacity:0;

    visibility:hidden;

    transition:.35s;

}

.promo-modal.show{

    opacity:1;

    visibility:visible;

}

.promo-box{

    position: relative;

    width: min(360px, 90vw);

    transform: scale(.85);

    transition: .35s;

}

.promo-modal.show .promo-box{

    transform:scale(1);

}

.promo-image{

    width:100%;

    display:block;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.promo-close{

    position:absolute;

    top:-15px;

    right:-15px;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#e1261c;

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.25s;

    box-shadow:0 8px 25px rgba(0,0,0,.4);

}

.promo-close:hover{

    transform:rotate(90deg);

    background:#000;

}
.language-btn,
.language-menu button {
    font-family:
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Noto Color Emoji",
        sans-serif;
}
/* ==========================================
   GOOGLE TRANSLATE
========================================== */

#google_translate_element {
    display: none;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

.goog-te-gadget .goog-te-combo {
    font-size: 14px !important;
}
/* ==========================================
   SELECTOR DE IDIOMAS
========================================== */

.language-selector {
    position: relative;
}


/* BOTÓN PRINCIPAL */

.language-btn {
    display: flex;
    align-items: center;
    gap: 9px;

    height: 52px;
    padding: 0 18px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;

    background: #111827;
    color: white;

    font-family: "Poppins", sans-serif;
    font-size: .9rem;
    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.language-btn:hover {
    background: #1b2435;
    border-color: rgba(255,255,255,.18);
}


/* BANDERA ACTUAL */

#currentFlag {
    font-size: 1.25rem;
    line-height: 1;
}


/* CÓDIGO DEL IDIOMA */

#currentLanguage {
    font-size: .82rem;
    font-weight: 600;
}


/* FLECHA */

.language-btn i {
    font-size: .7rem;
    margin-left: 2px;

    transition: transform .3s ease;
}


/* ==========================================
   MENÚ DESPLEGABLE
========================================== */

.language-menu {

    position: absolute;

    top: calc(100% + 12px);
    right: 0;

    width: 190px;

    padding: 8px;

    background: #111827;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 14px;

    box-shadow:
        0 18px 40px rgba(0,0,0,.35);

    z-index: 9999;

    display: none;

    overflow: hidden;
}


/* CUANDO ESTÁ ABIERTO */

.language-menu.show {
    display: block;

    animation: languageMenuIn .2s ease;
}


/* ANIMACIÓN */

@keyframes languageMenuIn {

    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ==========================================
   OPCIONES
========================================== */

.language-menu button {

    width: 100%;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 11px 12px;

    border: none;
    border-radius: 9px;

    background: transparent;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: .86rem;
    font-weight: 500;

    text-align: left;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        color .25s ease;
}


/* BANDERAS */

.language-menu button::first-letter {
    font-size: 1.2rem;
}


/* HOVER */

.language-menu button:hover {

    background: #D72626;

    color: white;

    transform: translateX(3px);
}
/* ==========================================
   BANDERA DEL IDIOMA ACTUAL
========================================== */

#currentFlag {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    display: block;
    flex-shrink: 0;
}
/* ==========================================
   BOTÓN COTIZAR PROMOCIÓN
========================================== */

.promo-quote-btn {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: calc(100% - 60px);
    margin: 0 auto 30px;

    padding: 16px 24px;

    background: #D72626;
    color: white;

    text-decoration: none;

    border-radius: 12px;

    font-size: 1rem;
    font-weight: 700;

    box-shadow: 0 10px 25px rgba(215, 38, 38, .25);

    transition: .3s ease;
}

.promo-quote-btn:hover {

    background: #b91f1f;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(215, 38, 38, .35);
}

.promo-quote-btn i {

    transition: .3s ease;
}

.promo-quote-btn:hover i {

    transform: translateX(5px);
}
/* ==========================================
   VIDEO DYNAPAC
========================================== */

.about-video {

    width: 100%;
    height: 100%;

    min-height: 700px;

    border-radius: 0 0 25px 25px;

    overflow: hidden;

    position: relative;

    background: #000;

}

.about-video iframe {

    width: 100%;
    height: 100%;

    min-height: 700px;

    border: none;

    display: block;

}
/* ==========================================
   EQUIPOS - EFECTO PRECIOS
========================================== */

/* ==========================================
   BOTÓN / TEXTO DE COTIZACIÓN EN EQUIPOS
========================================== */

.equipment-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.equipment-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 10px;

    color: white;

    font-size: 15px;
    font-weight: 600;

    opacity: 0;
    transform: translateY(10px);

    transition: all 0.3s ease;
}

.equipment-action i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-action {
    opacity: 1;
    transform: translateY(0);
}

.equipment-card:hover .equipment-action i {
    transform: translateX(5px);
}