/* ===========================
   CSS Variables & Base
   =========================== */
:root {
    --base-color: #112e3c;
    --green: #89d05c;
    --blue: #20aedb;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --text-dark: #0d1f29;
    --text-muted: #5a6e7b;
    --border-light: #e2e8ed;
    --primary-font: "Inter", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ===========================
   Utility Colors
   =========================== */
.text-base-color  { color: var(--base-color); }
.text-green       { color: var(--green); }
.text-blue        { color: var(--blue); }
.text-white       { color: var(--white); }
.bg-base-color    { background-color: var(--base-color); }
.bg-green         { background-color: var(--green); }
.bg-blue          { background-color: var(--blue); }

/* ===========================
   Typography Utilities
   =========================== */
.fs-13 { font-size: 13px; }
.fs-14 { font-size: 14px; }
.fs-15 { font-size: 15px; }
.fs-17 { font-size: 17px; }
.fs-18 { font-size: 18px; }
.fs-20 { font-size: 20px; }
.fs-22 { font-size: 22px; }
.fs-24 { font-size: 24px; }
.fs-28 { font-size: 28px; }
.fs-32 { font-size: 32px; }
.fs-36 { font-size: 36px; }
.fs-42 { font-size: 42px; }
.fs-48 { font-size: 48px; }
.fs-56 { font-size: 56px; }
.lh-1-2 { line-height: 1.2; }
.lh-1-4 { line-height: 1.4; }
.lh-1-6 { line-height: 1.6; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* ===========================
   Section Label
   =========================== */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}
.section-label-light {
    color: rgba(255,255,255,0.6);
}

/* ===========================
   Navbar
   =========================== */
.navbar-brand img {
    height: 60px;
}

.site-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-navbar.scrolled {
    position: fixed;
    background: var(--base-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.site-navbar .navbar-nav .nav-link {
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 14px;
    transition: color 0.2s ease;
}

.site-navbar .navbar-nav .nav-link:hover {
    color: var(--green);
}

.site-navbar .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
}
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* WhatsApp nav button */
.btn-nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn-nav-whatsapp:hover {
    background: rgba(255,255,255,0.22);
    color: var(--white);
}

/* Cotizar nav button */
.btn-nav-cotizar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    border: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-nav-cotizar:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: var(--text-dark);
}

/* ===========================
   Buttons
   =========================== */
.btn-extra-large {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.btn-extra-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.btn-green {
    background: var(--green);
    color: var(--text-dark);
    border: none;
}
.btn-green:hover {
    background: #88e84e;
    color: var(--text-dark);
}

.btn-outline-white {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.22);
    color: var(--white);
}

.btn-dark-solid {
    background: var(--base-color);
    border: none;
    color: var(--white);
}
.btn-dark-solid:hover {
    background: #0d2330;
    color: var(--white);
}

/* ===========================
   Hero
   =========================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--base-color);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(13,28,38,0.88) 0%, rgba(13,28,38,0.65) 55%, rgba(13,28,38,0.25) 100%);
    z-index: 1;
}

/* Wrapper que crece y centra el contenido verticalmente */
.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 40px;
    width: 100%;
}

.hero-content {
    width: 100%;
}

.hero-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 16px;
}
.hero-note span {
    color: var(--green);
    font-weight: 600;
}

/* Hero savings badge */
.hero-badge-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.hero-badge {
    position: relative;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(32,174,219,0.12);
    border: 2px solid rgba(32,174,219,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 60px rgba(32,174,219,0.3), 0 0 120px rgba(32,174,219,0.12);
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1.5px solid rgba(32,174,219,0.2);
}

.hero-badge-icon {
    font-size: 36px;
    color: var(--green);
    margin-bottom: 4px;
}

.hero-badge-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.hero-badge-pct {
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
}

.hero-badge-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    margin-top: 4px;
}

/* Stats bar */
.hero-stats-bar {
    background: rgba(10,22,30,0.75);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(32,174,219,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    flex-shrink: 0;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ===========================
   Certificaciones
   =========================== */
.cert-section {
    background-color: var(--base-color);
    padding: 70px 0 0;
}

.cert-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 8px;
}

.cert-title-accent {
    color: var(--green);
}

.cert-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 48px;
}

