:root {
  --green-main: #4FA463;
  --green-dark: #0B8A75;
  --green-light: #7CCB5A;
  --solar-orange: #E99A13;
  --solar-yellow: #FFC94A;
  --text-gray: #5F5F64;
  --text-dark: #1F2933;
  --white: #FFFFFF;
  --soft-bg: #F4FAF6;
  --line: rgba(31, 41, 51, 0.1);
  --shadow-sm: 0 10px 30px rgba(31, 41, 51, 0.08);
  --shadow-md: 0 20px 60px rgba(11, 138, 117, 0.16);
  --shadow-lg: 0 28px 80px rgba(31, 41, 51, 0.2);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1140px, calc(100% - 32px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--white);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 201, 74, 0.9);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--green-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
  box-shadow: 0 12px 34px rgba(31, 41, 51, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 44px rgba(31, 41, 51, 0.1);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img,
.footer-brand img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  top: 84px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel a {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--green-dark);
  background: var(--soft-bg);
  outline: none;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-brand {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--green-dark), var(--green-main) 48%, var(--solar-orange));
  box-shadow: 0 14px 34px rgba(79, 164, 99, 0.28);
}

.btn-brand:hover,
.btn-brand:focus-visible {
  box-shadow: 0 18px 44px rgba(233, 154, 19, 0.26);
}

.btn-solar {
  color: #261A04;
  background: linear-gradient(135deg, var(--solar-orange), var(--solar-yellow));
  box-shadow: 0 16px 40px rgba(233, 154, 19, 0.32);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 0 0 1px rgba(124, 203, 90, 0.28);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: var(--green-dark);
  background: var(--white);
}

.btn-small {
  min-height: 44px;
  padding: 12px 16px;
}

.btn-full {
  width: 100%;
}

.section {
  padding: 74px 0;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/img/hero-energia-solar.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero.section {
  padding: 0;
}

.hero::before,
.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(3, 60, 50, 0.88) 0%,
    rgba(11, 138, 117, 0.65) 42%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 96px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--solar-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.commercial-cta .eyebrow {
  color: var(--solar-yellow);
}

.hero-seal {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(124, 203, 90, 0.2);
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: var(--white);
}

.hero h1 span:nth-child(3) {
  color: var(--solar-orange);
}

.hero-text {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
  font-weight: 650;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-buttons a {
  min-height: 52px;
  padding: 14px 24px;
}

.hero .btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(124, 203, 90, 0.22);
  backdrop-filter: blur(10px);
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
  color: var(--green-dark);
  background: var(--white);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 940px);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(3, 60, 50, 0.62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.hero-benefit {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 15px 18px;
  background: rgba(0, 74, 54, 0.42);
}

.hero-benefit span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 201, 74, 0.9);
  border-radius: 50%;
  color: var(--solar-yellow);
  font-size: 0.62rem;
  font-weight: 950;
}

.hero-benefit strong {
  align-self: end;
  font-size: 0.83rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-benefit small {
  align-self: start;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.value-strip {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.value-grid {
  display: grid;
  gap: 14px;
}

.value-card,
.service-card,
.process-step,
.quote-form,
.faq-item,
.trust-box,
.benefit-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-card,
.service-card,
.process-step,
.faq-item,
.benefit-list article {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.value-card:hover,
.service-card:hover,
.process-step:hover,
.faq-item:hover,
.benefit-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 164, 99, 0.26);
  box-shadow: var(--shadow-md);
}

.value-card {
  padding: 24px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-main), var(--green-light) 54%, var(--solar-yellow));
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(79, 164, 99, 0.24);
}

.value-card h2 {
  margin: 16px 0 6px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.value-card p,
.service-card p,
.section-heading p,
.benefit-copy p,
.about-copy p,
.highlight-copy p,
.contact-copy p,
.site-footer p {
  color: var(--text-gray);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 36px;
}

.section-heading h2,
.benefit-copy h2,
.about-copy h2,
.cta-content h2,
.highlight-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
}

.services,
.faq,
.contact {
  background: var(--soft-bg);
}

.privacy-hero {
  padding-top: 150px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 60, 50, 0.95), rgba(11, 138, 117, 0.88)),
    var(--green-dark);
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.privacy-content {
  background: var(--soft-bg);
}

.privacy-layout {
  max-width: 900px;
}

.privacy-card {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.privacy-card h2 {
  margin: 34px 0 10px;
  color: var(--green-dark);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.3;
}

.privacy-card h2:first-of-type {
  margin-top: 0;
}

.privacy-card p,
.privacy-card li {
  color: var(--text-gray);
  line-height: 1.75;
}

.privacy-card a {
  color: #066e5e;
  font-weight: 800;
}

.privacy-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.privacy-updated {
  margin: 0 0 26px;
  color: var(--solar-orange);
  font-weight: 800;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  overflow: hidden;
}

.service-image {
  position: relative;
  overflow: hidden;
  background: var(--soft-bg);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(11, 138, 117, 0.42));
}

.service-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.service-content {
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 9px;
  color: var(--green-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.split-layout {
  display: grid;
  gap: 38px;
  align-items: center;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 4px 12px;
  padding: 18px;
}

.benefit-list span {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--solar-yellow) 0 35%, var(--green-light) 36% 68%, var(--green-main) 69%);
}

