/*
      Landing NAUTA Servicios — Anclajes y fijaciones.
      HTML standalone con CSS integrado para montaje externo.
      Enfoque visual: neo-brutalismo técnico, antracita, blanco operativo y verde neón.
    */
:root {
  --bg: #f7f7f2;
  --ink: #101312;
  --ink-2: #1b201d;
  --muted: #5b625e;
  --line: rgba(16, 19, 18, 0.13);
  --green: #00f27a;
  --green-dark: #00a855;
  --white: #ffffff;
  --panel: #e9ece6;
  --display: "Space Grotesk", "Arial Black", system-ui, sans-serif;
  --body:
    "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

:root {
  --primary: #12f280;
  --secondary: #151716;
  --background: #f7f7f7;
  --foreground: #151716;
  --border: #e5e7eb;
  --white: #ffffff;
  --gray-light: #f7f7f7;
  --gray-medium: #6b7280;
  --gray-dark: #151716;
}


* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--green);
  color: var(--ink);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 19, 18, 0.95);
  backdrop-filter: blur(18px);
}




.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a:hover {
  color: var(--green);
}

.top-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--green);
  color: var(--ink);
  padding: 0.95rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms ease;
}
.top-contact:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("https://d2xsxph8kpxj0f.cloudfront.net/310519663275002213/XPxgGLquHnazjnYkFgygDR/nauta_anclajes_hero-AAvpc2dD5WwxFAPy6u4aQW.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.78;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(0, 242, 122, 0.22),
      transparent 30%
    ),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(
      90deg,
      #101312 0%,
      rgba(16, 19, 18, 0.94) 34%,
      rgba(16, 19, 18, 0.58) 64%,
      rgba(16, 19, 18, 0.18) 100%
    );
  background-size:
    auto,
    48px 48px,
    48px 48px,
    auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.78fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 72px;
  padding: 38px !important;
  padding-bottom: 40px;
}
.animate-in-left {
  animation: in-left 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.green {
  color: var(--green);
}


.technical-card {
  position: relative;
  border: 1px solid var(--line);
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 18px,
    100% 100%,
    18px 100%,
    0 calc(100% - 18px)
  );
}
.technical-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(0, 242, 122, 0.18) 0 1px, transparent 1px 100%)
      top right / 48px 48px no-repeat,
    linear-gradient(315deg, rgba(16, 19, 18, 0.12) 0 1px, transparent 1px 100%)
      bottom left / 48px 48px no-repeat;
}
.hero-card {
  align-self: center;
  background: var(--bg);
  color: var(--ink);
  padding: 1.5rem;
  box-shadow: 10px 10px 0 var(--green);
}
.small-kicker {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-card h2 {
  margin-top: 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 900;
}
.check-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
}
.icon {
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
}

.trust-strip {
  position: relative;
  z-index: 10;
  margin-top: 2rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: var(--ink);
  padding: 0.75rem;
  box-shadow: 0 18px 60px rgba(16, 19, 18, 0.18);
}
.trust-card {
  background: var(--bg);
  padding: 1.25rem;
}
.trust-icon {
  margin-bottom: 1rem;
  color: var(--green-dark);
  font-size: 1.45rem;
}

.trust-card p,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding-block: 6rem;
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 2.25rem;
  height: 0.18rem;
  background: var(--green);
  box-shadow: 12px 0 0 rgba(0, 242, 122, 0.28);
}

.pain-grid {
  display: grid;
  gap: 1.25rem;
}
.pain-card {
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 6px 6px 0 rgba(16, 19, 18, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--green);
}

.split {
	padding: 20px 0px;
}


.pain-card h3,
.step h3,
.objection-card h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.dark-section {
  background: var(--ink);
  color: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}
.figure-wrap {
  position: relative;
}
.figure-wrap::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: -1.5rem;
  width: 6rem;
  height: 6rem;
  background: var(--green);
}
.figure-wrap img {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  box-shadow: 12px 12px 0 var(--green);
}
figcaption {
  margin-top: 1.25rem;
  border-left: 4px solid var(--green);
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-section {
  position: relative;
  padding-block: 6rem;
}
.process-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8rem;
  background: var(--ink);
}
.process-box {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(16, 19, 18, 0.16);
}
.process-left {
  background: var(--ink);
  color: var(--white);
  padding: 3rem;
}
.process-left img {
  margin-top: 2.5rem;
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}
.process-right {
  padding: 3rem;
}
.steps {
  display: grid;
  gap: 1.25rem;
}

.step-number {
  color: var(--green-dark);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  transition: letter-spacing 220ms ease;
}
.step:hover .step-number {
  letter-spacing: 0.08em;
}

