
/* ESTILOS DEL HERO SECTION */

.hero {
    width: 100%;
    min-height: 88vh;
    background-color: var(--color-primario);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 60%, rgba(255, 204, 0, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(255, 204, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-image {
    width: 45%;
    height: auto;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-content {
    z-index: 2;
    color: var(--color-secundario);
    text-align: left;
    padding: 40px 60px;
    width: 55%;
    position: relative;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    margin-bottom: 16px;
    line-height: 1.25;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #ffcc00;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-pulse-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    flex-shrink: 0;
    animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

/* Keyword highlight */
.hero-highlight {
    color: var(--color-terciario);
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 8px;
}

/* Grupo de botones CTA del hero */
.inicio-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Botón primario amarillo con glow */
.btn-yellow-cta {
    background: linear-gradient(135deg, #ffcc00 0%, #ffd633 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(255, 204, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-yellow-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 204, 0, 0.6);
}

/* Botón ghost para fondos oscuros */
.btn-ghost-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 18px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-ghost-cta:hover {
    border-color: rgba(255, 204, 0, 0.5);
    color: #ffcc00;
    transform: translateY(-3px);
}

/* FIN DE ESTILOS DEL HERO SECTION */
/* ESTILOS DE SECCION DE CLIENTES*/
.nuestro-clientes {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 50px 20px;
    gap: 30px;
    background-color: var(--btn-ltr-primario);
}

.llamada-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    padding: 2px 80px;
    width: 50%;
}

.llamada-1 h3 {
    color: var(--color-secundario);
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.clientes-container {
    width: 50%;
    position: relative;
    overflow: hidden;
    height: 20rem;
    display: flex;
    align-items: center;
}

.scrolling-track {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: scroll 25s linear infinite;
}

.scrolling-track:hover {
    animation-play-state: paused;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.cliente {
    width: 120px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.cliente:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.cliente img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}


@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}


/* FIN DE ESTILOS DE SECCION DE CLIENTES */

/* ESTILOS DE SECCIÓN DE SERVICIOS */
.nuestros-servicios {
    width: 100%;
    background-color: var(--color-secundario);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 60px;
}

/* Intro de sección */
.servicios-intro {
    text-align: center;
    max-width: 640px;
    margin-bottom: 70px;
}

.servicios-label {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.08);
    border: 1px solid rgba(255, 204, 0, 0.25);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.servicios-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    color: var(--color-primario);
    line-height: 1.25;
    margin-bottom: 14px;
}

.servicios-intro p {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Etiqueta por servicio */
.servicio-tag {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    background: #ffcc00;
    border-radius: 4px;
    padding: 4px 12px;
}

/* Bloques de servicio */
.servicio-carga,
.servicio-personal {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.servicio-carga-1 {
    width: 47%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0 20px 60px;
}

.servicio-personal-1 {
    width: 47%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 60px 20px 0;
}

.servicio-carga-1 h3,
.servicio-personal-1 h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    color: var(--color-primario);
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.servicio-carga-1 h3::after,
.servicio-personal-1 h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    border-radius: 4px;
    background: #ffcc00;
}

.servicio-carga-1 p,
.servicio-personal-1 p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #4e4e4e;
    line-height: 1.75;
}

/* Lista de características */
.servicio-carga-1 ul,
.servicio-personal-1 ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servicio-carga-1 ul li,
.servicio-personal-1 ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.servicio-carga-1 ul li i,
.servicio-personal-1 ul li i {
    width: 34px;
    height: 34px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b38f00;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.servicio-carga-1 ul li span,
.servicio-personal-1 ul li span {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.botones-servicios {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.servicio-carga-img,
.servicio-personal-img {
    width: 50%;
    flex-shrink: 0;
}

.servicio-carga-img img,
.servicio-personal-img img {
    width: 100%;
    height: auto;
    display: block;
}

/*Fin de la seccion servicios*/
.llamada-2 {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg,
            var(--btn-ltr-primario) 0%,
            #0f0f23 50%,
            var(--btn-ltr-primario) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
}

.llamada-2 p:first-of-type {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
}

.llamada-2 p::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    height: 5px;
    width: 200px;
    border-radius: 1px;
    background: #FFD600;
}

.llamada-2 p:nth-of-type(2) {
    text-align: center;
    padding: 2px 80px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;


}

.llamada-2 h2 {
    color: var(--color-secundario);
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 4rem;
    text-align: center;
    padding: 2px 80px;
}

.llamada-2 h2 span {
    color: var(--color-terciario);

}
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*btn3 code*/

/*//////////////////////////////////////////////btn3 code////////////+/*/
/*/////////////////////////////////////////////////////////////////////////*/



/* FIN DE ESTILOS DE SECCION DE SERVICIOS */
/* ESTILOS DE SECCION DE ESTADISTICAS */
.estadisticas {
    width: 100%;
    background-color: var(--color-secundario);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 60px;
}

.estadisticas-intro {
    text-align: center;
}

.estadisticas-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    color: var(--color-primario);
    margin-top: 14px;
    line-height: 1.25;
}

.estadisticas-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
}

.estadistica {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.estadistica:last-child {
    border-right: none;
}

.estadistica img {
    width: 160px;
    height: auto;
}

.estadistica h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: var(--color-primario);
    line-height: 1;
}

.estadistica p {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

/* FIN DE ESTILOS DE SECCION DE ESTADISTICAS */
.nuestras-unidades {
    width: 100%;
    height: auto;
    background-color: var(--btn-ltr-primario);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

.nuestras-unidades h2 {
    color: var(--color-secundario);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.nuestras-unidades h3 {
    color: var(--color-secundario);
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 3.5rem;
    text-align: center;
    padding: 2px 20px;
    margin-bottom: 30px;
}

.nuestras-unidades p {
    color: #c2c2c2;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    padding: 2px 10px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.unidades-a-servicios {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.unidad-servicios {
    width: 100%;
    max-width: 600px;
    height: auto;
    /* Cambiado a auto para mejor responsividad */
    background-color: var(--color-secundario);
    border-radius: 15px;
    box-shadow: var(--shadow-px-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unidad-servicios:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.unidad-servicios h2 {
    color: var(--color-primario);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-align: center;
}

.unidad-servicios h3 {
    color: var(--color-primario);
}

/* CONTENEDOR CORREGIDO - Se había escrito mal en el CSS original */
.contenedor-imagen {
    width: 100%;
    height: 400px;
    /* Altura fija para todas las imágenes */
    overflow: hidden;
    border-radius: 10px;
}

.contenedor-imagen img:first-of-type {
    width: 100%;
    height: auto;
    /* Ocupa todo el alto del contenedor */
    object-fit: cover;
    /* Mantiene la proporción y recorta si es necesario */
    transition: transform 0.5s ease;
}
.contenedor-imagen img:last-of-type{
    height: 100%;
}

.unidad-servicios:hover .contenedor-imagen img {
    transform: scale(1.05);
}

/* FIN DE ESTILOS DE SECCION DE UNIDADES A SERVICIOS */

/*CTA 2*/
.full-width-cta {
    width: 100%;
    background: linear-gradient(to right, #000000 0%, #1a1a1a 100%);
    padding: 70px 5%;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.cta-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.cta-background::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, transparent 70%);
    transform: rotate(15deg);
}

.cta-background::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 250px;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    transform: rotate(-10deg);
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-tag {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-size: 12px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.cta-title {
    font-size: 2.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-secundario);
}

.cta-title span {
    color: #ffcc00;
    position: relative;
}

.cta-title span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ffcc00;
    opacity: 0.5;
}

.cta-description {
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 90%;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    background-color: rgba(255, 204, 0, 0.2);
    color: #ffcc00;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    color: #fff;
    font-family: 'Lato', sans-serif;
}

.cta-form-container {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 204, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #ffcc00;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffcc00;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.form-select {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 15px 20px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: #ffcc00;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

/* === FORMULARIO CTA — SELECCIÓN DE SERVICIO COMPACTA === */
.cta-service-selection {
    display: flex;
    gap: 8px;
}

.cta-service-card {
    flex: 1;
    position: relative;
}

.cta-service-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cta-service-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ccc;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cta-service-card label i {
    font-size: 1.2rem;
}

.cta-service-card label:hover {
    border-color: rgba(255, 204, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cta-service-card input:checked + label {
    background: rgba(255, 204, 0, 0.15);
    border-color: #ffcc00;
    color: #ffcc00;
}

.cta-service-card label.error {
    border-color: rgba(255, 80, 80, 0.7);
}

.cta-form .form-input.error {
    border-color: rgba(255, 80, 80, 0.7);
}

.cta-form-error {
    font-size: 0.8rem;
    color: #ff6b6b;
    margin-top: -12px;
}

.cta-button {
    background-color: #ffcc00;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: #ffd633;
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 204, 0, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
}

.stats-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Efectos de microinteracciones */



/* ============================================================
   FOOTER
   ============================================================ */

footer {
    position: relative;
    width: 100%;
    background: #0d0d0d;
    background-image: radial-gradient(circle, rgba(255, 204, 0, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    border-top: 3px solid #ffcc00;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.5), transparent);
    box-shadow: 0 0 60px 20px rgba(255, 204, 0, 0.1);
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 5% 52px;
}

/* ── Columna de marca ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-logo img {
    width: 42px;
    height: auto;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0;
}

.footer-brand-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: #777;
    line-height: 1.85;
    margin: 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #777;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    border-color: #ffcc00;
    background: #ffcc00;
    color: #000;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ── Columnas de navegación / servicios ── */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffcc00;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    margin: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-col li a {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col li a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #333;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.footer-col li a:hover { color: #fff; }
.footer-col li a:hover::before { background: #ffcc00; }

/* ── Columna de contacto ── */
.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffcc00;
    color: #000;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.footer-wa-btn:hover {
    background: #ffe033;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.3);
}

.footer-wa-btn i { font-size: 1.1rem; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    color: #777;
}

.footer-contact-item i {
    color: #ffcc00;
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* ── Barra inferior ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    color: #444;
    margin: 0;
}

.footer-bottom-tag {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #333;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-brand-desc { max-width: 100%; }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 50px 5% 32px;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 18px 5%;
    }
}

/* FIN DEL FOOTER */






/* MEDIA QUERIES */
/* Media Queries para Responsividad */

/* Tablets en orientación horizontal y laptops pequeñas (1024px - 1200px) */
/* Desktop grande */
@media screen and (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .servicio-carga-1,
    .servicio-personal-1 {
        padding: 20px 30px;
    }

}

/* Desktop/Tablet horizontal */
@media screen and (max-width: 1024px) {
    /* Navegación esto esta en el archivo base*/
 
    /* Hero Section */
    .hero {
        flex-direction: column;
        height: auto;
        padding: 40px 0;
    }

    .hero-content,
    .hero-image {
        width: 100%;
        text-align: center;
    }

    .hero-content {
        padding: 40px 20px 20px;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 8px;
    }

    /* Clientes */
    .nuestro-clientes {
        flex-direction: column;
        gap: 40px;
    }

    .llamada-1,
    .clientes-container {
        width: 100%;
        justify-content: center;
    }

    .llamada-1 {
        padding: 0 20px;
    }

    /* Servicios */
    .servicio-carga,
    .servicio-personal {
        flex-direction: column;
    }

    .servicio-carga-1,
    .servicio-personal-1,
    .servicio-carga-img,
    .servicio-personal-img {
        width: 100%;
    }

    .servicio-personal {
        flex-direction: column-reverse;
    }

    .servicio-carga-1,
    .servicio-personal-1 {
        padding: 24px 16px;
    }

    .botones-servicios {
        justify-content: center;
    }

    /* Estadísticas */
    .estadisticas-grid {
        flex-wrap: wrap;
    }

    .estadistica {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .estadistica:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
    }

    .estadistica:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* CTA y otros */
    .unidades-a-servicios {
        flex-direction: column;
        align-items: center;
    }
    .cta-form-container{
        width: 100%;
    }
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-description {
        max-width: 100%;
    }

    .feature {
        justify-content: center;
    }

    .cta-title {
        font-size: 2.2rem;
    }

}

/* Tablet vertical/Mobile horizontal */
@media screen and (max-width: 768px) {


   

    /* Hero */
    .hero-content h1 {
        font-size: 2rem;
    }

    .inicio-cta-group {
        justify-content: center;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    /* Contenido */
    .llamada-1 h3 {
        font-size: 2.2rem;
    }

    .servicio-carga-1 h3,
    .servicio-personal-1 h3 {
        font-size: 2.2rem;
    }

    .llamada-2 h2 {
        font-size: 2.8rem;
    }

    /* Estadísticas */
    .estadistica {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .estadistica:nth-child(odd) {
        border-right: none;
    }

    .estadistica:last-child {
        border-bottom: none;
    }

    .logo-row {
        gap: 15px;
    }

    .cliente {
        width: 100px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
 
    /* Hero */
    .hero-content h1 {
        font-size: 1.8rem;
    }

    /* Contenido */
    .llamada-1{
        padding: 0;
    }
    .llamada-1 h3 {
        font-size: 1.8rem;
    }

    .servicio-carga-1 h3,
    .servicio-personal-1 h3 {
        font-size: 1.8rem;
    }

    .servicio-carga-1 ul li span,
    .servicio-personal-1 ul li span {
        font-size: 0.9rem;
    }

    .llamada-2 h2 {
        font-size: 2rem;
    }

    .llamada-2 p:first-of-type {
        font-size: .8rem;
    }

    .llamada-2 p:nth-of-type(2) {
        font-size: 1rem;
    }

    /* Estadísticas */
    .estadistica {
        padding: 32px 16px;
    }

    /* Unidades */
    .nuestras-unidades h3 {
        font-size: 2.5rem;
    }

    .contenedor-imagen {
        height: auto;
    }

    .scrolling-track {
        gap: 20px;
    }

    .logo-row {
        gap: 10px;
    }

    .cliente {
        width: 80px;
    }

    /* Footer */
    .derechos-reservados p {
        font-size: 0.8rem;
        padding: 0 10px;
    }

    /* CTA */
    .full-width-cta {
        padding: 50px 5%;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile muy pequeño */
@media screen and (max-width: 400px) {

    /* Hero */
    .inicio-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-yellow-cta,
    .btn-ghost-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Servicios */
    .botones-servicios {
        flex-direction: column;
        align-items: center;
    }

    /* Llamadas */
    .llamada-2 p:first-of-type {
        padding: 0;
    }

    .llamada-2 p:nth-of-type(2) {
        padding: 0;
    }

    .llamada-2 h2 {
        padding: 0;
    }

    /* Clientes */
    .cliente {
        width: 70px;
    }

}

/* FIN DE MEDIA QUERIES */
/* Animaciones */
/* ANIMACIONES FADE - Agregar al final de tu archivo CSS */