:root {
  --green: #4f8f31;
  --green-dark: #2e6b20;
  --green-soft: #eef7e9;
  --text: #3f3f3f;
  --muted: #6e746c;
  --white: #ffffff;
  --cream: #f7f4ec;
  --line: rgba(79, 143, 49, 0.22);
  --shadow: 0 28px 80px rgba(32, 48, 25, 0.18);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text);
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea {
  font-family: inherit;
}


.site-header {
  width: min(1180px, calc(100% - 32px));
  height: 82px;
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 22px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  box-shadow: 0 18px 60px rgba(31, 49, 24, 0.12);
  backdrop-filter: blur(18px);
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}


.logo-mark {
  width: 46px;
  height: 46px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-size: 34px;
  line-height: 1;
}


.logo-mark strong {
  position: relative;
  z-index: 2;
  font-weight: 800;
}


.logo-leaf {
  width: 24px;
  height: 15px;
  position: absolute;
  top: 7px;
  left: 0;
  background: linear-gradient(135deg, #7eb84c, var(--green));
  border-radius: 20px 20px 20px 4px;
  transform: rotate(28deg);
}


.logo-text p {
  font-size: 31px;
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: -1.4px;
  color: #4a4a4a;
}


.logo-text span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 7px;
  color: var(--green-dark);
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}


.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: #535a50;
  transition: color 0.25s ease;
}


.nav-menu a:hover {
  color: var(--green-dark);
}


.header-btn,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}


.header-btn,
.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 36px rgba(79, 143, 49, 0.3);
}


.header-btn {
  padding: 0 22px;
  font-size: 14px;
}


.primary-btn {
  padding: 0 28px;
  font-size: 15px;
}


.secondary-btn {
  padding: 0 24px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}


.header-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}


.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 16px;
  background: var(--green-soft);
  cursor: pointer;
}


.menu-toggle div {
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 999px;
}


.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 142px 0 64px;
  background:
    linear-gradient(90deg, rgba(247, 244, 236, 0.96) 0%, rgba(247, 244, 236, 0.9) 41%, rgba(247, 244, 236, 0.08) 72%),
    linear-gradient(180deg, #f8f6ef 0%, #efe9dc 100%);
}


.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1497440001374-f26997328c1b?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center right;
  opacity: 0.14;
  pointer-events: none;
}


.hero-glow {
  width: 540px;
  height: 540px;
  position: absolute;
  left: -150px;
  top: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 185, 74, 0.24), transparent 68%);
  pointer-events: none;
}


.hero-content {
  width: min(1180px, calc(100% - 32px));
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 42px;
}


.hero-copy {
  max-width: 560px;
}


.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}


.eyebrow-line {
  width: 52px;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
}


.hero h1 {
  max-width: 560px;
  color: #4a4a4a;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -4px;
}


.hero h1 strong {
  display: block;
  color: var(--green-dark);
  font-weight: 800;
}


.hero-description {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}


.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}


.benefits-list {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  max-width: 440px;
}


.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: benefitIn 0.7s ease forwards;
}


.benefit-card:nth-child(1) {
  animation-delay: 0.08s;
}


.benefit-card:nth-child(2) {
  animation-delay: 0.16s;
}


.benefit-card:nth-child(3) {
  animation-delay: 0.24s;
}


.benefit-card:nth-child(4) {
  animation-delay: 0.32s;
}


.benefit-card:nth-child(5) {
  animation-delay: 0.4s;
}


.benefit-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 18px;
}


.benefit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.benefit-card h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #515151;
  font-weight: 800;
}


.benefit-card p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.25;
}


.hero-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}


.mini-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}


.mini-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green);
}


.mini-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.mini-feature p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}


.mini-feature strong {
  color: var(--green-dark);
}


.bottom-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}


.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.solar-card {
  width: min(710px, 100%);
  height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 46px 0 0 46px;
  box-shadow: var(--shadow);
  transform: translateX(38px);
}


.solar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 244, 236, 0.14), transparent 40%),
    linear-gradient(180deg, transparent 62%, rgba(31, 49, 24, 0.2));
}


.solar-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


.floating-badge {
  position: absolute;
  left: 20px;
  bottom: 76px;
  width: 190px;
  padding: 20px;
  color: var(--white);
  background: rgba(46, 107, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(35, 60, 24, 0.28);
  backdrop-filter: blur(14px);
}


.floating-badge strong {
  display: block;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -1.2px;
}


.floating-badge p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}


