/* ==========================================================================
   RESET & ESTILOS BASE
   ========================================================================== */
:root {
    --amarillo: #ffb703;
    --amarilloC: hsl(49, 100%, 51%);
    --negro: #1a1a1a;
    --gris: #e0e0e0;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Segoe UI', sans-serif; 
    background-color: #f9f9f9; 
    overflow-x: hidden; 
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; display: block; }

/* ==========================================================================
   HEADER & NAVBAR (MOBILE FIRST - Celulares)
   ========================================================================== */
.main-header {
    background-color: var(--negro);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo a {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--amarillo);
    white-space: nowrap;
}

/* BOTÓN HAMBURGUESA (MÓVIL) */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Animación de Hamburguesa a X cuando está activo */
.nav-toggle--active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle--active span:nth-child(2) { opacity: 0; }
.nav-toggle--active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* CONTENEDOR DEL MENÚ EN MÓVIL */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #222;
    padding: 80px 30px;
    transition: right 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
    overflow-y: auto;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

/* CLASE QUE INYECTA EL JAVASCRIPT AL HACER CLIC */
.nav-menu.nav-menu--open { 
    right: 0 !important; 
}

.nav-list > li { 
    margin-bottom: 25px; 
}

.nav-list > li > a { 
    font-size: 1.2rem; 
    font-weight: 500; 
    color: #fff;
}

/* SUBMENÚS DESPLEGABLES EN MÓVIL */
.mega-menu, .sub-menu {
    display: none; 
    background-color: #2a2a2a;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
}

.mega-menu--open { display: block !important; }
.sub-menu--open { display: block !important; }

.mega-menu-col ul li { margin-bottom: 12px; }
.mega-menu-col ul li a { font-size: 1rem; color: #ccc; }
.arrow { font-size: 0.7rem; margin-left: 5px; color: var(--amarillo); }

/* ==========================================================================
   ESTILOS PARA LA PÁGINA DE INICIO (HOME) - DEL VALLE OIL
   ========================================================================== */

/* Contenedor general del Home */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

/* Títulos Globales de Sección */
.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0584EB; /* Azul corporativo secundario */
    font-weight: 700;
    margin-bottom: 10px;
}

