/*==================================================
GOOGLE VARIABLES
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,600&display=swap');

:root {

    --primary: #5fbd44;
    --primary-dark: #01825b;
    --secondary: #5dbb46;
    --orange: #f6811e;
    --orange-hover: #df7814;
    --dark: #18242c;
    --text: #5d6775;
    --light: #f6f8fb;
    --white: #ffffff;
    --border: #e9edf2;
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --radius: 18px;
    --transition: .35s ease;

}

/*==================================================
RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

p {
    font-size: 1.2rem;
    text-align: justify;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

section {
    position: relative;
    padding: 100px 0;
}
h2, h5 {
    color: var(--text)
}
/*==================================================
TOPBAR
==================================================*/

.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-social a:hover {
    background: #fff;
    color: var(--primary);
}

/*==================================================
HEADER
==================================================*/

.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);
}

.navbar {
    padding: 18px 0;
}

.navbar-brand img {
    height: 42px;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    color: #27323c;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 18px !important;
    position: relative;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 35px;
    height: 3px;
    border-radius: 20px;
    background: var(--primary);
}

.nav-link:hover {
    color: var(--primary);
}

.dropdown-menu {
    border: none;
    border-radius: 18px;
    padding: 15px;
    box-shadow: var(--shadow);
}

.dropdown-item {
    padding: 12px 16px;
    border-radius: 10px;
}

.dropdown-item:hover {
    background: #eef9f0;
    color: var(--primary);
}

/*==================================================
BOTON PRINCIPAL
==================================================*/

.btn-service {
    background: var(--orange);
    color: #fff;
    padding: 15px 24px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-service:hover {
    background: var(--orange-hover);
    transform: translateY(-3px);
    color: #fff;
}

/*==================================================
HERO
==================================================*/

.hero {
    background: linear-gradient(90deg, #ffffff 42%, rgba(255, 255, 255, 0.94) 47%, rgba(255, 255, 255, 0.6) 52%, rgba(255, 255, 255, 0) 70%), url('https://i.imgur.com/nrW9elB.png') no-repeat center right;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 5;
}

/* Título principal hero */
.hero-title {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
}

.text-green {
    color: #2f8d3c;
}

/* Descripción del hero */
.hero-desc {
    color: #66727d;
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Beneficios en fila horizontal */
.hero-benefits-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 120px;
}

.hero-benefit-icon {
    width: 34px;
    height: 34px;
    background: #eef8f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #2f8d3c;
    flex-shrink: 0;
}

.hero-benefit-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-benefit-text strong {
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    display: block;
}

.hero-benefit-text span {
    font-size: 12px;
    color: #6b7480;
    line-height: 1.4;
}

.btn-outline-green {
    border: 2px solid #2f8d3c;
    padding: 18px 34px;
    border-radius: 14px;
    font-weight: 700;
    color: #2f8d3c;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 450px;
}

.hero-card {
    position: absolute;
    right: 15px;
    bottom: 20px;
    background: white;
    width: 260px;
    padding: 18px 20px;
    border-radius: 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
    z-index: 4;
}

.hero-card h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #16222b;
}

.hero-card p {
    font-size: 12px;
    color: #687480;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.cert-logos {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}

.cert-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f0f4f8;
    color: #16222b;
    border: 1px solid #dde3ea;
}

.cert-badge-green {
    background: #eef8f0;
    color: #2f8d3c;
    border-color: #c3e6cb;
}

.card-icon {
    width: 58px;
    height: 58px;
    background: #edf8ef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2f8d3c;
    font-size: 28px;
    flex-shrink: 0;
}

.hero-section {
    background: #f7faf8;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero-content {
    position: relative;
    z-index: 5;
}



.hero-description {
    color: #66727d;
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 500px;
}

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

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #eef8f0;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    flex-shrink: 0;
}