@keyframes benefitIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 980px) {
  .site-header {
    height: 74px;
  }


  .nav-menu,
  .header-btn {
    display: none;
  }


  .menu-toggle {
    display: grid;
  }


  .menu-toggle.active div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }


  .menu-toggle.active div:nth-child(2) {
    opacity: 0;
  }


  .menu-toggle.active div:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


  .nav-menu.active {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(79, 143, 49, 0.14);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(31, 49, 24, 0.16);
  }


  .nav-menu.active a {
    padding: 15px 12px;
    border-radius: 14px;
  }


  .nav-menu.active a:hover {
    background: var(--green-soft);
  }


  .hero {
    padding-top: 124px;
  }


  .hero-content {
    grid-template-columns: 1fr;
  }


  .hero-copy {
    max-width: none;
  }


  .hero-visual {
    min-height: auto;
  }


  .solar-card {
    height: 460px;
    border-radius: 36px;
    transform: none;
  }


  .floating-badge {
    left: 22px;
    bottom: 22px;
  }
}


@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 24px);
    top: 12px;
    padding-left: 16px;
    border-radius: 22px;
  }


  .logo-text p {
    font-size: 24px;
  }


  .logo-text span {
    font-size: 10px;
    letter-spacing: 5px;
  }


  .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }


  .hero {
    padding: 112px 0 42px;
    background:
      linear-gradient(180deg, rgba(247, 244, 236, 0.96) 0%, rgba(247, 244, 236, 0.86) 62%, rgba(247, 244, 236, 0.4) 100%),
      linear-gradient(180deg, #f8f6ef 0%, #efe9dc 100%);
  }


  .hero h1 {
    letter-spacing: -2.4px;
  }


  .hero-description {
    font-size: 16px;
  }


  .primary-btn,
  .secondary-btn {
    width: 100%;
  }


  .benefits-list {
    margin-top: 32px;
  }


  .benefit-card {
    align-items: flex-start;
  }


  .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }


  .benefit-card h3 {
    font-size: 16px;
  }


  .benefit-card p {
    font-size: 14px;
  }


  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }


  .bottom-divider {
    width: 100%;
    height: 1px;
  }


  .mini-feature {
    max-width: none;
  }


  .solar-card {
    height: 360px;
    border-radius: 28px;
  }


  .floating-badge {
    width: 165px;
    padding: 16px;
  }


  .floating-badge strong {
    font-size: 24px;
  }
}


/* ============================= */
/* ANIMACIONES HERO SOLAR */
/* ============================= */


.hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
  animation: fadeUpSolar 0.9s ease forwards;
}


.hero-copy .eyebrow {
  animation-delay: 0.1s;
}


.hero-copy h1 {
  animation-delay: 0.22s;
}


.hero-description {
  animation-delay: 0.34s;
}


.hero-actions {
  animation-delay: 0.46s;
}


.benefits-list {
  animation-delay: 0.58s;
}


.hero-bottom {
  animation-delay: 0.7s;
}


.solar-card {
  opacity: 0;
  transform: translateX(70px) scale(0.96);
  animation: solarImageIn 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards,
             solarFloat 6s ease-in-out 1.6s infinite;
}


.solar-card img {
  transform: scale(1.08);
  animation: solarZoomOut 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}


.floating-badge {
  opacity: 0;
  transform: translateY(28px) scale(0.9);
  animation: badgeIn 0.9s ease 1s forwards,
             badgeFloat 4.5s ease-in-out 2s infinite;
}


.hero-glow {
  animation: glowFloat 8s ease-in-out infinite alternate;
}


.logo-leaf {
  animation: leafFloat 3.8s ease-in-out infinite;
}


.benefit-icon {
  position: relative;
  overflow: hidden;
  animation: iconFloat 4.2s ease-in-out infinite;
}


.benefit-card:nth-child(2) .benefit-icon {
  animation-delay: 0.4s;
}


.benefit-card:nth-child(3) .benefit-icon {
  animation-delay: 0.8s;
}


.benefit-card:nth-child(4) .benefit-icon {
  animation-delay: 1.2s;
}


.benefit-card:nth-child(5) .benefit-icon {
  animation-delay: 1.6s;
}