.section-main-title {
    font-size: 2.5rem;
    color: #050D2E; /* Azul oscuro principal */
    font-weight: 800;
    margin-bottom: 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

   /* ==========================================================================
   HERO SECTION - DEL VALLE OIL (Desarrollado por Ingenio & Diseño)
   ========================================================================== */
.hero-global-export {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Ocupa el 80% de la altura de la pantalla */
    background-image: url('../assets/img/centro-distribucion-logistico-internacional.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Capa oscura translúcida para dar contraste al texto blanco */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Contenedor alineado y responsivo */
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

/* Columna de contenido alineada a la izquierda */
.hero-content-left {
    max-width: 650px; /* Evita que el texto se estire demasiado a lo ancho */
    color: #ffffff;
    animation: fadeInUp 0.8s ease-in-out;
}

.hero-content-left h1 {
    font-size: 3rem; /* Tamaño imponente para monitores */
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content-left p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Estilos del Botón de Acción (CTA) */
.btn-hero-cta {
    display: inline-block;
    background-color: #007bff; /* Cámbialo por el color corporativo de Del Valle */
    color: #ffffff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

/* Animación suave de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (Responsive para Móviles)
   ========================================================================== */

@media (max-width: 768px) {
    .hero-global-export {
        min-height: 60vh; /* Altura más cómoda para celulares */
        
        /* CAMBIO DE IMAGEN OPTIMIZADA: El navegador solo descargará esta versión ligera */
        background-image: url('../assets/img/centro-distribucion-logistico-internacional-movil.webp');
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.75); /* Oscurece el fondo de forma uniforme en móvil para legibilidad */
    }

    .hero-content-left {
        text-align: left; /* Mantiene la alineación izquierda solicitada */
    }

    .hero-content-left h1 {
        font-size: 2rem; /* Tamaño de tipografía adaptado a pantallas pequeñas */
    }

    .hero-content-left p {
        font-size: 1rem;
    }
    
    .btn-hero-cta {
        width: 100%; /* Botón a ancho completo en móvil para mejorar la usabilidad (UX) */
        text-align: center;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   SECCIÓN 1: INTRODUCCIÓN CORPORATIVA
   ========================================================================== */
.home-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555555;
}

/* --------------------------------------------------------------------------
   SECCIÓN 2: CATÁLOGO DE PRODUCTOS (GRILLA)
   -------------------------------------------------------------------------- */
.home-catalog-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Fondo gris sutil para contrastar */
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(5, 13, 46, 0.08);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #ffffff;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cambia a contain si prefieres que no se recorte nada */
    transition: transform 0.5s ease;
}

.product-card-item:hover .card-image-wrapper img {
    transform: scale(1.05); /* Efecto zoom suave al pasar el mouse */
}

.card-content-wrapper {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Empuja el botón al fondo si las descripciones varían de tamaño */
}

.card-item-title {
    font-size: 1.3rem;
    color: #050D2E;
    margin-bottom: 12px;
    font-weight: 700;
    text-align: center;
}

.card-item-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

/* Botón Ver Producto */
.btn-view-product {
    display: block;
    text-align: center;
    background-color:var(--negro);
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 auto;
    width: fit-content;
}

.btn-view-product:hover {
    background-color: var(--amarillo);
}

/* --------------------------------------------------------------------------
   SECCIÓN 3: PILARES CORPORATIVOS (3 COLUMNAS)
   -------------------------------------------------------------------------- */
.home-pillars-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.pillars-three-column-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 columna en móvil */
    gap: 40px;
}

@media (min-width: 768px) {
    .pillars-three-column-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columnas desde tablet */
    }
}

.pillar-card {
    text-align: center;
    padding: 20px;
}

.pillar-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 1.4rem;
    color: #050D2E;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* --------------------------------------------------------------------------
   SECCIÓN 4: CALL TO ACTION (CTA)
   -------------------------------------------------------------------------- */
.home-cta-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.cta-inner-box {
    background: linear-gradient(135deg, #050D2E 0%, #032169 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(5, 13, 46, 0.15);
}

.cta-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto 20px auto;
    line-height: 1.3;
}

.cta-description {
    color: #cbd5e1; /* Gris claro que contrasta con el fondo oscuro */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* Botón Contáctenos */
.btn-cta-contact {
    display: inline-block;
    background-color: #0584EB;
    color: #ffffff !important;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(5, 132, 235, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-contact:hover {
    background-color: #046ec4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 132, 235, 0.4);
}

.btn-cta-contact:active {
    transform: translateY(0);
}


/* ==========================================================================
    EFECTOS DINÁMICOS DE SCROLL
   ========================================================================== */
.main-header--scrolled {
    /*background-color: #0d0d0d;*/
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* ==========================================================================
    PLANTILLA DETALLE DE PRODUCTO (FICHA LIMPIA REESTRUCTURADA)
   ========================================================================== */

/* Contenedor General */
.product-detail-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- SECCIÓN SUPERIOR: GALERÍA Y DETALLES PRINCIPALES --- */
.product-hero-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

/* [1] Contenedor del Pase de Fotos */
.product-gallery-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
}

.slider-container-relative {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-main-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    width: 100%;
}

/* Forzamos la eliminación limpia de las barras en favor de los bullets */
.product-main-slider::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.slide-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    overflow: hidden;
}

.slide-item img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

/* CONTENEDOR DE PUNTOS INTERACTIVOS (CONSTRUCCIÓN INTEGRAL) */
.slider-bullets-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.slider-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    display: inline-block;
}

/* Punto activo con el color de marca premium */
.slider-bullet.bullet-active {
    background-color: var(--amarillo);
    transform: scale(1.1);
    width: 24px; 
    border-radius: 6px;
}

/* Bloque lateral de información de cabecera */
.product-meta-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* [2] Título del Producto */
.product-main-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--negro);
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.2;
    border-left: 5px solid var(--amarillo);
    padding-left: 20px;
}