.objections {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.objection-card {
  background: var(--white);
  padding: 1.5rem;
}
.objection-icon {
  color: var(--green-dark);
  font-size: 1.6rem;
}

.confidence {
  background: var(--panel);
  padding-block: 5rem;
}
.confidence-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
.dark-card {
  background: var(--ink);
  color: var(--white);
  padding: 1.5rem;
}
.dark-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.dark-card p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.faq {
  padding-block: 6rem;
}
.center {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.center .section-kicker {
  justify-content: center;
}
.faq-list {
  max-width: 900px;
  margin: 3rem auto 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
details {
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
details:last-child {
  border-bottom: 0;
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "⌄";
  color: var(--green-dark);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}
details[open] summary::after {
  transform: rotate(180deg);
}
details p {
  max-width: 780px;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-block: 5rem;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(0, 242, 122, 0.22),
    transparent 26%
  );
}
.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.final-title {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 80vw;
}


@keyframes in-left {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  .hero-grid,
  .service-grid,
  .process-box,
  .objections,
  .confidence-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dark-card-grid {
    grid-template-columns: 1fr;
  }
  .process-left,
  .process-right {
    padding: 2rem;
  }
}
@media (max-width: 720px) {
  .top-contact {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding-block: 4rem;
  }
  h1 {
    font-size: clamp(3.05rem, 17vw, 5.4rem);
  }
  .hero-copy {
    font-size: 1.15rem;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }
  .trust-grid,
  .services-list,
  .objection-grid {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
	padding-block: 2rem !important;
  }
  .section,
  .faq {
    padding-block: 4rem;
  }
  .process-section {
    padding-block: 4rem;
  }
  .step {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .mobile-whatsapp {
    display: inline-flex;
  }
}
@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;
  }
}


/* 

header
container
head-container
header-content
logo
icon
logo-icon
logo-text
header-button
btn
btn-primary
icon-whatsapp */



--------------------------------

/* ========================================
   NAUTA SERVICIOS - ESTILOS GLOBALES
   ======================================== */

/* Variables de Color */

.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Reset y Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Michroma", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}
/* 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
} */

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* ========================================
   CONTENEDOR Y LAYOUT
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.head-container {
  padding: 0 1.2rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: var(--foreground);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 40px;
  height: 40px;
  border: none;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-position: center;
}

.logo-icon {
  mask-image: url(../../assets/images/icono-inverted.svg);
  background-color: #12f280;
  border-radius: 8px;
  /* width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; */
}

.logo-text {
  width: 160px;
  height: 40px;
  mask-image: url(../../assets/images/tipo.svg);
  background-color: #12f280;
  mask-size: contain;
  mask-position: 0 50;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
display: flex;
  border: 2px solid var(--primary);
  align-items: center;
}

.btn-primary > a {
	display: block;
	color: black;
	padding: 0;
	margin: 0;
	width: fit-content;
}

.btn-primary > .icon {
	background-color: black;
}	

.black-button > a {
	color: white !important;
}

.black-button > .icon {
	background-color: white !important;
}


.btn-primary:hover {
  background-color: #0dd970;
  border-color: #0dd970;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(18, 242, 128, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* ========================================
   SECCIONES
   ======================================== */

.section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.875rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--foreground);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

.text-primary {
  color: var(--primary);
}

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

.hero-section {
  background-color: var(--white);
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background-color: rgba(18, 242, 128, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.checkmark {
  color: var(--primary);
  font-size: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-button,
.header-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-button {
  padding: 8px !important;
  width: fit-content;
}

.hero-button > .icon {
	width: 28px;
	height: 28px;
	background-color: black;
}

.header-button > .icon {
  width: 20px;
  height: 20px;
  background-color: black;
}

.hero-button a,
.header-button a {
  color: rgb(0, 0, 0);
  font-size: 0.8rem;
}

.header-button a {
  padding: 0;
  font-size: 14px !important;
  color: black;
}



/* ========================================
   WHAT IS NAUTA SECTION
   ======================================== */

.what-is-nauta {
  background: linear-gradient(
    to bottom,
    var(--white),
    rgba(18, 242, 128, 0.05)
  );
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(18, 242, 128, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.card p {
  color: var(--gray-medium);
  font-size: 0.875rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(18, 242, 128, 0.2);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-card p {
  font-weight: 600;
  color: var(--foreground);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}


.service-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px;
}


.service-card summary {
  display: flex;
  gap: 1rem;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(18, 242, 128, 0.2);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 1rem;
}


/* .service-list {
  margin: 10px 0;
  padding-left: 18px;
}

.service-list li {
  padding: 0.5rem 0;
  color: var(--gray-medium);
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
} */
/* hide after 2 items */
/* .service-list li:nth-child(n+3) {
  display: none;
} */

/* .service-list li:nth-child(n + 4) {
  display: none;
} */
/* show all when expanded */
/* .service-card.expanded .service-list li {
  display: list-item;
} */

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
  background-color: var(--white);
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}


.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.step p {
  font-size: 0.875rem;
  color: var(--gray-medium);
}

.step-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  display: none;
}

@media (min-width: 768px) {
  .step-arrow {
    display: inline-block;
  }

  .steps-container {
    gap: 0.5rem;
  }
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.problems-section {
  background-color: var(--white);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.problem-item {
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.problem-item:hover {
  background-color: rgba(18, 242, 128, 0.1);
  transform: translateY(-4px);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-item p {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(18, 242, 128, 0.15);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.benefit-card p {
  color: var(--gray-medium);
  font-size: 0.95rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--white);
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--gray-light);
  color: var(--primary);
}

.faq-arrow {
  color: var(--primary);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--gray-medium);
  line-height: 1.8;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  background-color: rgba(18, 242, 128, 0.05);
  color: var(--primary);
}

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

.cta-final {
  background: linear-gradient(135deg, var(--primary), #0dd970);
  color: var(--secondary);
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .cta-final {
    padding: 2rem 0;
  }
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--secondary);
}

.cta-final p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(21, 23, 22, 0.9);
}

.cta-final .btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
}

.cta-final > .icon {
  width: 28px;
  height: 28px;
}

.cta-final .btn-primary:hover {
  background-color: rgba(21, 23, 22, 0.9);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 3rem 0 1rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ========================================
   WHATSAPP BUTTON FLOTANTE
   ======================================== */

.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(18, 242, 128, 0.4);
  transition: all 0.3s ease;
  z-index: 50;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(18, 242, 128, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-button {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

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

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 1.5rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.2rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }
  .cards-grid,
  .services-grid,
  .benefits-grid,
  .problems-grid {
    grid-template-columns: 1fr;
  }
}