.cert-leaf-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 22px;
}

.cert-card {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: border-color 0.25s ease, background 0.25s ease;
}
.cert-card:hover {
    border-color: rgba(151,248,91,0.35);
    background: rgba(151,248,91,0.04);
}

.cert-card-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 14px;
}

.cert-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.cert-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.cert-shield {
    color: var(--green);
    font-size: 18px;
    margin-top: 12px;
}

.co2-banner {
    margin-top: 40px;
    background: linear-gradient(90deg, rgba(151,248,91,0.12) 0%, rgba(32,174,219,0.08) 100%);
    border: 1px solid rgba(151,248,91,0.2);
    border-radius: 16px;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.co2-leaf-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(151,248,91,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--green);
    flex-shrink: 0;
}

.co2-text {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}
.co2-number {
    color: var(--green);
    font-weight: 700;
}

/* ===========================
   Soluciones
   =========================== */
.soluciones-section {
    background-color: var(--base-color);
    padding: 70px 0;
}

.soluciones-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}

.solution-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
    cursor: default;
}
.solution-card:hover {
    border-color: rgba(151,248,91,0.4);
    transform: translateY(-3px);
}
.solution-card.active {
    border-color: var(--green);
    border-width: 2px;
}

.solution-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.solution-card-body {
    padding: 20px;
}

.solution-card-category {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 6px;
}

.solution-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.solution-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.solution-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(151,248,91,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--green);
    margin-bottom: 12px;
}

.lightning-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--base-color);
    flex-shrink: 0;
}

/* ===========================
   Por qué elegirnos
   =========================== */
.porque-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.porque-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--base-color);
    line-height: 1.2;
    margin-bottom: 16px;
}
.porque-title .highlight-green {
    color: var(--green);
}
.porque-title .highlight-dark {
    color: var(--base-color);
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    margin-bottom: 48px;
}

.porque-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.porque-card:hover {
    box-shadow: 0 8px 32px rgba(17,46,60,0.1);
    transform: translateY(-3px);
}

.porque-card-img {
    width: 100%;
    padding: 28px 0 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.porque-card-img img {
    width: 30%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}
.porque-card:hover .porque-card-img img {
    transform: scale(1.04);
}

.porque-card-title {
    padding: 24px 24px 0;

    font-size: 18px;
    font-weight: 700;
    color: var(--base-color);
    margin-bottom: 10px;
}

.porque-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    padding: 0 24px 24px;
}

/* ===========================
   Proceso
   =========================== */
.proceso-section {
    background: var(--white);
    padding: 80px 0;
}

.proceso-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--base-color);
    margin-bottom: 12px;
}

.proceso-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.proceso-card:hover {
    box-shadow: 0 8px 28px rgba(17,46,60,0.1);
    transform: translateY(-3px);
    border-color: rgba(32,174,219,0.3);
}

.proceso-step-number {
    font-size: 52px;
    font-weight: 900;
    color: rgba(32,174,219,0.15);
    position: absolute;
    top: 16px;
    right: 22px;
    line-height: 1;
}

.proceso-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.proceso-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(32,174,219,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--blue);
    margin-bottom: 14px;
}

.proceso-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--base-color);
    margin-bottom: 8px;
}

.proceso-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.proceso-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 22px;
    padding-top: 40px;
}

/* ===========================
   FAQ
   =========================== */
.faq-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.faq-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--base-color);
    margin-bottom: 12px;
}
.faq-title .highlight {
    color: var(--green);
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--base-color);
    font-size: 16px;
    font-weight: 600;
    padding: 20px 24px;
    border-radius: 12px !important;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--base-color);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2320aedb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2320aedb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 24px 20px;
}

.faq-faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(32,174,219,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
    margin-right: 14px;
    flex-shrink: 0;
}

.faq-support-box {
    margin-top: 32px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-support-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(32,174,219,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--blue);
    flex-shrink: 0;
}