/* [3] Descripción Principal */
.product-description-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    color: #444444;
    margin-bottom: 15px !important; 
    display: block !important;
}

.product-description-box p:last-child {
    margin-bottom: 0 !important;
}

/* Botón de Cotización con estilo de WhatsApp */
.product-action-box .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.product-action-box .whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

/* --- SECCIÓN INTERMEDIA: RESTRUCTURACIÓN A 3 BLOQUES --- */
.product-specs-section {
    margin-bottom: 40px;
    border-top: 1px solid #cfcfcf; 
    padding-top: 20px;
}

.specs-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.spec-block-card {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 1.1rem;
        line-height: 1.6;
    margin: 0;
    color: #444444;
}

h2,
.spec-block-title {
    font-size: 1.2rem;
    color: var(--amarillo);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--amarillo);
    padding-bottom: 0px;
    display: block;
    width: max-content;
}

.spec-block-text {
    line-height: 1.6;
    margin: 0;
    color: #444444;
}

ul,
.styled-spec-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
ul li,
.styled-spec-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #444444;
}

.spec-block-card ul li::before,
.styled-spec-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--amarillo);
    font-size: 0.8rem;
}

/* --- SECCIÓN INFERIOR: CARRUSEL RESPONSIVO DE RECOMENDADOS --- */
.product-carousel-section {
    border-top: 1px solid #cfcfcf;
    padding-top: 50px;
}

.carousel-section-title {
    font-size: 1.8rem;
    color: var(--negro);
    margin-top: 0;
    margin-bottom: 30px;
    font-weight: 600;
}

.product-responsive-carousel {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, 1fr); 
}

.carousel-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-product-card a { color: var(--amarillo); }

.card-link-wrapper {
    text-decoration: none;
    display: block;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

.card-image-box {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gris);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card-product-title:hover { color: var(--amarillo); }
.card-product-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--negro);
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

.carousel-product-card:hover {
    transform: translateY(-5px);
}

.carousel-product-card:hover .card-image-box img {
    transform: scale(1.05);
}


/* ==========================================================================
   MEDIA QUERIES (ESCRITORIO GENERAL - BLINDADO Y ADAPTATIVO)
   ========================================================================== */