.benefit-icon::after {
  content: "";
  width: 38px;
  height: 100px;
  position: absolute;
  top: -30px;
  left: -70px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  transform: rotate(24deg);
  animation: iconShine 4.8s ease-in-out infinite;
}


.primary-btn {
  position: relative;
  overflow: hidden;
}


.primary-btn::after {
  content: "";
  width: 42px;
  height: 120px;
  position: absolute;
  top: -35px;
  left: -80px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );
  transform: rotate(25deg);
  animation: buttonShine 3.6s ease-in-out infinite;
}


.secondary-btn {
  animation: softPulse 3.5s ease-in-out infinite;
}


.mini-icon {
  animation: miniFloat 4s ease-in-out infinite;
}


.mini-feature:nth-child(3) .mini-icon {
  animation-delay: 0.8s;
}


/* Partículas decorativas del hero */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}


.hero-particle {
  width: 9px;
  height: 9px;
  position: absolute;
  border-radius: 999px;
  background: rgba(79, 143, 49, 0.28);
  box-shadow: 0 0 20px rgba(79, 143, 49, 0.22);
  animation: particleFloat 8s ease-in-out infinite;
}


.hero-particle:nth-child(1) {
  left: 8%;
  top: 22%;
  animation-delay: 0s;
}


.hero-particle:nth-child(2) {
  left: 42%;
  top: 18%;
  width: 6px;
  height: 6px;
  animation-delay: 1.4s;
}


.hero-particle:nth-child(3) {
  left: 52%;
  top: 72%;
  width: 12px;
  height: 12px;
  animation-delay: 0.8s;
}


.hero-particle:nth-child(4) {
  right: 9%;
  top: 27%;
  width: 7px;
  height: 7px;
  animation-delay: 2.1s;
}


.hero-particle:nth-child(5) {
  right: 18%;
  bottom: 14%;
  width: 10px;
  height: 10px;
  animation-delay: 1.1s;
}


/* Animación al hacer scroll */
.reveal-solar {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


.reveal-solar.show {
  opacity: 1;
  transform: translateY(0);
}


/* Keyframes */
@keyframes fadeUpSolar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes solarImageIn {
  to {
    opacity: 1;
    transform: translateX(38px) scale(1);
  }
}


@keyframes solarZoomOut {
  to {
    transform: scale(1);
  }
}


@keyframes solarFloat {
  0%,
  100% {
    transform: translateX(38px) translateY(0) scale(1);
  }


  50% {
    transform: translateX(38px) translateY(-14px) scale(1);
  }
}


@keyframes badgeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }


  50% {
    transform: translateY(-13px) scale(1.02);
  }
}


@keyframes glowFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }


  100% {
    transform: translate(70px, 34px) scale(1.16);
    opacity: 1;
  }
}


@keyframes leafFloat {
  0%,
  100% {
    transform: rotate(28deg) translateY(0);
  }


  50% {
    transform: rotate(18deg) translateY(-4px);
  }
}


@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }


  50% {
    transform: translateY(-6px);
  }
}


@keyframes iconShine {
  0%,
  65% {
    left: -70px;
  }


  100% {
    left: 110px;
  }
}


@keyframes buttonShine {
  0%,
  55% {
    left: -80px;
  }


  100% {
    left: 120%;
  }
}


@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(79, 143, 49, 0);
  }


  50% {
    box-shadow: 0 0 0 8px rgba(79, 143, 49, 0.08);
  }
}


@keyframes miniFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }


  50% {
    transform: translateY(-5px) rotate(-2deg);
  }
}


@keyframes particleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.25;
  }


  50% {
    transform: translate3d(18px, -34px, 0) scale(1.35);
    opacity: 0.65;
  }
}


/* Responsive ajustes */
@media (max-width: 980px) {
  .solar-card {
    animation: solarImageInTablet 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards,
               solarFloatTablet 6s ease-in-out 1.6s infinite;
  }


  @keyframes solarImageInTablet {
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }


  @keyframes solarFloatTablet {
    0%,
    100% {
      transform: translateY(0) scale(1);
    }


    50% {
      transform: translateY(-10px) scale(1);
    }
  }
}


@media (max-width: 640px) {
  .hero-particle {
    opacity: 0.4;
  }


  .solar-card {
    animation: solarImageInTablet 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  }


  .floating-badge {
    animation: badgeIn 0.8s ease 0.8s forwards,
               badgeFloat 4.5s ease-in-out 1.6s infinite;
  }
}