.faq-support-text {
    font-size: 15px;
    color: var(--base-color);
    font-weight: 600;
}
.faq-support-link {
    color: var(--blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
}
.faq-support-link:hover {
    color: var(--green);
    text-decoration: underline;
}

/* ===========================
   CTA Banner
   =========================== */
.cta-section {
    position: relative;
    background-color: var(--base-color);
    padding: 70px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,28,38,0.96) 0%, rgba(13,28,38,0.85) 55%, rgba(13,28,38,0.3) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.cta-title .highlight {
    color: var(--green);
}

.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(151,248,91,0.12);
    border: 1px solid rgba(151,248,91,0.3);
    border-radius: 50px;
    padding: 4px 14px 4px 4px;
    margin-bottom: 20px;
}
.cta-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--base-color);
}
.cta-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}
.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.cta-benefit-item i {
    color: var(--green);
    font-size: 15px;
}

.cta-side-img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: 45%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 2;
    filter: drop-shadow(-6px 0 20px rgba(0,0,0,0.3));
}

.cta-side-img-mobile {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}

/* ===========================
   Formulario de Contacto
   =========================== */
.form-section {
    background: var(--white);
}

/* Columna izquierda */
.form-left {
    position: relative;
    min-height: 560px;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
}

.form-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,28,38,0.94) 0%, rgba(17,46,60,0.82) 100%);
    z-index: 0;
}

.form-left-content {
    position: relative;
    z-index: 1;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.form-left-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 340px;
}

.form-left-contact-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.form-left-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}

.form-left-contact-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.form-left-contact-item a:hover {
    color: var(--green);
}

.form-left-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(151,248,91,0.12);
    border: 1px solid rgba(151,248,91,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
}

/* Columna derecha */
.form-right {
    padding: 60px 56px;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-right-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--base-color);
    margin-bottom: 32px;
}

/* Campos del formulario */
.form-field {
    position: relative;
    margin-bottom: 16px;
}

.form-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
}

.form-field-icon-top {
    top: 18px;
    transform: none;
}

.form-input {
    padding: 14px 16px 14px 44px;
    font-size: 15px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(151,248,91,0.15);
    background: var(--white);
}

.form-input::placeholder {
    color: #aab4bd;
    font-size: 15px;
}

textarea.form-input {
    resize: none;
    padding-top: 14px;
}

/* Botón submit */
.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: 700;
    background: var(--green);
    color: var(--text-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-top: 4px;
}

.btn-form-submit:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.form-privacy {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .form-left-content {
        padding: 48px 28px;
    }
    .form-right {
        padding: 48px 28px;
    }
    .form-left {
        min-height: 420px;
    }
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background-color: #0a1e28;
    padding: 56px 0 0;
}

.footer-logo img {
    height: 72px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-top: 14px;
    max-width: 220px;
}
.footer-tagline .accent-green { color: var(--green); }
.footer-tagline .accent-blue { color: var(--blue); }

.footer-heading {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(32,174,219,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--blue);
    flex-shrink: 0;
}
.footer-contact-text {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
}
.footer-contact-text a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-text a:hover {
    color: var(--green);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 0;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-dev {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-align: right;
}
.footer-dev a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-dev a:hover {
    color: var(--green);
}

/* ===========================
   Responsive overrides
   =========================== */
@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        background: var(--base-color);
        border-radius: 12px;
        padding: 16px;
        margin-top: 12px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .hero-badge-wrap {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero-badge {
        width: 180px;
        height: 180px;
    }

    .hero-badge-number {
        font-size: 40px;
    }

    .stat-divider {
        display: none;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 12px;
    }

    .co2-banner {
        flex-direction: column;
        text-align: center;
    }

    .footer-dev {
        text-align: left;
        margin-top: 6px;
    }

    .proceso-arrow {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-headline {
        font-size: 30px;
    }
    .btn-extra-large {
        width: 100%;
        justify-content: center;
    }
    .faq-support-box {
        flex-direction: column;
        text-align: center;
    }
    .stat-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}
