:root {
  --primary: #0b1f33;
  --primary-soft: #12395a;
  --secondary: #f5b700;
  --secondary-dark: #c99300;
  --accent: #2e86ab;
  --white: #ffffff;
  --surface: #f4f7f9;
  --surface-warm: #fffdf7;
  --text: #172333;
  --muted: #5d6977;
  --border: #dce3e8;
  --success: #14804a;
  --shadow: 0 18px 45px rgba(8, 28, 46, 0.12);
  --shadow-small: 0 10px 25px rgba(8, 28, 46, 0.09);
  --radius: 18px;
  --radius-small: 10px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; min-width: 320px; color: var(--text); background: var(--white); font-family: "Inter", sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
h1, h2, h3, p, ul, blockquote, dl, dd { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.035em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--secondary); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 840px; }
.section { padding: 110px 0; }
.section-light { background: var(--surface); color: var(--text); }
.section-dark { background: var(--primary); color: var(--white); }
.section-blue { background: var(--primary-soft); color: var(--white); }
.text-primary { color: var(--accent); }
.text-accent { color: var(--secondary); }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; color: var(--primary); background: var(--secondary); border-radius: 6px; font-weight: 800; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled, .legal-header { background: rgba(11,31,51,.98); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.nav-wrap { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; color: var(--primary); background: var(--secondary); border-radius: 10px; font-size: 22px; transform: rotate(-3deg); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 17px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: #bdc8d2; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav > a { color: #e7edf2; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.site-nav > a:hover { color: var(--secondary); }
.site-nav .nav-cta { padding: 11px 17px; color: var(--primary); background: var(--secondary); border-radius: 8px; font-weight: 800; }
.site-nav .nav-cta:hover { color: var(--primary); background: #ffd04a; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 760px; padding: 170px 0 105px; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -130px; bottom: -240px; width: 570px; height: 570px; border: 80px solid rgba(245,183,0,.06); border-radius: 50%; }
.hero-grid-lines { position: absolute; inset: 0; opacity: .08; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='62' height='62' viewBox='0 0 62 62'%3E%3Cpath d='M0 0H62M0 0V62' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E"); background-size: 62px 62px; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr); align-items: center; gap: 90px; }
.hero-copy, .hero-visual, .section-heading, .mission-copy { min-width: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: var(--secondary); }
.hero h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(44px, 6vw, 76px); overflow-wrap: break-word; }
.hero-lead { max-width: 670px; margin-bottom: 34px; color: #cfdae3; font-size: 19px; }
.hero-lead strong { color: var(--white); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 20px; border: 2px solid transparent; border-radius: 9px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--primary); background: var(--secondary); box-shadow: 0 10px 25px rgba(245,183,0,.18); }
.button-primary:hover { background: #ffd04a; box-shadow: 0 14px 30px rgba(245,183,0,.28); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.35); }
.button-outline-light:hover { color: var(--primary); background: var(--white); }
.button-small { min-height: 42px; padding: 9px 15px; color: var(--primary); background: var(--secondary); }
.button-large { min-height: 58px; padding-inline: 25px; font-size: 15px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 14px 25px; margin: 32px 0 0; padding: 0; list-style: none; color: #bfccd6; font-size: 13px; font-weight: 600; }
.hero-points i { margin-right: 7px; color: var(--secondary); }
.hero-visual { position: relative; }
.energy-panel { position: relative; padding: 42px; background: #102c46; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); box-shadow: 22px 24px 0 rgba(245,183,0,.12); }
.energy-panel::before { content: ""; position: absolute; inset: 13px; border: 1px dashed rgba(245,183,0,.25); border-radius: 12px; pointer-events: none; }
.energy-icon { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 34px; color: var(--primary); background: var(--secondary); border-radius: 14px; font-size: 30px; }
.panel-label { margin-bottom: 9px; color: var(--secondary); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.energy-panel h2 { margin-bottom: 17px; font-size: 29px; }
.energy-panel > p:not(.panel-label) { color: #bbc9d4; font-size: 14px; }
.panel-code { display: flex; align-items: center; justify-content: space-between; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); }
.panel-code span { color: #8ea2b2; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.panel-code strong { color: var(--secondary); letter-spacing: .08em; }
.floating-badge { position: absolute; right: -30px; bottom: -50px; display: flex; align-items: center; gap: 13px; min-width: 230px; padding: 16px 18px; color: var(--text); background: var(--white); border-radius: 12px; box-shadow: var(--shadow); }
.floating-badge > i { color: var(--accent); font-size: 25px; }
.floating-badge span { display: grid; line-height: 1.2; }
.floating-badge strong { font-size: 13px; }
.floating-badge small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.quick-info { position: relative; z-index: 3; color: var(--text); background: var(--white); border-bottom: 1px solid var(--border); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-grid > div { min-height: 120px; display: flex; align-items: center; gap: 16px; padding: 24px 40px; border-right: 1px solid var(--border); }
.quick-grid > div:first-child { border-left: 1px solid var(--border); }
.quick-grid i { color: var(--accent); font-size: 25px; }
.quick-grid span { display: grid; }
.quick-grid small { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.quick-grid strong { font-size: 14px; }

.split-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.section-heading h2, .mission-copy h2 { max-width: 590px; margin-bottom: 22px; font-size: clamp(34px, 4vw, 52px); }
.section-heading > p { max-width: 650px; margin-inline: auto; color: var(--muted); }
.section-heading.centered { max-width: 760px; margin: 0 auto 55px; text-align: center; }
.section-dark .section-heading > p { color: #becbd5; }
.prose p { margin-bottom: 20px; color: #44515e; font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: var(--accent); font-size: 14px; font-weight: 800; }
.text-link:hover { color: var(--primary); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 300px; padding: 35px 30px; overflow: hidden; background: #102c46; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-7px); background: #153956; border-color: rgba(245,183,0,.55); }
.service-number { position: absolute; top: 22px; right: 24px; color: rgba(255,255,255,.15); font-size: 31px; font-weight: 800; }
.service-icon { margin-bottom: 50px; color: var(--secondary); font-size: 30px; }
.service-card h3 { margin-bottom: 14px; font-size: 21px; }
.service-card p { color: #b7c5d0; font-size: 14px; }
.service-card-wide { grid-column: span 2; min-height: auto; display: grid; grid-template-columns: 65px 1fr; align-items: start; }
.service-card-wide .service-icon { margin: 4px 0 0; }

.mission-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 110px; }
.mission-symbol { position: relative; width: min(100%, 360px); aspect-ratio: 1; display: grid; place-items: center; color: var(--primary); background: var(--secondary); border-radius: 50%; font-size: 74px; box-shadow: var(--shadow); }
.mission-symbol::before, .mission-symbol::after, .symbol-ring { content: ""; position: absolute; border-radius: 50%; }
.mission-symbol::before { inset: 34px; border: 2px dashed rgba(11,31,51,.3); }
.mission-symbol::after { inset: 78px; border: 1px solid rgba(11,31,51,.28); }
.symbol-ring { inset: -18px; border: 1px solid var(--border); }
.mission-copy p { color: #44515e; font-size: 17px; }

.vision-block { max-width: 920px; margin-bottom: 75px; padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,.16); }
.vision-block blockquote { margin-bottom: 0; font-size: clamp(29px, 4vw, 48px); line-height: 1.3; letter-spacing: -.035em; }
.vision-block strong { color: var(--secondary); }
.values-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.values-header .eyebrow { margin: 0; }
.values-header h2 { max-width: 600px; margin: 0; font-size: clamp(30px, 4vw, 45px); text-align: right; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.value-item { min-height: 210px; padding: 30px 25px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.value-item i { margin-bottom: 30px; color: var(--secondary); font-size: 23px; }
.value-item h3 { margin-bottom: 10px; font-size: 18px; }
.value-item p { color: #b9c9d5; font-size: 13px; }

.company-data { padding: 45px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 40px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.data-grid > div { min-height: 105px; padding: 19px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.data-grid dt { margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.data-grid dd { margin: 0; font-size: 14px; font-weight: 700; line-height: 1.45; }
.status-active { display: inline-flex; align-items: center; gap: 7px; color: var(--success); }
.status-active i { font-size: 8px; }
.activity-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.activity-item { padding: 25px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-small); }
.activity-item.primary-activity { background: #fff9e7; border-color: #e9cd70; }
.activity-item span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.activity-item strong { color: var(--accent); font-size: 18px; }
.activity-item p { margin: 8px 0 0; font-size: 13px; }
.contact-data { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; margin-top: 18px; }
.contact-data address, .contact-data > a { min-width: 0; display: flex; align-items: flex-start; gap: 13px; padding: 22px; background: var(--primary); color: var(--white); border-radius: var(--radius-small); font-size: 12px; font-style: normal; overflow-wrap: anywhere; transition: transform .2s ease, background .2s ease; }
.contact-data > a:hover { transform: translateY(-3px); background: var(--primary-soft); }
.contact-data i { margin-top: 4px; color: var(--secondary); font-size: 18px; }
.contact-data span { display: block; }
.contact-data strong { display: block; margin-bottom: 7px; color: var(--secondary); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.cta-section { padding: 80px 0; }
.cta-layout { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 70px; }
.cta-layout h2 { max-width: 750px; margin-bottom: 15px; font-size: clamp(32px, 4vw, 48px); }
.cta-layout p { color: #b9c8d4; }
.cta-actions { display: grid; gap: 15px; justify-items: stretch; }
.phone-link { display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: var(--white); font-size: 14px; font-weight: 700; }
.phone-link:hover { color: var(--secondary); }

.site-footer { padding-top: 75px; color: #becad4; background: #071521; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1.1fr 1.1fr; gap: 45px; padding-bottom: 55px; }
.brand-footer { color: var(--white); }
.footer-brand > p { max-width: 280px; margin: 25px 0; font-size: 13px; }
.social-links { display: flex; gap: 9px; }
.social-links a { width: 39px; height: 39px; display: grid; place-items: center; color: var(--white); border: 1px solid #384957; border-radius: 8px; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.social-links a:hover { color: var(--secondary); border-color: var(--secondary); transform: translateY(-3px); }
.footer-column h2 { margin-bottom: 21px; color: var(--white); font-size: 15px; letter-spacing: 0; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin-bottom: 10px; font-size: 11px; line-height: 1.55; }
.footer-column strong { color: #e6edf2; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--secondary); }
.footer-links i { width: 18px; color: var(--secondary); }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #283743; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--white); font-weight: 700; }
.footer-bottom a i { margin-left: 5px; color: var(--secondary); }
.whatsapp-float { position: fixed; z-index: 50; right: 24px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: #168a4a; border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.25); font-size: 27px; transition: transform .2s ease, background .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); background: #0f743d; }

.legal-header { position: fixed; }
.legal-main { padding-top: 80px; }
.legal-hero { padding: 85px 0 70px; color: var(--white); background: var(--primary); border-bottom: 8px solid var(--secondary); }
.legal-hero h1 { margin-bottom: 18px; font-size: clamp(40px, 6vw, 64px); }
.legal-hero > .container > p { max-width: 650px; color: #c1ced8; font-size: 18px; }
.legal-hero .last-update { margin-top: 25px; color: var(--secondary); font-size: 12px; font-weight: 700; }
.legal-content { padding: 80px 0 100px; }
.legal-article { padding: 55px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.legal-article h2 { margin: 45px 0 16px; color: var(--primary); font-size: 24px; }
.legal-article h2:first-child { margin-top: 0; }
.legal-article p, .legal-article li { color: #465463; }
.legal-article a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-article li { margin-bottom: 8px; }
.simple-footer { min-height: 90px; display: grid; place-items: center; color: #c0ccd5; background: #071521; text-align: center; font-size: 12px; }
.simple-footer p { margin: 0; }

@keyframes reveal-in { from { transform: translateY(18px); } to { transform: translateY(0); } }
.reveal { opacity: 1; transform: none; animation: reveal-in .65s ease both; }
.reveal-delay, .reveal-delay-1 { animation-delay: .12s; }
.reveal-delay-2 { animation-delay: .22s; }
@keyframes soft-pulse { 0%, 100% { box-shadow: 0 10px 25px rgba(245,183,0,.18); } 50% { box-shadow: 0 10px 32px rgba(245,183,0,.42); } }
.button-pulse { animation: soft-pulse 2.6s ease-in-out infinite; }

@media (max-width: 1040px) {
  .site-nav { gap: 16px; }
  .site-nav > a { font-size: 12px; }
  .hero-layout { gap: 50px; }
  .floating-badge { right: -5px; }
  .quick-grid > div { padding-inline: 24px; }
  .split-layout, .mission-layout { gap: 65px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-data { grid-template-columns: 1fr 1fr; }
  .contact-data address { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 80px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; top: 80px; right: 0; bottom: 0; width: min(86vw, 360px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px; background: var(--primary); box-shadow: -15px 20px 35px rgba(0,0,0,.2); transform: translateX(105%); visibility: hidden; transition: transform .25s ease, visibility .25s ease; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .site-nav > a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; }
  .site-nav .nav-cta { margin-top: 18px; padding: 14px; text-align: center; }
  .hero { min-height: auto; padding: 145px 0 105px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { max-width: 550px; margin: 0 auto; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-grid > div { min-height: 90px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .quick-grid > div:first-child { border-top: 1px solid var(--border); }
  .split-layout, .mission-layout { grid-template-columns: 1fr; gap: 45px; }
  .mission-symbol { max-width: 300px; margin-inline: auto; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card-wide { grid-column: span 2; }
  .values-header { display: block; }
  .values-header .eyebrow { margin-bottom: 18px; }
  .values-header h2 { text-align: left; }
  .cta-layout { grid-template-columns: 1fr; gap: 35px; }
  .cta-actions { justify-items: start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding-top: 130px; }
  .hero h1 { font-size: clamp(33px, 10.2vw, 39px); }
  .eyebrow { letter-spacing: .1em; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .energy-panel { padding: 32px 25px; }
  .energy-panel h2 { font-size: 25px; }
  .floating-badge { position: relative; right: auto; bottom: auto; margin: 28px auto 0; }
  .section-heading h2, .mission-copy h2 { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-wide { grid-column: auto; min-height: 280px; display: block; }
  .service-card-wide .service-icon { margin: 0 0 50px; }
  .mission-symbol { max-width: 235px; font-size: 55px; }
  .vision-block blockquote { font-size: 28px; }
  .values-grid, .data-grid, .activity-list, .contact-data { grid-template-columns: 1fr; }
  .value-item { min-height: 175px; }
  .company-data { padding: 18px; }
  .contact-data address { grid-column: auto; }
  .cta-actions { justify-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { padding: 20px 0; flex-direction: column; justify-content: center; text-align: center; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
  .legal-header .brand-copy { display: none; }
  .legal-header .button { width: auto; }
  .legal-hero { padding: 65px 0 55px; }
  .legal-article { padding: 28px 20px; }
  .legal-article h2 { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}