/* Respeta usuarios con reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================= */
/* SECCIONES GENERALES */
/* ============================= */


.section-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}


.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}


.section-heading span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}


.section-heading h2,
.benefits-info h2,
.contact-info h2 {
  color: #3f3f3f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2.4px;
}


.section-heading p,
.benefits-info > p,
.contact-info > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}


/* ============================= */
/* SOLUCIONES */
/* ============================= */


.solutions-section {
  position: relative;
  padding: 110px 0;
  background: #ffffff;
  overflow: hidden;
}


.solutions-section::before {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  right: -220px;
  top: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 143, 49, 0.13), transparent 68%);
  pointer-events: none;
}


.solutions-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


.solution-card {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: #f8f7f1;
  border: 1px solid rgba(79, 143, 49, 0.13);
  border-radius: 34px;
  box-shadow: 0 20px 55px rgba(31, 49, 24, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}


.solution-card::before {
  content: "";
  width: 130px;
  height: 130px;
  position: absolute;
  right: -44px;
  top: -44px;
  border-radius: 50%;
  background: rgba(79, 143, 49, 0.12);
  pointer-events: none;
}


.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 75px rgba(31, 49, 24, 0.14);
}


.featured-solution {
  color: #ffffff;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  border-color: rgba(255, 255, 255, 0.18);
}


.solution-number {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  color: var(--green-dark);
  background: #ffffff;
  border-radius: 18px;
  font-weight: 900;
}


.featured-solution .solution-number {
  color: var(--green-dark);
}


.solution-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #3f3f3f;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.8px;
}


.featured-solution h3 {
  color: #ffffff;
}


.solution-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}


.featured-solution p {
  color: rgba(255, 255, 255, 0.84);
}


.solution-card a {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}


.featured-solution a {
  color: #ffffff;
}


.solution-card a::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.24s ease;
}


.solution-card a:hover::after {
  transform: translateX(5px);
}


/* ============================= */
/* BENEFICIOS SECCIÓN */
/* ============================= */


.benefits-section {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ec 100%);
}


.benefits-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
}


.benefits-image {
  height: 620px;
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 30px 80px rgba(31, 49, 24, 0.16);
}


.benefits-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(31, 49, 24, 0.32)),
    linear-gradient(90deg, rgba(79, 143, 49, 0.14), transparent 55%);
}


.benefits-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.benefits-info {
  max-width: 560px;
}


.check-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}


.check-list div {
  position: relative;
  padding: 22px 22px 22px 66px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(79, 143, 49, 0.14);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(31, 49, 24, 0.07);
}


.check-list div::before {
  content: "✓";
  width: 34px;
  height: 34px;
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  font-weight: 900;
}


.check-list strong {
  display: block;
  margin-bottom: 5px;
  color: #434343;
  font-size: 17px;
  font-weight: 900;
}


.check-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}


/* ============================= */
/* PROYECTOS SLIDER 9 CASOS */
/* ============================= */


.projects-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(79, 143, 49, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ec 100%);
  overflow: hidden;
}


.projects-top {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 42px;
  margin-bottom: 46px;
}


.projects-top h2 {
  max-width: 760px;
  color: #3f3f3f;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -2.4px;
}


.projects-top p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}


.projects-slider-wrap {
  position: relative;
}


.projects-slider {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 46px;
  background: #1e2c19;
  box-shadow: 0 34px 95px rgba(31, 49, 24, 0.18);
}


.project-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 0.75s ease, transform 0.75s ease;
}


.project-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}


.project-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.3s ease;
}


.project-slide.active img {
  transform: scale(1);
}


.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 52px;
  background:
    linear-gradient(90deg, rgba(17, 29, 13, 0.78) 0%, rgba(17, 29, 13, 0.34) 46%, rgba(17, 29, 13, 0.1) 100%),
    linear-gradient(180deg, rgba(17, 29, 13, 0.08) 0%, rgba(17, 29, 13, 0.88) 100%);
}


.project-tag {
  position: absolute;
  top: 42px;
  left: 52px;
  z-index: 2;
  display: inline-flex;
  padding: 10px 15px;
  color: #ffffff;
  background: rgba(79, 143, 49, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.project-info {
  width: min(680px, 100%);
  color: #ffffff;
}


.project-info h3 {
  max-width: 620px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -3.5px;
}


.project-info > p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}


.project-savings {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 245px));
  gap: 16px;
  margin-top: 28px;
}