.benefit-list strong {
  color: var(--green-dark);
  font-size: 1rem;
}

.benefit-list p {
  margin: 0;
  font-size: 0.95rem;
}

.benefit-image img,
.about-image img,
.highlight-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.benefit-image img,
.about-image img,
.highlight-image img {
  aspect-ratio: 3 / 2;
}

.social-proof {
  padding: 80px 20px;
  background: #F4FAF6;
  text-align: center;
}

.social-proof .section-heading {
  margin-inline: auto;
  margin-bottom: 0;
}

.social-proof h2 {
  font-size: 32px;
  color: #0B8A75;
  margin-bottom: 10px;
}

.social-proof .subtitle {
  color: #5F5F64;
  margin-bottom: 40px;
}

.stats,
.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stats {
  gap: 40px;
  margin-bottom: 50px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: left;
}

.testimonials {
  gap: 20px;
}

.stat strong {
  display: block;
  font-size: 28px;
  color: #E99A13;
}

.stat span {
  display: block;
  color: #5F5F64;
}

.stars {
  color: #FFC94A;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.7;
}

.card h3 {
  margin: 15px 0 0;
  color: #0B8A75;
  font-size: 1rem;
  line-height: 1.35;
}

.about {
  background:
    linear-gradient(135deg, rgba(11, 138, 117, 0.96), rgba(79, 164, 99, 0.92)),
    var(--green-dark);
  color: var(--white);
}

.about .about-copy h2,
.about .about-copy p {
  color: var(--white);
}

.about .about-copy p {
  opacity: 0.9;
}

.about .eyebrow {
  color: var(--solar-yellow);
}

.trust-box {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding: 20px;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--white), #fff8df);
  box-shadow: 0 18px 44px rgba(31, 41, 51, 0.12);
}

.trust-box strong {
  color: var(--green-dark);
}

.portfolio-highlight {
  background: var(--white);
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(11, 138, 117, 0.12);
  border-radius: 50%;
}

.process-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(255, 201, 74, 0.92), rgba(124, 203, 90, 0.42));
  font-weight: 900;
  letter-spacing: 0;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.3;
}

.process-step p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.65;
}

.commercial-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.commercial-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 138, 117, 0.94), rgba(31, 41, 51, 0.82)),
    radial-gradient(circle at 85% 25%, rgba(255, 201, 74, 0.22), transparent 30%);
}

.cta-bg {
  opacity: 0.72;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 14px 0;
}

.cta-content h2,
.cta-content p {
  color: var(--white);
}

.cta-content p {
  max-width: 680px;
  opacity: 0.9;
  font-size: 1.08rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 20px;
}

.faq-item summary {
  padding: 20px 0;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--text-gray);
}

.contact-grid {
  display: grid;
  gap: 30px;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(79, 164, 99, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-info p {
  margin: 0;
}

.contact-info a {
  color: var(--green-dark);
  font-weight: 850;
}

.contact-info .contact-whatsapp {
  width: fit-content;
  margin-top: 8px;
  color: var(--white);
}

.quote-form {
  display: grid;
  gap: 11px;
  padding: 24px;
}

.quote-form label {
  color: var(--text-dark);
  font-weight: 850;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 51, 0.14);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--text-dark);
  background: var(--white);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--green-main);
  outline: 4px solid rgba(79, 164, 99, 0.15);
}

.form-note {
  margin: 4px 0 0;
  color: var(--text-gray);
  font-size: 0.92rem;
}

.site-footer {
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--text-dark);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand img {
  width: min(100%, 220px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--solar-yellow);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  box-shadow: 0 18px 44px rgba(11, 138, 117, 0.34);
  font-weight: 900;
}

.whatsapp-float svg {
  flex: 0 0 auto;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  outline: 4px solid rgba(79, 164, 99, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 88px;
  z-index: 120;
  display: grid;
  gap: 14px;
  max-width: 720px;
  padding: 16px;
  border: 1px solid rgba(79, 164, 99, 0.22);
  border-radius: 16px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 60px rgba(31, 41, 51, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-cookie,
.btn-cookie-link {
  min-height: 44px;
  padding: 11px 16px;
  font-size: 0.9rem;
}

.btn-cookie-link {
  color: #066e5e;
  background: var(--soft-bg);
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  :root {
    --container: min(1140px, calc(100% - 48px));
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 980px) {
  .section {
    padding: 94px 0;
  }

  .brand img {
    height: 58px;
  }

  .nav {
    min-height: 86px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-panel a {
    font-size: 0.95rem;
  }

  .value-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 58px;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 58px;
  }

  .footer-grid {
    grid-template-columns: 1.45fr 0.75fr 0.8fr;
  }

  .cookie-banner {
    right: auto;
    bottom: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 760px;
    align-items: flex-end;
    background-position: center;
  }

  .hero.section {
    padding: 120px 20px 60px;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(3, 60, 50, 0.72) 45%,
      rgba(3, 60, 50, 0.95) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

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

  .hero-buttons a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-benefits {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .value-strip {
    margin-top: -38px;
  }

  .brand img {
    height: 44px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .privacy-hero {
    padding-top: 128px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-cookie,
  .btn-cookie-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