.feature-item h6 {
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-item p {
    color: #6b7480;
    margin: 0;
    font-size: 15px;
}

/*==================================================
BOTONES HERO
==================================================*/

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-call {
    background: var(--orange);
    color: #fff;
    border-radius: 14px;
    padding: 18px 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call small {
    display: block;
    font-weight: 500;
    opacity: .85;
}

.btn-call:hover {
    background: var(--orange-hover);
    color: #fff;
}

.btn-quote {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 14px;
    padding: 18px 28px;
    font-weight: 700;
}

.btn-quote:hover {
    background: var(--primary);
    color: #fff;
}

/*==================================================
IMAGEN HERO
==================================================*/

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
}

.hero-bg {
    position: absolute;
    width: 100%;
    border-radius: 30px;
}

.hero-truck {
    position: relative;
    z-index: 2;
    width: 95%;
}

/*==================================================
TARJETA CERTIFICADO
==================================================*/

.certificate-card {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 340px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    z-index: 4;
}

.certificate-top {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.certificate-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef8f0;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.certificate-card h5 {
    font-weight: 800;
    margin-bottom: 8px;
}

.certificate-card p {
    color: #687480;
    font-size: 14px;
}

.certificate-bottom {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certificate-bottom img {
    width: 65px;
    opacity: .8;
}

/*==================================================
TÍTULOS DE SECCIÓN
==================================================*/

.section-mini {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 15px;
}

.section-description {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

/*==================================================
SERVICIOS
==================================================*/

.services-section {
    background: #ffffff;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .05);
    transition: .35s;
    height: 100%;
    border: 1px solid #edf1f5;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 230px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text);
    margin-bottom: 20px;
}

.service-content ul {
    margin-bottom: 25px;
}

.service-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #4f5965;
    font-size: 15px;
}

.service-content li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    background: #eef9ef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 13px;
    font-weight: bold;
    flex-shrink: 0;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
}

.service-content a:hover {
    gap: 16px;
}

/*==================================================
POR QUÉ ELEGIRNOS
==================================================*/

.why-us {
    position: relative;
    background: url("../img/backgrounds/why-us.jpg") center center;
    background-size: cover;
    padding: 90px 0 80px 0;
    color: #fff;
    overflow: visible;
}

.why-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #01825b;
    /* Restaurado al verde original */
    z-index: 1;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.why-us-btn-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.why-us-btn-wrap .btn-service {
    width: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-us-title {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-green-light {
    color: #5dbb46 !important;
    /* Verde claro como el badge de la imagen */
    font-weight: 700;
}

.counter-card {
    text-align: center;
    padding: 10px;
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: #2f8d3c;
    /* Círculo verde */
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    /* Icono blanco */
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.counter-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}

.counter-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.3;
}

.technician-image {
    position: relative;
    margin-top: 30px;
}

.technician-image img {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    vertical-align: bottom;
}

/*==================================================
SEGURIDAD
==================================================*/

.security-section {
    background: #f7f9fb;
}

.security-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.security-icon {
    width: 70px;
    height: 70px;
    background: #eef8f0;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 28px;
    flex-shrink: 0;
}

.security-item h5 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}

.security-item p {
    color: var(--text);
    margin: 0;
}

.security-section h2 {
    font-weight: 800;
    font-size: 46px;
}

/*==================================================
EMERGENCIA
==================================================*/

.emergency-card {
    background: var(--primary);
    color: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.emergency-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    margin-bottom: 25px;
}

.emergency-card h4 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.emergency-card ul {
    margin: 25px 0;
}

.emergency-card li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.btn-emergency {
    width: 100%;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    padding: 16px;
    border-radius: 14px;
    margin-top: 10px;
}

.btn-emergency:hover {
    background: #f2f2f2;
}

/*==================================================
CTA SECTION
==================================================*/

.cta-section {
    padding: 90px 0;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(90deg, #2f8d3c, #58b63f);
    border-radius: 26px;
    padding: 45px 50px;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -180px;
    right: -120px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cta-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}

.cta-left h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-left p {
    margin: 0;
    opacity: .9;
}

.cta-box .btn-light {
    border-radius: 14px;
    padding: 16px 30px;
    font-weight: 700;
    color: var(--primary);
}

.cta-box .btn-light:hover {
    transform: translateY(-3px);
}

.cta-contact {
    text-align: right;
}

.cta-contact span {
    display: block;
    opacity: .8;
    font-size: 15px;
}

.cta-contact strong {
    font-size: 24px;
    font-weight: 800;
}

/*==================================================
COMERCIALIZADOR INTEGRAL
==================================================*/

.comercializador-section {
    padding: 60px 0 50px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Título con C decorativa */
.comercializador-title {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 36px;
    line-height: 1;
}

.comercializador-c {
    font-size: clamp(5rem, 10vw, 9rem);
    font-weight: 900;
    color: var(--primary);
    line-height: 0.85;
    display: block;
    margin-right: 4px;
    flex-shrink: 0;
}

.comercializador-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin: 0;
    padding-top: 4px;
}

/* Columnas de información */
.comercializador-cols {
    border: 1.5px solid #d8d8d8;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 50px;
}

.com-col {
    padding: 28px 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.com-col-border {
    border-right: 1.5px solid #d8d8d8;
}

.com-col p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.com-orange {
    color: #f68b1f;
    font-weight: 600;
}

.com-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary);
    text-transform: uppercase;
    border-top: 2px solid var(--primary);
    padding-top: 10px;
    margin-top: auto;
}

/* Caja de marcas (columna naranja) */
.com-marcas-box {
    background: #f68b1f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 10px;
    flex: 1;
    gap: 6px;
}

.com-marca-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.com-marca-item img {
    max-height: 44px;
    max-width: 90px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.com-marca-divider {
    width: 1px;
    background: rgba(255,255,255,0.4);
    align-self: stretch;
}

/* Diagrama cadena de valor */
.com-cadena {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0 4px;
}

.com-paso {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 90px;
    max-width: 110px;
}

.com-paso-top {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #333;
    line-height: 1.4;
    min-height: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
}

.com-paso-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    position: relative;
    flex-shrink: 0;
}

.com-paso-dark {
    background: #1a5c32;
}

.com-paso-medium {
    background: #2f8d3c;
}

.com-paso-num {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.com-paso-label {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #333;
    line-height: 1.4;
    margin-top: 10px;
    min-height: 32px;
    text-align: center;
}

.com-arrow {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    padding: 0 4px;
    margin-bottom: 0;
    align-self: center;
    position: relative;
    top: 4px;
}
.timeline-container {
  position: relative;
  z-index: 1;
  margin-top: 50px; /* Aumentado de 20px a 50px para separar de la sección superior */
}

.timeline-title {
  color: #e0701b;
  font-size: 30px; /* Aumentado de 20px a 30px para que sea más grande */
  font-weight: 800; /* Un poco más grueso el texto */
  margin-bottom: 45px; /* Aumentado de 30px a 45px para separar de los círculos */
  letter-spacing: 0.5px;
}

    .timeline-wrapper {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 20px 0;
    }

    .timeline-line {
      position: absolute;
      top: 65px;
      left: 5%;
      width: 90%;
      height: 2px;
      background-color: #d1b894;
      z-index: 0;
    }

    .timeline-item {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      width: 18%;
      transition: transform 0.3s ease;
    }

    .timeline-item:hover {
      transform: translateY(-5px);
    }

    .node-avatar {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      overflow: hidden;
      border: 3px solid #ffffff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      background-color: #eee;
      margin-bottom: 15px;
      transition: border-color 0.3s ease;
    }

    .timeline-item.active .node-avatar {
      border-color: #e0701b;
    }

    .node-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .node-year {
      color: #3d6938;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .node-label {
      color: #666666;
      font-size: 14px;
      text-align: center;
      font-weight: 500;
    }

/* Responsive */
@media (max-width: 992px) {
    .comercializador-cols {
        flex-direction: column;
    }
    .com-col-border {
        border-right: none;
        border-bottom: 1.5px solid #d8d8d8;
    }
    .com-cadena {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .comercializador-c {
        font-size: 5rem;
    }
    .comercializador-heading {
        font-size: 1.4rem;
    }
    .com-paso-circle {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
}

/*==================================================
FOOTER
==================================================*/
.footer {
    background: #01825b;
    color: #fff;
    padding-top: 90px;
}

.footer-logo {
    max-width: 190px;
    margin-bottom: 25px;
    /* Si decides usar <img src="logo.png" class="footer-logo"> */
    filter: brightness(0) invert(1);
    /* Convierte cualquier logo oscuro en blanco puro */
}
.footer-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 35px 0;
    flex-wrap: wrap;
}

/* Regla para agrandar y mantener la proporción de los logos */
.footer-brand-logo {
    height: 75px; /* Ajusta este valor si los quieres más grandes o más pequeños */
    width: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
   filter: brightness(0) invert(1);
}

.footer-brand-logo:hover {
    transform: scale(1.05);
}


.footer p {
    color: #fff;
    line-height: 1.8;
}

.footer h5 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer a {
    color: #fff;
}

.footer a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.footer-social a:hover {
    background: var(--orange);
}

.footer-contact li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--orange);
    margin-top: 3px;
}

.footer hr {
    border-color: #fff;
    margin: 55px 0 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}
/*==================================================
ANIMACIONES
==================================================*/

.service-card,
.counter-card,
.security-item,
.emergency-card,
.cta-box {
    transition: .35s ease;
}

.service-card:hover,
.counter-card:hover {
    transform: translateY(-8px);
}

.emergency-card:hover {
    transform: scale(1.02);
}

.cta-box:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

/*==================================================
RIPPLE
==================================================*/

.btn-orange,
.btn-service {

    position: relative;

    overflow: hidden;

}

.ripple {

    position: absolute;

    border-radius: 50%;

    transform: scale(0);

    animation: ripple .6s linear;

    background: rgba(255, 255, 255, .4);

    pointer-events: none;

}

@keyframes ripple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}

/*==================================================
BOTÓN SUBIR
==================================================*/

.scrollTop {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border: none;

    background: #2f8d3c;

    color: white;

    border-radius: 50%;

    font-size: 22px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    box-shadow: 0 15px 30px rgba(0, 0, 0, .2);

    z-index: 9999;

}

.scrollTop.active {

    opacity: 1;

    visibility: visible;

}

.scrollTop:hover {

    background: #f68b1f;

    transform: translateY(-5px);

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {
    .hero-title {
        font-size: 52px;
    }

    .hero-image-wrapper {
        min-height: 520px;
    }

    .certificate-card {
        width: 300px;
    }
}

@media(max-width:991px) {
    .hero {
        background: #ffffff !important;
        padding: 50px 0;
        text-align: center;
    }

    .hero-right {
        min-height: 350px;
        background: url('https://i.imgur.com/nrW9elB.png') no-repeat center;
        background-size: cover;
        border-radius: 20px;
        margin-top: 30px;
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .hero-card {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 auto;
        width: 90% !important;
        max-width: 320px;
    }

    .topbar {
        display: none;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar-brand img {
        height: 58px;
    }

    .hero-section {
        text-align: center;
        padding-top: 70px;
    }

    .hero-description {
        margin: auto;
    }

    .hero-features {
        margin-top: 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 60px;
        min-height: auto;
    }

    .certificate-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 30px auto 0;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .why-us {
        text-align: center;
    }

    .technician-image {
        margin-top: 60px;
    }

    .cta-left {
        flex-direction: column;
        text-align: center;
    }

    .cta-contact {
        text-align: center;
        margin-top: 30px;
    }

    .footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media(max-width:768px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-call,
    .btn-quote {
        width: 100%;
        justify-content: center;
    }

    .service-content {
        padding: 25px;
    }

    .service-content h4 {
        font-size: 22px;
    }

    .counter-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .counter-card h3 {
        font-size: 18px;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-left h3 {
        font-size: 28px;
    }

    .security-section h2 {
        font-weight: 800;
        font-size: 36px;
    }

}

@media(max-width:576px) {
    section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;

    }

    .security-item {

        flex-direction: column;

        text-align: center;

    }

    .security-icon {

        margin: auto;

    }

    .emergency-card {

        padding: 30px;

    }

    .footer-bottom div {

        flex-direction: column;

        gap: 10px;

    }

}
/*==================================================
PÁGINA NOSOTROS
==================================================*/

/* --- Page header / breadcrumb --- */
.page-header {
    position: relative;
    padding: 160px 0 70px 0;
    background: linear-gradient(120deg, rgba(1,130,91,.95), rgba(95,189,68,.92)), url('https://i.imgur.com/9P3znaP.png') center/cover;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.10), transparent 55%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-eyebrow {
    display: inline-block;
    color: #d9f2dd;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.page-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,.88);
    font-size: 17px;
    max-width: 620px;
    margin-bottom: 0;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    font-weight: 600;
    margin-top: 22px;
}

.breadcrumb-nav a {
    color: #fff;
}

.breadcrumb-nav i {
    font-size: 11px;
    color: rgba(255,255,255,.6);
}

/* --- Historia / Quienes somos --- */
.about-section {
    background: #ffffff;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    width: 100%;
    height: 460px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-badge {
    position: absolute;
    left: -25px;
    bottom: -25px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-badge .counter-icon {
    margin: 0;
    flex-shrink: 0;
}

.about-badge strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.about-badge span {
    font-size: 13px;
    color: var(--text);
}

.about-text p {
    color: var(--text);
    margin-bottom: 18px;
}

/* --- Misión / Visión / Valores --- */
.value-card {
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 45px rgba(0,0,0,.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.10);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eef8f0;
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.value-card h4 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    color: var(--text);
    font-size: 15px;
    margin: 0;
}

/* --- Equipo --- */
.team-section {
    background: #f7f9fb;
}

.team-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,.05);
    border: 1px solid #edf1f5;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.10);
}

.team-photo {
    height: 260px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.team-card:hover .team-photo img {
    transform: scale(1.06);
}

.team-info {
    padding: 24px 20px;
}

.team-info h5 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-info span {
    display: block;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef8f0;
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

/* --- Responsive Nosotros --- */
@media (max-width: 992px) {
    .page-header {
        padding: 130px 0 60px 0;
    }
    .page-header h1 {
        font-size: 34px;
    }
    .about-badge {
        left: 15px;
        bottom: -20px;
        padding: 16px 18px;
    }
    .about-img-wrap {
        margin-bottom: 50px;
    }
}

    .soluciones-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
      box-sizing: border-box;
    }

    .soluciones-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Título principal */
    .soluciones-header {
      position: relative;
      margin-bottom: 50px;
      padding-left: 10px;
    }

  .soluciones-title-container {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

    .soluciones-title-main {
      font-size: clamp(3rem, 6vw, 4.8rem);
      font-weight: 900;
      color: #2b3942;
      letter-spacing: -1.5px;
      line-height: 1;
    }

   .soluciones-title-sub {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #e0701b;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-top: -18px; /* Eleva la palabra 'técnicas' para que no se encime */
}

    /* Grids de tarjetas */
    .cards-row-top {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 35px;
    }

    .cards-row-bottom {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .cards-row-bottom .solucion-card {
      width: calc(28% - 10px);
      min-width: 280px;
    }

    /* Estilo individual de tarjeta */
    .solucion-card {
      position: relative;
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      padding: 25px 18px 20px 18px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 25px;
    }

    /* Borde lateral izquierdo de color */
    .solucion-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 10px;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px;
    }

    /* Variaciones de color por categoría */
    .card-hogar::before { background-color: #1c5e2a; }
    .card-comercial::before { background-color: #388e3c; }
    .card-institucional::before { background-color: #e0701b; }
    .card-movilidad::before { background-color: #00a8e8; }
    .card-agro::before { background-color: #1c5e2a; }
    .card-complementarias::before { background-color: #388e3c; }

    /* Titulo de tarjeta */
    .card-title {
      font-size: 14.5px;
      font-weight: 800;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      width: 100%;
    }

    .card-hogar .card-title { color: #1c5e2a; }
    .card-comercial .card-title { color: #388e3c; }
    .card-institucional .card-title { color: #e0701b; }
    .card-movilidad .card-title { color: #00a8e8; }
    .card-agro .card-title { color: #1c5e2a; }
    .card-complementarias .card-title { color: #388e3c; }

    /* Icono flotante superior derecho */
    .card-icon {
      position: absolute;
      top: -30px;
      right: 12px;
      width: 58px;
      height: 58px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-icon svg {
      width: 48px;
      height: 48px;
    }

    /* Texto dentro de la tarjeta */
    .card-text {
      font-size: 13.5px;
      line-height: 1.45;
      color: #555555;
      font-weight: 700;
    }

    /* Frase final */
    .soluciones-quote {
      text-align: center;
      font-size: 18px;
      font-weight: 700;
      font-style: italic;
      color: #4a5568;
      max-width: 900px;
      margin: 20px auto 0 auto;
      line-height: 1.4;
    }

    /* Responsivo */
    @media (max-width: 992px) {
      .cards-row-top {
        grid-template-columns: repeat(2, 1fr);
      }
      .cards-row-bottom {
        flex-wrap: wrap;
      }
      .cards-row-bottom .solucion-card {
        width: 100%;
        max-width: none;
      }
    }

    @media (max-width: 576px) {
      .cards-row-top {
        grid-template-columns: 1fr;
      }
      .soluciones-title-sub {
        position: relative;
        display: block;
        top: 0;
        right: 0;
        margin-top: -10px;
      }
    }
/* Sección completa a ancho total de pantalla */
    .megas-ahorro-section {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      background-color: #093b1d;
      display: grid !important;
      grid-template-columns: 1fr 1fr !important; /* 50% texto / 50% imagen */
      align-items: stretch !important;
      min-height: 560px;
      overflow: hidden;
      font-family: 'Montserrat', sans-serif;
      box-sizing: border-box;
    }

    .megas-ahorro-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* COLUMNA IZQUIERDA: Alineada hacia el centro/imagen */
    .megas-ahorro-section .megas-col-text {
      background-color: #093b1d;
      background-image: radial-gradient(circle at 0% 110%, #04210f 45%, transparent 46%);
      padding: 3.5rem 2rem 3.5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end; /* Mantiene el contenido pegado a la imagen */
      height: 100%;
    }

    /* Caja contenedora para limitar el ancho del bloque de texto */
    .megas-ahorro-box {
      width: 100%;
      max-width: 540px;
    }

    /* Título Principal */
    .megas-ahorro-title {
      color: #ffffff;
      font-size: clamp(2.2rem, 4.2vw, 3.8rem);
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -1px;
      margin-bottom: 25px;
    }

    .megas-ahorro-title span {
      display: block;
    }

    .megas-ahorro-title .highlight-orange {
      color: #c65f1a;
    }

    /* Párrafo Informativo */
    .megas-ahorro-desc {
      color: #d1e2d7;
      font-size: 0.95rem;
      line-height: 1.55;
      margin-bottom: 30px;
      font-weight: 400;
    }

    .megas-ahorro-desc strong {
      color: #ffffff;
      font-weight: 700;
    }

    /* Grid de 4 tarjetas (2x2) */
    .megas-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .megas-stat-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 18px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .megas-stat-number {
      font-size: clamp(1.8rem, 2.5vw, 2.4rem);
      font-weight: 900;
      line-height: 1;
      margin-bottom: 8px;
    }

    .megas-stat-number.orange {
      color: #c65f1a;
    }

    .megas-stat-number.green {
      color: #388e3c;
    }

    .megas-stat-label {
      color: #8fb99e;
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.25;
    }

    /* COLUMNA DERECHA: Imagen borde a borde */
    .megas-ahorro-section .megas-col-img {
      width: 100%;
      height: 100%;
      padding: 0 !important;
      margin: 0 !important;
      position: relative;
    }

    .megas-ahorro-section .megas-col-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Adaptación para pantallas móviles */
    @media (max-width: 900px) {
      .megas-ahorro-section {
        grid-template-columns: 1fr !important;
      }
      .megas-ahorro-section .megas-col-text {
        align-items: flex-start;
        padding: 3rem 1.5rem;
      }
      .megas-ahorro-box {
        max-width: 100%;
      }
      .megas-ahorro-section .megas-col-img {
        height: 350px;
      }
    }

    @media (max-width: 480px) {
      .megas-stats-grid {
        grid-template-columns: 1fr;
      }
    }

      .ventajas-cards-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
      box-sizing: border-box;
    }

.ventajas-cards-section {
  padding: 80px 20px; /* Aumentado de 40px a 80px */
  margin: 50px auto;
}

    /* Grid principal de 4 columnas */
    .ventajas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 65px;
    }

    .ventaja-item {
      display: flex;
      flex-direction: column;
    }

    /* Caja blanca con texto */
    .ventaja-card-box {
      position: relative;
      background: #ffffff;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      padding: 22px 18px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      text-align: center;
    }

    /* Borde grueso lateral izquierdo */
    .ventaja-card-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 8px;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
    }

    .card-1 .ventaja-card-box::before { background-color: #1c5e2a; }
    .card-2 .ventaja-card-box::before { background-color: #388e3c; }
    .card-3 .ventaja-card-box::before { background-color: #e0701b; }
    .card-4 .ventaja-card-box::before { background-color: #00a8e8; }
/* Subtítulo interno ("GLP/Propano") */
.card-subhead {
  font-size: 1.25rem; /* Aumentado de 1rem a 1.25rem */
  margin-bottom: 14px;
  color: #e0701b;
  font-weight: 800;
}

/* Subtítulos inferiores ("PORTABILIDAD Y VERSATILIDAD", etc.) */

    .card-body-text {
      color: #333333;
      font-size: 0.88rem;
      line-height: 1.45;
      font-weight: 600;
    }

    .card-body-text .highlight-blue {
      color: #00a8e8;
      font-weight: 800;
    }

    /* Pie de la tarjeta (Icono + Etiqueta) */
    .ventaja-card-footer {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 15px;
      padding-left: 5px;
    }

    .ventaja-footer-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ventaja-footer-icon svg {
      width: 100%;
      height: 100%;
    }

    .ventaja-footer-label {
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.2;
      letter-spacing: 0.2px;
    }

    .card-1 .ventaja-footer-label { color: #1c5e2a; }
    .card-2 .ventaja-footer-label { color: #388e3c; }
    .card-3 .ventaja-footer-label { color: #e0701b; }
    .card-4 .ventaja-footer-label { color: #00a8e8; }

    /* Frase final inferior */
    .ventajas-footer-quote {
      text-align: center;
      font-size: 0.95rem;
      font-weight: 700;
      font-style: italic;
      color: #718096;
      max-width: 1000px;
      margin: 0 auto;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Adaptabilidad a dispositivos móviles y tabletas */
    @media (max-width: 992px) {
      .ventajas-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .ventajas-grid {
        grid-template-columns: 1fr;
      }
      .ventaja-card-box {
        min-height: auto;
      }
    }

    /* Sección completa con fondo naranja */
    .megas-pasos-section {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 60px 20px 40px 20px;
      background-color: #df6d21;
      font-family: 'Montserrat', sans-serif;
      box-sizing: border-box;
      position: relative;
      overflow: hidden;
    }

    .megas-pasos-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .megas-pasos-container {
      max-width: 1250px;
      margin: 0 auto;
      position: relative;
    }

    /* Título principal en blanco */
    .megas-pasos-title {
      color: #ffffff;
      font-size: clamp(1.8rem, 3.8vw, 2.8rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.5px;
      margin-bottom: 30px;
      text-align: left;
    }

    /* Layout principal: Tarjeta Blanca + Foto del Operario */
    .megas-pasos-layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      align-items: flex-end;
      gap: 20px;
      position: relative;
    }

    /* Tarjeta blanca con los 4 pasos */
    .megas-pasos-card {
      background: #ffffff;
      border-radius: 8px;
      padding: 45px 35px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      position: relative;
      z-index: 1;
    }

    /* Grid de los 4 Pasos */
    .megas-steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    /* Línea conectora horizontal detrás de los círculos */
    .megas-steps-line {
      position: absolute;
      top: 25px;
      left: 12%;
      width: 76%;
      height: 2px;
      background-color: #e2e8f0;
      z-index: 0;
    }

    /* Item individual del paso */
    .megas-step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    /* Círculo verde numerado */
    .megas-step-circle {
      width: 52px;
      height: 52px;
      background-color: #12542a;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 22px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .megas-step-heading {
      color: #222222;
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .megas-step-desc {
      color: #555555;
      font-size: 0.82rem;
      line-height: 1.45;
      font-weight: 600;
    }

    /* Foto del operario a la derecha desbordando suavemente abajo */
    .megas-pasos-image {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: -40px;
    }

    .megas-pasos-image img {
      width: 100%;
      max-width: 340px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Adaptación móvil y tabletas */
    @media (max-width: 1024px) {
      .megas-pasos-layout {
        grid-template-columns: 1fr;
      }

      .megas-pasos-image {
        display: none; /* Se oculta la imagen flotante en pantallas angostas */
      }
    }

    @media (max-width: 768px) {
      .megas-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
      }

      .megas-steps-line {
        display: none;
      }

      .megas-pasos-card {
        padding: 30px 20px;
      }
    }

    @media (max-width: 480px) {
      .megas-steps-grid {
        grid-template-columns: 1fr;
      }
    }
/* Campo de Mensaje */
.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Botón de Enviar */
.form-submit-btn {
  background-color: #e0701b;
  color: #ffffff;
  font-family: 'Oswald', 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  padding: 15px 35px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.1s ease;
  letter-spacing: 0.5px;
  margin-top: 10px;
  width: 100%;
}

.form-submit-btn:hover {
  background-color: #c65f1a;
}

.form-submit-btn:active {
  transform: scale(0.99);
}
      .contacto-form-section {
      width: 100%;
      background-color: #ffffff;
      padding: 60px 20px 80px 20px;
      font-family: 'Montserrat', sans-serif;
      box-sizing: border-box;
    }

    .contacto-form-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .contacto-container {
      max-width: 900px;
      margin: 0 auto;
    }

    /* Título principal centrado */
    .contacto-title {
      color: #e0701b;
      font-family: 'Oswald', 'Montserrat', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.5px;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    /* Línea naranja decorativa */
    .contacto-line-accent {
      width: 50px;
      height: 4px;
      background-color: #e0701b;
      margin-bottom: 20px;
      border-radius: 2px;
    }

    /* Subtítulo informativo */
    .contacto-subtitle {
      color: #333333;
      font-size: 0.95rem;
      line-height: 1.55;
      font-weight: 500;
      margin-bottom: 40px;
      text-align: left;
    }

    /* Tarjeta del formulario */
    .contacto-card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      padding: 45px 40px;
      position: relative;
      border-top: 6px solid #e0701b;
    }

    /* Grid del formulario (2 Columnas) */
    .contacto-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px 20px;
    }

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

    .form-group.full-width {
      grid-column: span 2;
    }

    /* Estilos de Etiquetas (Labels) */
    .form-label {
      font-family: 'Oswald', 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: #111111;
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }

    /* Campos de Entrada (Inputs) */
    .form-input {
      width: 100%;
      background-color: #f3f3f3;
      border: 1px solid #e2e2e2;
      border-radius: 6px;
      padding: 13px 16px;
      font-size: 0.92rem;
      font-family: 'Montserrat', sans-serif;
      color: #333333;
      outline: none;
      transition: all 0.25s ease;
    }

    .form-input::placeholder {
      color: #a0a0a0;
      font-weight: 400;
    }

    .form-input:focus {
      background-color: #ffffff;
      border-color: #e0701b;
      box-shadow: 0 0 0 3px rgba(224, 112, 27, 0.12);
    }

    /* Adaptabilidad a dispositivos móviles */
    @media (max-width: 640px) {
      .contacto-form-grid {
        grid-template-columns: 1fr;
      }

      .form-group.full-width {
        grid-column: span 1;
      }

      .contacto-card {
        padding: 30px 20px;
      }
    }

   
    .hogar-section {
      display: grid !important;
      grid-template-columns: 1.1fr 0.9fr !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      min-height: 520px;
      font-family: 'Montserrat', sans-serif;
      box-sizing: border-box;
      overflow: hidden;
    }

    .hogar-section * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* COLUMNA IZQUIERDA: FONDO BLANCO */
    .hogar-section .hogar-left-col {
      background-color: #ffffff; /* Fondo blanco aplicado */
      padding: 4rem 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hogar-title-wrapper {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 15px;
    }

    /* Badge circular con icono naranja */
    .hogar-icon-badge {
      width: 70px;
      height: 70px;
      background-color: #e0701b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hogar-main-title {
      font-size: clamp(1.4rem, 2.4vw, 2.1rem);
      font-weight: 800;
      color: #333333;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: -0.5px;
    }

    .hogar-main-title .highlight-orange {
      color: #e0701b;
    }

    /* Línea divisoria naranja */
    .hogar-title-line {
      width: 100%;
      height: 2px;
      background-color: #e0701b;
      margin-bottom: 30px;
    }

    /* Párrafos en cursiva */
    .hogar-p1, .hogar-p2 {
      font-size: 1rem;
      line-height: 1.6;
      color:
      font-style: italic;
      font-weight: 500;
      margin-bottom: 25px;
    }

    /* COLUMNA DERECHA: NARANJA CON ILUSTRACIÓN */
    .hogar-section .hogar-right-col {
      background-image: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.15) 0%, transparent 55%);
      padding: 4rem 3rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .hogar-badge-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
      width: 100%;
      max-width: 420px;
    }

    .hogar-badge-header svg {
      width: 42px;
      height: 42px;
    }

    .hogar-badge-title {
      color:  #555555;
      font-size: 3.5rem;
      font-weight: 800;
      line-height: 1;
    }

    /* Contenedor de la imagen recortada */
    .hogar-img-card {
      width: 100%;
      max-width: 420px;
      height: 250px;
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 25px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .hogar-img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .hogar-right-desc {
      color: #ffffff;
      font-size: 0.95rem;
      line-height: 1.5;
      max-width: 420px;
      width: 100%;
      font-weight: 500;
    }

    /* Adaptación móvil */
    @media (max-width: 900px) {
      .hogar-section {
        grid-template-columns: 1fr !important;
      }

      .hogar-section .hogar-left-col, 
      .hogar-section .hogar-right-col {
        padding: 3rem 1.5rem;
      }
    }