.project-savings div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}


.project-savings span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}


.project-savings strong {
  display: block;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
}


.project-savings small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.25;
}


.project-arrow {
  width: 54px;
  height: 54px;
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(30, 44, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}


.project-arrow svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.project-arrow:hover {
  background: rgba(79, 143, 49, 0.9);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-50%) scale(1.06);
}


.project-arrow.prev {
  left: 22px;
}


.project-arrow.next {
  right: 22px;
}


.project-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transform: translateX(-50%);
}


.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}


.slider-dot.active {
  width: 28px;
  background: #ffffff;
}


/* TABLET */
@media (max-width: 980px) {
  .projects-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }


  .projects-slider {
    height: 590px;
    border-radius: 38px;
  }


  .project-overlay {
    padding: 42px;
  }


  .project-tag {
    top: 34px;
    left: 42px;
  }


  .project-info h3 {
    max-width: 520px;
  }


  .project-savings {
    grid-template-columns: repeat(2, minmax(160px, 220px));
  }
}


/* MÓVIL */
@media (max-width: 640px) {
  .projects-section {
    padding: 70px 0;
  }


  .projects-top {
    margin-bottom: 30px;
  }


  .projects-top h2 {
    letter-spacing: -1.7px;
  }


  .projects-top p {
    font-size: 14px;
    line-height: 1.65;
  }


  .projects-slider {
    height: 520px;
    border-radius: 30px;
  }


  .project-slide img {
    object-position: center;
  }


  .project-overlay {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 16px 58px;
    background:
      linear-gradient(180deg, rgba(17, 29, 13, 0.08) 0%, rgba(17, 29, 13, 0.92) 58%, rgba(17, 29, 13, 0.98) 100%);
  }


  .project-tag {
    top: 18px;
    left: 16px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.7px;
  }


  .project-info {
    width: 100%;
  }


  .project-info h3 {
    margin-bottom: 8px;
    font-size: 34px;
    line-height: 0.95;
    letter-spacing: -1.8px;
  }


  .project-info > p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.45;
  }


  .project-savings {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }


  .project-savings div {
    padding: 13px 10px;
    border-radius: 18px;
  }


  .project-savings span {
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 0.5px;
  }


  .project-savings strong {
    font-size: 25px;
    letter-spacing: -1px;
  }


  .project-savings small {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.15;
  }


  .project-arrow {
  width: 42px;
  height: 42px;
  top: auto;
  bottom: 14px;
  transform: none;
}


.project-arrow svg {
  width: 24px;
  height: 24px;
}


.project-arrow:hover {
  transform: none;
}


  .project-arrow.prev {
    left: 14px;
  }


  .project-arrow.next {
    right: 14px;
  }


  .project-dots {
    bottom: 27px;
    gap: 5px;
  }


  .slider-dot {
    width: 7px;
    height: 7px;
  }


  .slider-dot.active {
    width: 20px;
  }
}


@media (max-width: 390px) {
  .projects-slider {
    height: 500px;
  }


  .project-info h3 {
    font-size: 30px;
  }


  .project-info > p {
    font-size: 12px;
  }


  .project-savings strong {
    font-size: 22px;
  }


  .project-savings div {
    padding: 11px 8px;
  }
}


/* ============================= */
/* PROCESO */
/* ============================= */


.process-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(79, 143, 49, 0.12), transparent 34%),
    linear-gradient(180deg, #f7f4ec 0%, #ffffff 100%);
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}


.process-card {
  position: relative;
  min-height: 260px;
  padding: 30px 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(79, 143, 49, 0.14);
  border-radius: 30px;
  box-shadow: 0 20px 55px rgba(31, 49, 24, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}


.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 72px rgba(31, 49, 24, 0.14);
}


.process-card span {
  display: inline-flex;
  margin-bottom: 46px;
  color: rgba(79, 143, 49, 0.2);
  font-size: 60px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -4px;
}


.process-card h3 {
  margin-bottom: 12px;
  color: #3f3f3f;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 900;
}


.process-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* ============================= */
/* CONTACTO */
/* ============================= */


.contact-section {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(46, 107, 32, 0.96), rgba(79, 143, 49, 0.94)),
    url("https://images.unsplash.com/photo-1559302504-64aae6ca6b6d?auto=format&fit=crop&w=1600&q=85");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


