:root{
    --padding-container: 100px 0;
    --color-tittle: #001A49;    
    --soft-blue: hsl(231, 69%, 60%);
    --soft-red: hsl(0, 94%, 66%);
    --grayish-blue: hsl(229, 8%, 60%);
    --very-dark-blue: hsl(229, 31%, 21%);
    --grayish-blue-alpha: hsl(229, 8%, 60%, .5);
    --very-dark-blue-alpha: hsl(229, 31%, 21%, .8);
}

/* Estilos generales */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    
    overflow-x: hidden;
}


  
  



/* Encabezado */
header {
    background-color: #000;
    color: #fff;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    background-color: #000;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    background-color: white;
    width: 220px;
    margin-left: -20px;
}

.logo img {
    width: 200px;
    height: 200px;
    margin-right: 10px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

.contact-info .phone {
    color: red;
}

.contact-info .hours {
    color: orange;
}

.contact-info .reviews a {
    color: blue;
    text-decoration: none;
}

.header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
    height: 55px;
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background-color: #ccc;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a.active {
    text-decoration: underline;
    color: red;
}

.appointment-btn {
    background-color: #fd6c08;
    color: #fff;
    border: none;
    padding: 0 20px;
    font-size: 14px;
    cursor: pointer;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

/* RESET ESENCIAL 
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
} */

/* MENÚ MÓVIL - ESTRUCTURA PRINCIPAL */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    left: -85%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: left 0.3s ease-in-out;
    margin: 0;
    padding: 0;
}

.mobile-nav-panel.active {
    left: 0;
}

.mobile-nav-panel-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* CABECERA */
/* CABECERA DEL PANEL MÓVIL */
.panel-header {
    flex-shrink: 0;
    padding: 55px 20px;
    display: flex;
    justify-content: space-between; /* Asegura espacio entre elementos */
    align-items: center;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    position: relative; /* Añadido para mejor posicionamiento */
}

/* Botón de cerrar (X) - POSICIÓN DERECHA */
.close-panel {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333; /* Color oscuro para mejor contraste */
    position: absolute; /* Posicionamiento absoluto */
    right: 20px; /* Colocado a la derecha */
    top: 50%;
    transform: translateY(-50%);
    padding: 5px;
}