@media (min-width: 992px) {
    .nav-toggle { display: none; } 
    
    .nav-menu {
        position: static;
        width: auto;
        max-width: 600px;
        height: auto;
        background: transparent;
        padding: 0;
        overflow-y: visible;
        box-shadow: none;
        display: flex;
        align-items: center;
        margin: 0;
    }
    
    .nav-list {
        display: flex;
        align-items: center;
        gap: 25px; 
        margin: 0;
        padding: 0;
        width: 100%;
        justify-content: flex-end;
    }
    
    .nav-list > li { 
        margin-bottom: 0; 
        position: relative; 
        white-space: nowrap; 
    }
    
    .nav-list > li > a { 
        font-size: 1rem; 
        padding: 20px 0; 
        color: #fff;
        display: flex;
        align-items: center;
    }
    
    .nav-list > li > a:hover { color: var(--amarillo); }

    .arrow {
        font-size: 0.65rem;
        margin-left: 6px;
        color: var(--amarillo);
        display: inline-block;
    }

    /* SISTEMA DE MEGA MENÚ PREMIUM */
    .menu-item-has-mega { position: relative !important; } 
    .menu-item-has-mega:hover .mega-menu { display: block !important; }
    
    .mega-menu {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: max-content; 
        background-color: var(--negro); 
        border-top: 3px solid var(--amarillo);
        padding: 30px 0;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .mega-menu::before {
        content: '';
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
    }
    
    .mega-menu-grid {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        gap: 45px;
        width: 100%;
        margin: 0;
        padding: 0 25px;
    }
    
    .mega-menu-col ul li { margin-bottom: 12px; }
    .mega-menu-col ul li a { 
        color: #ffffff !important; 
        font-size: 0.95rem; 
        padding: 4px 0;
        display: block;
        white-space: nowrap; 
        transition: color 0.2s ease, transform 0.2s ease;
    }
    
    .mega-menu-col ul li a:hover { 
        color: var(--amarillo) !important; 
        transform: translateX(5px);
    }

    /* DESPLEGABLE DE IDIOMAS */
    .menu-item-has-dropdown { position: relative !important; }
    .sub-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 160px;
        background-color: var(--negro);
        border-top: 3px solid var(--amarillo);
        padding: 10px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        border-radius: 0 0 4px 4px;
    }
    .sub-menu::before {
        content: '';
        position: absolute;
        top: -15px; 
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent; 
    }

    .sub-menu li a {
        padding: 8px 15px;
        color: #ddd;
        font-size: 0.95rem;
        display: block;
        transition: all 0.2s ease;
    }
    
    .sub-menu li a:hover { color: var(--amarillo); background-color: #222; }
    .menu-item-has-dropdown:hover .sub-menu { display: block; }

    /* COMPORTAMIENTO 40% Y 60% DE LA FICHA EN ESCRITORIO */
    .product-gallery-wrapper {
        flex: 0 0 calc(40% - 20px);
        max-width: calc(40% - 20px);
    }

    .product-meta-wrapper {
        flex: 0 0 calc(60% - 20px);
        max-width: calc(60% - 20px);
    }

    /* MAQUETADO DE 3 COLUMNAS HORIZONTALES */
    .specs-grid-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px;
        align-items: start;
    }
    
    h1.product-main-title {
        font-size: 2.0rem;
    }

    /* CARRUSEL INFERIOR A 4 COLUMNAS */
    .product-responsive-carousel {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Optimización para Monitores Grandes (Desde 1200px) */
@media (min-width: 1200px) {
    .nav-list { gap: 35px; }
    .nav-list > li > a { font-size: 1rem; }
}

/* ==========================================================================
   BOTÓN DE COTIZACIÓN (AISLADO DE BOTONES FLOTANTES GLOBALES)
   ========================================================================== */
.product-action-box {
    margin-top: 25px;
    margin-bottom: 25px;
    display: block; /* Asegura que respete el flujo del texto abajo de la descripción */
}

.product-action-box .btn-quote-product {
    /* 🛡️ Desactivamos cualquier herencia de flotado global */
    position: static !important;
    bottom: auto !important;
    right: auto !important;
    z-index: 1 !important;
    
    /* Estilos del botón estilo bloque premium */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #ffffff !important; /* Forzamos texto blanco */
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    width: auto; /* Se adapta al texto en escritorio */
}

/* En celulares hacemos que el botón abarque todo el ancho para que sea más fácil de tocar */
@media (max-width: 767px) {
   .home-container,
   .cta-inner-box{ 
    overflow-wrap: break-word; /* Rompe palabras largas si no caben */
  word-break: break-word;    /* Compatibilidad adicional para navegadores antiguos */
  word-wrap: break-word;     /* Alternativa clásica */
   }
   
    .section-main-title{font-size:1.7rem; font-weight: 800;} 
    .cta-title{ font-size:1.2em; font-weight: 800; max-width: 100%;}
    
    .product-action-box .btn-quote-product {
        display: flex;
        width: 100%;
        text-align: center;spec-block-title
    }
}

/* Efectos de interacción limpios */
.product-action-box .btn-quote-product:hover {
    background-color: #20ba5a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 186, 90, 0.4);
}

.product-action-box .btn-quote-product:active {
    transform: translateY(0);
}