.contact-section::before {
  content: "";
  width: 620px;
  height: 620px;
  position: absolute;
  right: -260px;
  bottom: -260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  pointer-events: none;
}


.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 56px;
}


.contact-info {
  color: #ffffff;
  position: sticky;
  top: 128px;
}


.contact-info .section-kicker {
  color: rgba(255, 255, 255, 0.84);
}


.contact-info h2 {
  color: #ffffff;
}


.contact-info > p {
  color: rgba(255, 255, 255, 0.82);
}


.contact-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}


.contact-points div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  backdrop-filter: blur(12px);
}


.contact-points strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}


.contact-points p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
}


.contact-form {
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  box-shadow: 0 34px 90px rgba(20, 36, 15, 0.3);
  backdrop-filter: blur(18px);
}


.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}


.form-row label {
  color: #40483d;
  font-size: 14px;
  font-weight: 800;
}


.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  color: #3f3f3f;
  background: #f7f4ec;
  border: 1px solid rgba(79, 143, 49, 0.18);
  border-radius: 18px;
  outline: none;
  font-size: 15px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}


.form-row textarea {
  min-height: 132px;
  padding-top: 16px;
  resize: vertical;
}


.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  background: #ffffff;
  border-color: rgba(79, 143, 49, 0.65);
  box-shadow: 0 0 0 5px rgba(79, 143, 49, 0.1);
}


.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #999f94;
}


.form-btn {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(79, 143, 49, 0.34);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}


.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(79, 143, 49, 0.42);
}


.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}


.form-message {
  min-height: 24px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  text-align: center;
}


.form-message.success {
  color: var(--green-dark);
}


.form-message.error {
  color: #b42318;
}


/* ============================= */
/* FOOTER */
/* ============================= */


.footer {
  padding: 34px 0;
  background: #1e2c19;
  color: #ffffff;
}


.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 900;
}


.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}


.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}


.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.22s ease;
}


.footer-links a:hover {
  color: #ffffff;
}


/* ============================= */
/* RESPONSIVE SECCIONES */
/* ============================= */


@media (max-width: 980px) {
  .solutions-section,
  .benefits-section,
  .projects-section,
  .process-section,
  .contact-section {
    padding: 86px 0;
  }


  .solutions-grid,
  .benefits-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }


  .solutions-grid {
    gap: 18px;
  }


  .benefits-layout {
    gap: 38px;
  }


  .benefits-image {
    height: 460px;
  }


  .benefits-info {
    max-width: none;
  }


  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 310px;
  }


  .large-project {
    grid-column: span 2;
  }


  .process-grid {
    grid-template-columns: 1fr 1fr;
  }


  .contact-info {
    position: static;
  }
}


@media (max-width: 640px) {
  .section-container {
    width: calc(100% - 24px);
  }


  .section-heading {
    margin-bottom: 36px;
    text-align: left;
  }


  .section-heading span,
  .section-kicker {
    justify-content: flex-start;
  }


  .section-heading h2,
  .benefits-info h2,
  .contact-info h2 {
    letter-spacing: -1.6px;
  }


  .section-heading p,
  .benefits-info > p,
  .contact-info > p {
    font-size: 15px;
  }


  .solutions-section,
  .benefits-section,
  .projects-section,
  .process-section,
  .contact-section {
    padding: 70px 0;
  }


  .solutions-grid,
  .projects-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }


  .solution-card {
    min-height: 290px;
    padding: 28px;
    border-radius: 28px;
  }


  .solution-card a {
    left: 28px;
    bottom: 28px;
  }


  .benefits-image {
    height: 360px;
    border-radius: 30px;
  }


  .check-list div {
    padding: 20px 18px 20px 60px;
    border-radius: 22px;
  }


  .projects-grid {
    grid-auto-rows: auto;
  }


  .project-card,
  .large-project {
    grid-column: auto;
    min-height: 320px;
  }


  .project-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }


  .project-content h3 {
    font-size: 22px;
  }


  .process-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 26px;
  }


  .process-card span {
    margin-bottom: 30px;
    font-size: 48px;
  }


  .contact-form {
    padding: 22px;
    border-radius: 28px;
  }


  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }


  .footer-links {
    gap: 14px;
  }
}


/* ============================= */
/* LOGO REAL */
/* ============================= */


.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}


