.elementor-4260 .elementor-element.elementor-element-235aa57{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4260 .elementor-element.elementor-element-299c749{--display:flex;}.elementor-4260 .elementor-element.elementor-element-43e214d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-037d44b *//* Importar fuente (si no la tienes ya) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-section {
    /* --- INICIO DEL TRUCO PARA ANCHO COMPLETO --- */
    width: 100vw;          /* Fuerza el ancho al 100% de la ventana del navegador */
    position: relative;    /* Necesario para que los siguientes cálculos funcionen */
    left: 50%;             /* Mueve el elemento al centro exacto */
    right: 50%;
    margin-left: -50vw;    /* Lo "estira" hacia la izquierda la mitad del ancho de la pantalla */
    margin-right: -50vw;   /* Lo "estira" hacia la derecha la mitad del ancho de la pantalla */
    /* --- FIN DEL TRUCO --- */

    /* El resto de tu CSS original sigue aquí abajo: */
    /* Reemplaza la URL con tu imagen real */
    background-image: url(https://tanquesycisternas.com.mx/wp-content/uploads/2026/02/Fondo-scaled.png); 
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Capa Azul (Overlay) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradado azul similar al de la imagen */
    background: linear-gradient(90deg, rgba(0, 85, 184, 0.95) 0%, rgba(0, 85, 184, 0.85) 60%, rgba(0, 85, 184, 0.4) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2; /* Para que el texto quede sobre la capa azul */
    max-width: 1200px;
    margin: 0 auto;
}

/* Textos */
.breadcrumb {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-bottom: 15px;
}

.active {
    color: #F37B22; /* Naranja */
    font-weight: bold;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-orange {
    color: #F37B22;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Lista de características */
.hero-features {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 600;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-icon {
    color: #F37B22;
    font-style: normal;
}

/* Botones */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #F37B22;
    color: white;
    border: 2px solid #F37B22;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

/* Badge de Descuento */
.discount-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background-color: #F37B22;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(243, 123, 34, 0.4);
}/* End custom CSS */