/* Logo en el panel móvil - POSICIÓN IZQUIERDA */
.panel-header .logo {
    margin-right: 40px; /* Espacio para el botón de cerrar */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ENLACES DE NAVEGACIÓN */
.mobile-nav-links {
    flex: 1;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

/* PIE DE PÁGINA */
.mobile-footer-content {
    flex-shrink: 0;
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.mobile-login-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #fd6c08;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 15px;
    cursor: pointer;
}

/* OVERLAY */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

.nav-overlay.active {
    display: block;
}
/* ===== ESTILOS PARA LA BARRA SUPERIOR ===== */
.header-top {
    background-color: #000; /* Fondo negro */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    height: 60px; /* Altura fija para mejor alineación */
}

/* Estilos para el botón del menú (esquina derecha) */
.mobile-menu-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 24px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contenedor de información de contacto (horizontal) */
.mobile-contact-display {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 13px; /* Tamaño reducido para caber horizontal */
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-contact-display .phone,
.mobile-contact-display .hours {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Asegurar que el icono sea visible */
.mobile-menu-toggle i {
    color: white;
}

/* ===== AJUSTES RESPONSIVOS ===== */
@media (max-width: 1024px) {
    /* Mostrar siempre el contacto en el toggle en móvil */
    .mobile-contact-display {
        display: flex !important;
    }
    
    /* Ocultar el contacto original en móvil */
    .header-top .contact-info {
        display: none;
    }
    
    /* Logo centrado */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .mobile-contact-display {
        gap: 10px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .mobile-contact-display {
        flex-direction: column; /* Apilar vertical en pantallas muy pequeñas */
        gap: 3px;
        font-size: 11px;
        align-items: flex-start;
    }
    
    .header-top {
        padding: 10px 15px;
    }

    .logo{
        background-color: transparent;
    }
}

@media (min-width: 1025px) {
    /* Ocultar el toggle en desktop */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Mostrar el contacto original en desktop */
    .header-top .contact-info {
        display: none;
    }

    .mobile-contact-display {
        display: none;
    }
    
    /* Restaurar posición del logo */
    .logo {
        position: static;
        transform: none;
    }

    
}
/* Sección Hero */
.hero {
    background-image: url('/images/operador_invertido.jpg'); /* Asegúrate de tener una imagen de fondo */
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
    
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.hero-content {
    color: #fff;
    z-index: 1;
   
}

.hero-content .open {
    color: red;
    font-size: 14px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 52px;
    margin: 20px 0 0 180px;
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    transform: scaleY(1.4);
    color: #fff;
}

.hero-content h2 {
    font-family: Helvetica, sans-serif;
    font-weight: 600;
    color: transparent; /* Hace que el relleno sea transparente */
    -webkit-text-stroke: 1px white; /* Contorno blanco */
    font-size: 45px;
    transform: scaleY(1.4);
    margin: 20px 0 0 180px;
}

.learn-more-btn {
    background-color: #fd6c08;
    color: white;
    border: 2px solid #000;
    padding: 15px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
    margin-left: 200px;
    display: block;
}

/* Sección de Tarjetas de Información */
.info-cards {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    margin-top: -100px;
    z-index: 2;
    position: relative;
    gap: 0; /* Elimina el espacio entre las tarjetas */
   
}

.card {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
}

.repair-workshop {
    width: 35%; /* Reducir el ancho de la tarjeta */
    height: 230px; /* Ajustar la altura */
    margin-bottom: 0; /* Aseguramos que no haya margen inferior */
    top: -10px; /* La movemos hacia arriba */
}

.repair-workshop img {
    position: absolute;
    right: -90px; /* Sobresale de la tarjeta */
    top: -60px; /* Sobresale de la tarjeta */
    width: 350px;
    height: 320px; /* Más alto que la tarjeta */
    object-fit: cover;
}

.repair-workshop .card-header {
    height: 5px;
    background-color: #fd6c08;
    margin-bottom: 20px;
}

.repair-workshop h3 {
    font-size: 24px;
    margin: 10px 0;
}

.repair-workshop .phone {
    color: #fd6c08;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.quote-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.get-estimate {
    width: 20%; /* Reducir el ancho de la tarjeta */
    background-color: #1a1a1a;
    color: #fff;
    height: 220px; /* Ajustar la altura */
    
}

.get-estimate h3 {
    font-size: 24px;
    margin: 10px 0;
}

.estimate-btn {
    background-color: #fd6c08;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
}




/* Estilos generales */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Sección de Servicios */
.services-section {
    padding: 50px 20px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Encabezado de la sección */
.services-header {
    margin-top: 100px;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
    left: 380px;
}

.section-subtitle {
    color: red;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.section-title {
    font-size: 36px;
    color: #000;
    margin: 10px 0;
}

.red-line {
    width: 50px;
    height: 2px;
    background-color: red;
    margin: 10px 0;
    position: relative;
}

.red-line span {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    font-size: 18px;
}

.view-more-btn {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Tarjetas de Servicios */
.services-cards {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.service-card {
    flex: 1;
    max-width: 350px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0 5px;
}

.road-freight {
    background-image: url('/images/montocargas_reparacion.jpg');
}

.cargo-ship {
    background-image: url('/images/montacargas_couse2.jpg');
    
}

.train-freight {
    background-image: url('/images/transporte_montacargas2.jpg');
}

.service-figure {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.service-icon img {
    width: 30px;
    height: 30px;
}

.service-figure h3 {
    font-size: 18px;
    color: #000;
    margin-top: 30px;
}

/* Tarjeta Emergente */
.service-popup {
    position: absolute;
    bottom: -100%; /* Inicia fuera de la vista */
    left: 10%;
    transform: translateX(-50%);
    width: 80%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    z-index: 10;
}

.service-card:hover .service-popup {
    bottom: 30px; /* Despliega la tarjeta emergente */
    opacity: 1;
}

.service-card:hover .service-figure,
.service-card:hover .service-icon {
    opacity: 0; /* Oculta la figura blanca y el ícono */
}

.popup-header {
    background-color: #fd6c08;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.popup-header img {
    width: 40px;
    height: 40px;
}

.popup-header h4 {
    color: #fff;
    font-size: 18px;
    margin: 10px 0 0;
}

.popup-description {
    padding: 20px;
    text-align: center;
}

.popup-description p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.popup-footer {
    padding: 20px;
    text-align: center;
}

.read-more-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
}

/* Elementos Decorativos */
.decorative-elements {
    position: absolute;
    bottom: 20px;
    right: 20px;
}







/* Sección de Presentación Corporativa */
.corporate-section {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #fff;
}

/* Lado Izquierdo: Texto y Beneficios */
.left-side {
    width: 50%;
    padding-right: 20px;
    position: relative;
    left: 370px;
}

.section-header {
    margin-bottom: 30px;
}

.section-subtitle {
    color: #fd6c08;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.section-title {
    font-size: 36px;
    color: #000;
    margin: 10px 0;
}

.red-line {
    width: 50px;
    height: 2px;
    background-color: #fd6c08;
    margin: 10px 0;
    position: relative;
}

.red-line span {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fd6c08;
    font-size: 18px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative; /* Para posicionar las líneas punteadas */
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #fd6c08;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Para posicionar las líneas punteadas */
    font-size: 1.2rem; /* o el tamaño que prefieras */
}


.benefit-icon img {
    width: 35px;
    height: 35px;
}

.benefit-content h3 {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    margin: 5px 0 0;
}

/* Líneas punteadas que conectan los iconos */
.benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px; /* Ajusta según el tamaño del ícono */
    top: 50px; /* Comienza debajo del primer ícono */
    width: 2px;
    height: 90px; /* Altura de la línea */
    border-left: 2px dotted red; /* Línea punteada roja */
}

.cta-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 20px;
}

/* Lado Derecho: Imagen y Estadísticas */
.right-side {
    width: 50%;
    position: relative;
    margin-top: 70px;
}

.section-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    top: -120px;
    left: 500px;
    text-align: left;
}

.main-image {
    width: 70%; /* Imagen más pequeña */
    margin: 0 auto;
    position: relative;
    left: -250px;
    top: 130px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.stats-overlay {
    position: absolute;
    top: 70px; /* Sobresale de la imagen */
    left: 20px;
    background: linear-gradient(to right, rgba(243, 142, 47, 0.8), rgba(235, 128, 29, 0.849));
    padding: 30px;
    border-radius: 10px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    display: block;
}

.stat-text {
    font-size: 14px;
    color: #fff;
    display: block;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background-color: #fff;
}










/* Separador de Secciones */
.separator-container {
    display: flex;
    height: 150px; /* Altura reducida */
    overflow: hidden;
    position: relative;
    margin-top: 70px;
    margin-bottom: 70px;
}

/* Lado Izquierdo: Imagen de Mecánicos */
.separator-left {
    width: 30%; /* Ocupa el 30% del ancho */
    position: relative;
    background-color: #1a1a1a;
    
}

.separator-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 0% 100%);
}

/* Lado Derecho: Fondo Rojo con Texto y Botón */
.separator-right {
    width: 70%; /* Ocupa el 70% del ancho */
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.separator-right::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('gears-pattern.png') no-repeat right center; /* Gráficos de engranajes */
    opacity: 0.2; /* Opacidad sutil */
}

/* Eliminar el espacio en blanco entre el corte y el lado derecho */
.separator-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 30%; /* Ajusta según el ancho del lado izquierdo */
    width: 0;
    height: 0;
    border-top: 250px solid transparent; /* Altura del separador */
    border-left: 50px solid #1a1a1a;; /* Color del fondo rojo */
}

.separator-content {
    text-align: left;
    color: #fff;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.separator-title {
    font-size: 28px; /* Tamaño reducido */
    font-weight: bold;
    margin: 0;
}

.separator-title .separator-highlight {
    font-weight: 900; /* Mayor peso visual para "Repair workshop" */
}

.separator-description {
    font-size: 16px; /* Tamaño reducido */
    font-weight: 300;
    margin: 10px 0 20px;
}

.separator-cta-btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 16px; /* Tamaño reducido */
    font-size: 14px; /* Tamaño reducido */
    font-weight: bold;
    border-radius: 20px; /* Bordes más redondeados */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.separator-cta-btn::after {
    content: '→';
    font-size: 16px; /* Tamaño reducido */
}




.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

/* Encabezado Centrado */
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.buy-now-link {
    color: #00bcd4;
    text-decoration: none;
    font-size: 1rem;
}

/* Contenedor Principal (Lado Izquierdo y Derecho) */
.faq-container {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* Espacio entre los dos lados */
}

/* Lado Izquierdo: Listado de Preguntas Frecuentes */
.faq-list {
    width: 50%;
}

.accordion {
    border-radius: 10px;
    overflow: hidden;
}

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}

.accordion-question span {
    font-size: 1.1rem;
    color: #000;
}

.accordion-question .icon {
    font-size: 1.5rem;
    color: #fd6c08;
}

.accordion-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-answer p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-button {
    background: linear-gradient(to right, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.6));
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/* Lado Derecho: Ilustración y Formulario */
.faq-form {
    width: 40%;
    text-align: center;
}

.illustration img {
    max-width: 100%;
    height: auto;
}

.faq-form h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.form-description {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

.question-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.question-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.submit-button {
    background: #fd6c08;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
}

.submit-button:hover {
    background: linear-gradient(90deg, #ca7b67, #ce5835);
}



.container_images {

    
    width: 100%;   
    max-width: 2200px;
   
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);
    
   }

.carousel{
 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100vw;
    height: 65vh;
  }
  
  .carousel_subtitle{
      color: var(--color-tittle);
      font-size: 1.5rem;
      margin-left: 600px;
      margin-top: -50px;
      margin-bottom: 50px;
  }
  
  
   .container2 {
      width: 100%;   
      height: 800px;
    } 
  
  
    .card_slide {
      border: 1px solid var(--soft-red);
      background-color: #f9fafe;
      width: 300px;
      height: 25%;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      padding: 30px 0 0 0;
      transition: transform 400ms;
      opacity: 0.5;
      box-shadow: none;
    }
    
  
    
    .swiper {
      width: 90%;
      height: 90%;
    }
    
    .swiper-slide {
      display: flex !important;
      justify-content: center;
      align-items: center;
    }
    
    .swiper-slide-active {
      z-index: 1;
    }
    
    .swiper-slide-active .card_slide {
      box-shadow: 0 8px 30px -7px #c9dff0;
      opacity: 1;
      transform: scale(1.5);
    }
    
    .swiper {
      margin-left: auto;
      margin-right: auto;
    }
    
    .swiper-button-next:focus,
    .swiper-button-prev:focus {
      outline: none;
    }
    .carousel_img{
      width: 220px;
    }

    .carousel_header{
        text-align: center;
        margin-bottom: 40px;
        margin-top: 100px;;
    }
   

    .carousel_header h2 {
        font-size: 2rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 100px;
        margin-top: -100px;
    }

    
    .container_footer{
        max-width: 1170px;
        margin:auto;
    }
     
    .footer_row{
	display: flex;
	flex-wrap: wrap;
}
.ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #fd6c08;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}


.span3{

    color: rgb(27, 26, 26, .0);

}

/* Estilos generales */
.certification-section {
    background-color: #fff;
    padding: 60px 0;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Encabezado */
  .section-header-certification {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header-certification h2 {
    color: #212121;
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .section-header-certification .subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 400;
  }
  
  /* Contenedor de pasos */
  .steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }
  
  /* Estilos para cada paso */
  .step {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 50px 20px 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
  }
  
  .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }
  
  /* Badge circular */
  .step-badge {
    width: 80px;
    height: 80px;
    background-color: #FEC107;
    color: #212121;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 2;
    border: none;
  }
  
  .step-text {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: -5px;
  }
  
  .step-number {
    font-size: 24px;
    font-weight: 700;
  }
  
  /* Divider amarillo */
  .divider {
    width: 50px;
    height: 2px;
    background-color: #FEC107;
    margin: 15px auto;
  }
  
  /* Imágenes */
  .step-image {
    height: 180px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .step-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  
  /* Contenido del paso */
  .step-content h3 {
    color: #212121;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .step-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
  }




/* Sección informativa */
.seccion-informativa {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contenedor {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Bloques informativos */
.bloque-informativo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Clase específica para bloques con imagen a la izquierda */
.bloque-informativo.imagen-izquierda {
    flex-direction: row;
}

.texto-bloque {
    flex: 1;
    min-width: 300px;
}

.imagen-bloque {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Títulos */
.titulo-bloque {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.titulo-bloque h2 {
    font-size: 22px;
    color: #333;
    font-weight: 700;
}

.icono-titulo {
    color: #FEC107;
    font-size: 24px;
}

/* Texto y listas */
.texto-bloque p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.lista-viñetas {
    list-style-type: none;
    margin: 20px 0;
}

.lista-viñetas li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
}

.lista-viñetas li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 20px;
}

.texto-subrayado {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
    margin: 15px 0;
    display: inline-block;
}

/* Mapa EE.UU. */
.mapa-eeuu {
    width: 250px;
    height: 250px;
    background-color: #FEC107;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mapa-eeuu::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px dashed white;
    border-radius: 50%;
}

.icono-mapa {
    color: white;
    font-size: 60px;
}

/* Dispositivos */
.enlace-dispositivos {
    color: #333;
    text-decoration: underline;
    display: inline-block;
    margin: 15px 0;
    font-weight: 500;
}

.dispositivos {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.icono-dispositivo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.icono-dispositivo i {
    font-size: 30px;
    color: #FEC107;
}

.icono-dispositivo span {
    font-size: 14px;
    color: #666;
}

/* Imágenes */
.imagen-derecha {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.imagen-dispositivos {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .bloque-informativo {
        flex-direction: column;
        padding: 30px 20px;
    }

    .bloque-informativo.imagen-izquierda {
        flex-direction: column;
    }

    .texto-bloque, .imagen-bloque {
        min-width: 100%;
    }

    .mapa-eeuu {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .dispositivos {
        justify-content: center;
    }

    
}
  
  /* Diseño responsivo */
  @media (max-width: 768px) {
    .steps-container {
      flex-direction: column;
      gap: 60px;
    }
    
    .section-header h2 {
      font-size: 30px;
    }
    
    .step {
      padding: 60px 20px 30px;
    }
  }

/* Media Queries para Responsividad */

/* Para pantallas de hasta 1024px */
@media screen and (max-width: 1024px) {

    .header-top .logo {
        display: none; /* Oculta el logo en el header-top */
    }

    .header-bottom nav {
        display: none; /* Oculta el navbar */
    }

    .header-bottom {
        justify-content: space-between;
    }

    .header-bottom .logo {
        display: flex; /* Muestra el logo en el header-bottom */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-bottom .menu-icon {
        display: block; /* Muestra el ícono de menú */
    }

    .header-bottom .appointment-btn {
        position: static; /* Restablece la posición del botón */
    }

    .hero-content h1 {
        font-size: 42px;
        margin: 20px 0 0 100px;
    }

    .hero-content h2 {
        font-size: 35px;
        margin: 20px 0 0 100px;
    }

    .learn-more-btn {
        margin-left: 100px;
        
    }

    .info-cards {
        flex-direction: row; /* Mantiene las tarjetas en horizontal */
        gap: 0px;
    }

    .repair-workshop {
        width: 45%;
        height: 200px;
    }

    .repair-workshop img {
        display: none; /* Oculta la imagen del mecánico */
    }

    .get-estimate {
        width: 45%;
        height: 200px;
    }

    .get-estimate h3 {
        font-size: 20px;
        margin: 10px 0;
    }


    .quote-btn {
        background-color: #000;
        color: #fff;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
        cursor: pointer;
        margin-top: 0px;
        margin-left: 280px;
    }

    .services-header {
        left: 200px; /* Ajusta la posición del encabezado */
    }

    .services-cards {
        flex-wrap: wrap; /* Permite que las tarjetas se envuelvan */
    }

    .service-card {
        flex: 1 1 45%; /* Ajusta el ancho de las tarjetas */
        max-width: 45%;
        margin: 10px 0;
    }














    
    .corporate-section {
        flex-direction: column;
        align-items: center;
    }

    .left-side, .right-side {
        width: 100%;
        padding-right: 0;
        left: 0;
    }
    .section-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .section-description {
        position: relative;
        left: 150px;
        text-align: center; /* Centrar el texto */
        margin-top: 150px;
        margin-right: 300px;
        padding: 0 20px; /* Agregar padding lateral */
        max-width: 90%; /* Limitar el ancho máximo */
        order: 3;
    }

    
    .benefits-list {
        order: 4; /* Mueve la lista de beneficios debajo del párrafo */
        top: -100px;
    }

    .benefit-item {
        margin-bottom: 15px; /* Reducir espacio entre items */
    }

    .cta-btn {
        position: relative;
        font-size: 12px;
        padding: 12px 22px;
        top: -50px;
    }

    .stats-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin-top: -10px;
        order: 5; /* Mueve el rectángulo de métricas debajo de los beneficios */
        width: 90%;
    }

    .main-image {
        order: 6; /* Mueve la imagen debajo del rectángulo de métricas */
        left: -10px;
        top: -30px;
        width: 100%;
    }
}

/* Para pantallas de hasta 768px */
@media screen and (max-width: 768px) {


    .header-top .reviews {
        display: none; /* Oculta las reviews en el header-top */
    }

    .hero-content h1 {
        font-size: 32px;
        margin: 20px 0 0 50px;
    }

    .hero-content h2 {
        font-size: 25px;
        margin: 20px 0 0 50px;
    }

    .learn-more-btn {
        margin-left: 50px;
        font-size: 12px;
        padding: 8px 16px;
    }

    .info-cards {
        flex-direction: column; /* Apila las tarjetas verticalmente */
        gap: 0; /* Elimina el espacio entre las tarjetas */
    }

    .repair-workshop {
        width: 90%;
        height: 180px;
    }

    .repair-workshop h3{
        font-size: 16px;
    }

    .get-estimate {
        margin-top: -10px;
        width: 90%;
        height: 180px;
    }

    .get-estimate h3{
        font-size: 16px;
    }

    .quote-btn {
        display: none;
    }

    .estimate-btn{
        font-size: 12px;
    }


    .services-header {
        left: 100px; /* Ajusta la posición del encabezado */
    }

    .service-card {
        flex: 1 1 100%; /* Ajusta el ancho de las tarjetas */
        max-width: 100%;
        margin: 10px 0;
    }


    
    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit-item:not(:last-child)::after {
        display: none; /* Ocultar líneas punteadas */
    }

    .benefit-content {
        margin-top: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        position: relative;
        left: 250px;
        font-size: 14px;
        margin-left: -200px;
    }

   


    .benefit-icon {
        width: 70px;
        height: 70px;
    
    }

    .benefit-content h3 {
        font-size: 20px;
    }

    .benefit-content p {
        font-size: 15px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 12px 20px;
    }

    .stats-overlay {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        margin-left: -10px;
        width: 95%;
        
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-text {
        font-size: 12px;
    }

    .stat-divider{
        display: none;
    }

    .faq-section {
        padding: 30px 20px;
    }
    
    .faq-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .faq-list, .faq-form {
        width: 100%;
    }
    
    .faq-header h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .accordion-question span {
        font-size: 1rem;
    }
    
    .faq-form h2 {
        font-size: 1.8rem;
    }
    
    .illustration img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .question-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    } 
}

/* Para pantallas de hasta 480px */
@media screen and (max-width: 480px) {

    .hero-content h1 {
        font-size: 28px;
        margin: 20px 0 0 0px;
        font-weight: 1200;
    }

    .hero-content h2 {
        font-size: 22x;
        margin: 50px 0 0 0px;
    }

    .learn-more-btn {
        margin-left: 20px;
        font-size: 10px;
        padding: 12px 18px;
        border-radius: 10px;
        border: none;
    }

    .repair-workshop {
        width: 90%;
        height: 160px;
    }

    .get-estimate {
        width: 90%;
        height: 160px;
    }


    .services-header {
        left: 20px; /* Ajusta la posición del encabezado */
    }

    .section-title {
        font-size: 28px; /* Reduce el tamaño del título */
    }

    .service-card {
        height: 300px; /* Reduce la altura de las tarjetas */
    }

    .service-figure h3 {
        font-size: 16px; /* Reduce el tamaño del texto en las tarjetas */
    }



    .service-popup {
      
        width: 80%;
        height: 80%;
        
       
    }
 
    .read-more-btn {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .benefit-item {
        margin-bottom: -25px; /* Reducir espacio entre items */
    }

    .benefit-content h3 {
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .stats-overlay {
        padding: 10px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-text {
        font-size: 12px;
    }

    .faq-section {
        padding: 25px 15px;
    }
    
    .faq-header h1 {
        font-size: 1.8rem;
    }
    
    .accordion-question {
        padding: 12px;
    }
    
    .accordion-question span {
        font-size: 0.9rem;
    }
    
    .accordion-question .icon {
        font-size: 1.2rem;
    }
    
    .faq-form h2 {
        font-size: 1.5rem;
    }
    
    .form-description {
        font-size: 0.9rem;
    }
    
    .illustration img {
        max-width: 250px;
    }
    
    .question-input {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .pagination-button {
        padding: 8px 12px;
    }

    .separator-title{
        font-size: 14px;
    }

    .separator-cta-btn{
        font-size: 12px;
    }

    
.footer{
    margin-top: -200px;
}
.footer-col{
    width: 100%;
  
}


.swiper {
    width: 90%;
    height: 50%;
  }

 

  .carousel_img{
    width: 100px;
  }




}