.logo-img {
  width: 178px;
  height: auto;
  display: block;
  object-fit: contain;
}


.footer-brand {
  max-width: 360px;
}


.footer-logo {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
}


/* Ocultar estilos del logo anterior por si quedaron en el CSS */
.logo-mark,
.logo-leaf,
.logo-text {
  display: none;
}


/* ============================= */
/* HEADER MÁS LIMPIO EN MÓVIL */
/* ============================= */


@media (max-width: 980px) {
  .site-header {
    height: 64px;
    top: 12px;
    padding: 0 12px 0 16px;
    border-radius: 20px;
  }


  .logo-img {
    width: 148px;
  }


  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }


  .menu-toggle div {
    width: 20px;
  }


  .nav-menu.active {
    top: calc(100% + 10px);
  }


  .hero {
    padding-top: 106px;
  }
}


@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 22px);
    height: 58px;
    top: 10px;
    padding: 0 9px 0 13px;
    border-radius: 18px;
  }


  .logo-img {
    width: 128px;
    max-height: 100px;
  }


  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }


  .menu-toggle div {
    width: 18px;
    height: 2px;
  }


  .hero {
    padding-top: 92px;
  }


  .nav-menu.active {
    padding: 10px;
    border-radius: 18px;
  }


  .nav-menu.active a {
    padding: 12px 10px;
    font-size: 13px;
    border-radius: 12px;
  }
}


/* Footer responsive con logo */
@media (max-width: 640px) {
  .footer-logo {
    width: 150px;
    margin-bottom: 12px;
  }


  .footer-brand p {
    font-size: 13px;
    line-height: 1.6;
  }
}


/* ============================= */
/* HEADER NEGRO CON LOGO BLANCO */
/* ============================= */


.site-header {
  background: rgba(18, 22, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}


.nav-menu a {
  color: rgba(255, 255, 255, 0.78);
}


.nav-menu a:hover {
  color: #ffffff;
}






.menu-toggle {
  background: rgba(255, 255, 255, 0.1);
}


.menu-toggle div {
  background: #ffffff;
}


/* Menú abierto en móvil */
@media (max-width: 980px) {
  .nav-menu.active {
    background: rgba(18, 22, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }


  .nav-menu.active a {
    color: rgba(255, 255, 255, 0.82);
  }


  .nav-menu.active a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }
}


/* Evita que el JS vuelva el header blanco al hacer scroll */
.site-header.header-scrolled {
  background: rgba(18, 22, 16, 0.94);
}


.footer {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, #0c3103 0%, #2e6b20 55%, #1f3811 100%);
    color: #000;
    padding: 68px 0 24px;
    position: relative;
    overflow: hidden;
}


.footer::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    top: -130px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}


.footer::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: -130px;
    background: rgba(247, 244, 236, 0.16);
    border-radius: 50%;
    pointer-events: none;
}


.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 44px;
    align-items: flex-start;
}


.footer-brand {
    max-width: 440px;
}


.footer-logo {
    max-width: 165px;
    height: auto;
    display: block;
    margin-bottom: 22px;
    padding: 12px 16px;
    background: #000;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(32, 48, 25, 0.18);
}


.footer-brand p,
.footer-social-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}


.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--green-dark);
    background: var(--cream);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 18px;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(32, 48, 25, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.footer-phone i {
    color: var(--green);
}


.footer-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(32, 48, 25, 0.28);
}


.footer-column h3 {
    color: var(--white);
    font-size: 18px;
    margin: 0 0 22px;
    position: relative;
}


.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--cream);
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}


.footer-links a:hover {
    color: var(--cream);
    transform: translateX(5px);
}


.footer-socials {
    display: flex;
    margin-top: 20px;
}


.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-dark);
    background: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 20px;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(32, 48, 25, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.footer-socials a i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #1877f2;
    border-radius: 50%;
    font-size: 14px;
}


.footer-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(32, 48, 25, 0.28);
}


.footer-bottom {
    position: relative;
    z-index: 1;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    justify-content: center;
}


.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin: 0;
}


@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }
}


@media (max-width: 600px) {
    .footer {
        padding: 56px 0 22px;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }


    .footer-logo {
        max-width: 150px;
    }


    .footer-phone,
    .footer-socials a {
        width: 100%;
        justify-content: center;
    }


    .footer-bottom {
        justify-content: flex-start;
        text-align: left;
    }
}