/* =========================================================
   Soporte Tecnológico Perú
   Paleta: azul petróleo, celeste, gris y acentos cálidos
   ========================================================= */

:root {
  --navy: #122C40;
  --blue: #1B4E73;
  --blue-2: #2F6F98;
  --sky: #DCECF5;
  --sky-2: #EEF6FA;
  --slate: #536575;
  --gray: #E4E9ED;
  --gray-2: #F5F7F9;
  --white: #FFFFFF;
  --ink: #17232C;
  --warm: #E29A45;
  --warm-dark: #BF7228;
  --green: #25D366;
  --shadow: 0 22px 60px rgba(18, 44, 64, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 44, 64, 0.08);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(18, 44, 64, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: 0 10px 25px rgba(27, 78, 115, 0.25);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-text strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--warm-dark);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--slate);
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-menu a {
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-menu .nav-cta {
  padding: 11px 19px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
}

.nav-menu .nav-cta:hover {
  color: var(--white);
  background: var(--navy);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.35rem;
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 85px;
  background:
    linear-gradient(135deg, #F7FBFD 0%, #EEF6FA 50%, #FFFFFF 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 78px;
  right: -13%;
  width: 58%;
  height: 82%;
  border-radius: 48% 0 0 48%;
  background: linear-gradient(145deg, rgba(220, 236, 245, 0.82), rgba(255, 255, 255, 0));
  transform: rotate(-7deg);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.45;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  left: -110px;
  top: 180px;
  background: rgba(47, 111, 152, 0.18);
}

.hero-glow-two {
  width: 190px;
  height: 190px;
  right: 4%;
  bottom: -70px;
  background: rgba(226, 154, 69, 0.17);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 19px;
}

.eyebrow i {
  color: var(--warm);
}

.eyebrow.light {
  color: var(--sky);
}

.hero h1,
.section-heading h2,
.benefits-copy h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5vw, 4.65rem);
}

.hero h1 span {
  color: var(--blue-2);
}

.hero-copy > p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--slate);
  font-size: 1.09rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 23px;
  border: 0;
  border-radius: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(27, 78, 115, 0.2);
}

.btn-primary:hover {
  background: var(--navy);
  box-shadow: 0 17px 36px rgba(18, 44, 64, 0.26);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(18, 44, 64, 0.14);
}

.btn-secondary:hover {
  border-color: rgba(18, 44, 64, 0.28);
}

.btn-warm {
  width: 100%;
  color: var(--navy);
  background: var(--warm);
}

.btn-warm:hover {
  background: #F0AC59;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 24px;
  margin-top: 28px;
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--sky);
  font-size: 0.65rem;
}

.hero-visual {
  position: relative;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(18, 44, 64, 0.09);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 35px 85px rgba(18, 44, 64, 0.18);
  transform: perspective(1300px) rotateY(-4deg) rotateX(2deg);
}

.dashboard-topbar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #F5F8FA;
  border-bottom: 1px solid #E7ECEF;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #B6C2CA;
}

.window-controls span:first-child {
  background: #E5A35B;
}

.dashboard-label {
  color: #84929D;
  font-size: 0.68rem;
  font-weight: 700;
}

.dashboard-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  color: #91A1AD;
  background: var(--navy);
}

.sidebar-logo {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--warm);
  font-size: 0.65rem;
  font-weight: 900;
}

.dashboard-sidebar span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}

.dashboard-sidebar span.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.dashboard-content {
  padding: 24px;
  background: #F7F9FA;
}

.dashboard-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.dashboard-heading small {
  color: #85939E;
  font-size: 0.67rem;
}

.dashboard-heading h3 {
  margin-top: 3px;
  color: var(--navy);
  font-size: 1rem;
}

.status-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: #28714E;
  background: #DFF4E9;
  font-size: 0.61rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 14px;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 8px 25px rgba(18, 44, 64, 0.05);
}

.metric span,
.metric small {
  display: block;
  color: #81909B;
  font-size: 0.59rem;
}

.metric strong {
  display: block;
  margin: 5px 0 4px;
  color: var(--navy);
  font-size: 0.9rem;
}

.metric:first-child small {
  color: #25845A;
}

.chart-card {
  margin-top: 12px;
  padding: 16px;
  border-radius: 15px;
  background: var(--white);
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
}

.chart-title small {
  color: #8D9AA4;
  font-size: 0.57rem;
  font-weight: 600;
}

.fake-chart {
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 18px;
  padding: 0 5px;
  border-bottom: 1px solid #EDF0F2;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 26px,
      #F0F3F5 27px
    );
}

.fake-chart span {
  flex: 1;
  min-width: 14px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(to top, var(--blue), #6FA6C7);
}

.fake-chart span:last-child {
  background: linear-gradient(to top, var(--warm-dark), var(--warm));
}

.activity-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 13px;
  background: var(--white);
}

.activity-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #38B776;
  box-shadow: 0 0 0 5px #E2F5EB;
}

.activity-card div:nth-child(2) {
  flex: 1;
}

.activity-card strong,
.activity-card small {
  display: block;
}

.activity-card strong {
  color: var(--navy);
  font-size: 0.68rem;
}

.activity-card small {
  color: #85939D;
  font-size: 0.56rem;
}

.activity-card > i {
  color: #38A972;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 185px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(18, 44, 64, 0.16);
}

.floating-card i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-2);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.71rem;
}

.floating-card small {
  color: #7D8C97;
  font-size: 0.59rem;
}

.floating-card-one {
  left: -50px;
  bottom: 28px;
}

.floating-card-two {
  top: 75px;
  right: -45px;
}

.floating-card-two i {
  color: var(--navy);
  background: var(--warm);
}

.problem-strip {
  color: var(--white);
  background: var(--navy);
}

.problem-grid {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.problem-grid div {
  display: flex;
  flex-direction: column;
}

.problem-grid strong {
  font-size: 1.12rem;
}

.problem-grid span {
  color: #BFD0DB;
  font-size: 0.9rem;
}

.problem-grid a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--warm);
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.section {
  padding: 105px 0;
}

.section-alt {
  background: var(--gray-2);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2,
.benefits-copy h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p,
.benefits-copy > p,
.about-copy > p,
.faq-heading p {
  margin-top: 17px;
  color: var(--slate);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border: 1px solid #E3E9ED;
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(47, 111, 152, 0.25);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 15px;
  color: var(--blue);
  background: var(--sky-2);
  font-size: 1.2rem;
}

.service-card:nth-child(3n + 2) .icon-box {
  color: var(--warm-dark);
  background: #FFF4E7;
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.17rem;
}

.service-card p {
  margin-top: 10px;
  color: var(--slate);
  font-size: 0.91rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin-top: 19px;
  list-style: none;
  color: #536675;
  font-size: 0.82rem;
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-2);
  font-weight: 900;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 0.87fr;
  align-items: center;
  gap: 80px;
}

.benefit-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.benefit-list > div {
  display: flex;
  gap: 15px;
}

.benefit-list i {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: var(--sky);
}

.benefit-list strong,
.benefit-list small {
  display: block;
}

.benefit-list strong {
  color: var(--navy);
  margin-bottom: 3px;
}

.benefit-list small {
  color: var(--slate);
}

.benefits-panel {
  padding: 35px;
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(226, 154, 69, 0.21), transparent 34%),
    linear-gradient(145deg, var(--blue), var(--navy));
  box-shadow: 0 30px 70px rgba(18, 44, 64, 0.22);
}

.panel-highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.panel-number {
  font-size: 2.55rem;
  font-weight: 800;
  color: var(--warm);
  line-height: 1;
}

.panel-highlight small {
  color: #BCD0DB;
}

.panel-highlight h3 {
  margin-top: 3px;
  font-size: 1.17rem;
}

.panel-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.panel-stat > i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--navy);
  background: var(--warm);
}

.panel-stat strong,
.panel-stat small {
  display: block;
}

.panel-stat small {
  margin-top: 2px;
  color: #BFD0DB;
  font-size: 0.79rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--sky), var(--warm), var(--sky));
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  text-align: center;
}

.process-step > span {
  position: absolute;
  top: 0;
  right: 17px;
  color: #DCE5EA;
  font-size: 2.2rem;
  font-weight: 800;
}

.process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border: 7px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--sky), 0 12px 30px rgba(18, 44, 64, 0.15);
}

.process-step:nth-child(2) .process-icon,
.process-step:nth-child(4) .process-icon {
  color: var(--navy);
  background: var(--warm);
}

.process-step h3 {
  color: var(--navy);
}

.process-step p {
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.87rem;
}

.about-section {
  background:
    linear-gradient(90deg, #F5F9FB 0 50%, var(--white) 50% 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 85px;
}

.about-visual {
  min-height: 430px;
  position: relative;
}

.about-card {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-main {
  position: absolute;
  inset: 35px 50px 35px 0;
  padding: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at bottom right, rgba(226, 154, 69, 0.28), transparent 32%),
    linear-gradient(145deg, var(--blue), var(--navy));
}

.about-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--warm);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-main h3 {
  max-width: 380px;
  margin-top: 25px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.about-main p {
  max-width: 420px;
  margin-top: 18px;
  color: #C8D8E2;
}

.about-small {
  position: absolute;
  right: 0;
  width: 210px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.78rem;
}

.about-small i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--blue);
  background: var(--sky);
}

.about-small:nth-child(2) {
  top: 0;
}

.about-small:nth-child(3) {
  bottom: 0;
}

.about-copy > p + p {
  margin-top: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 800;
}

.faq-section {
  background: var(--gray-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.accordion {
  display: grid;
  gap: 13px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid #DEE5E9;
  border-radius: 16px;
  background: var(--white);
}

.accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-weight: 800;
}

.accordion-button i {
  transition: transform 0.25s ease;
  color: var(--blue);
}

.accordion-button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding: 0 22px 20px;
  color: var(--slate);
  font-size: 0.9rem;
}

.contact-section {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 30%, rgba(47, 111, 152, 0.45), transparent 30%),
    linear-gradient(135deg, #10283A, #183D58);
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -120px;
  bottom: -170px;
  border-radius: 50%;
  background: rgba(226, 154, 69, 0.15);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  max-width: 520px;
  margin-top: 18px;
  color: #C3D3DE;
}

.contact-data {
  display: grid;
  gap: 16px;
  margin-top: 35px;
}

.contact-data > a,
.contact-data > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-data i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--navy);
  background: var(--warm);
}

.contact-data small,
.contact-data strong {
  display: block;
}

.contact-data small {
  color: #B8CCD8;
  font-size: 0.73rem;
}

.contact-form {
  padding: 32px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.17);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #DCE3E8;
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: #FBFCFD;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(47, 111, 152, 0.11);
}

.form-note {
  display: block;
  margin-top: 10px;
  color: #798995;
  text-align: center;
}

.footer {
  padding: 48px 0 23px;
  color: #C1D0D9;
  background: #0A1D2A;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-grid > p {
  max-width: 500px;
  font-size: 0.84rem;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--warm);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 33px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8296A3;
  font-size: 0.72rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.32);
  font-size: 1.65rem;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

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

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

@media (max-width: 1040px) {
  .hero-grid,
  .benefits-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    gap: 50px;
  }

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

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p,
  .hero h1 {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(720px, 95%);
    margin: 15px auto 0;
  }

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

  .process-grid::before {
    display: none;
  }

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

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 17px;
    border: 1px solid #E2E8EC;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 11px 13px;
  }

  .problem-grid,
  .benefits-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .about-grid {
    gap: 55px;
  }

  .about-visual {
    order: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-text strong {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 125px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .dashboard-card {
    transform: none;
  }

  .dashboard-body {
    grid-template-columns: 45px 1fr;
  }

  .dashboard-content {
    padding: 16px 12px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric:nth-child(2),
  .metric:nth-child(3) {
    display: none;
  }

  .services-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .benefits-panel {
    padding: 27px 22px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-main {
    inset: 0 0 95px;
    padding: 35px 28px;
  }

  .about-small {
    width: calc(50% - 6px);
    right: auto;
    bottom: 0 !important;
    top: auto !important;
  }

  .about-small:nth-child(2) {
    left: 0;
  }

  .about-small:nth-child(3) {
    right: 0;
    left: auto;
  }

  .about-small {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .whatsapp-float {
    width: 53px;
    height: 53px;
    right: 16px;
    bottom: 16px;
  }
}

/* =========================================================
   Actualización visual STP 2026 — identidad del nuevo logotipo
   ========================================================= */
:root {
  --navy: #063f79;
  --blue: #0755a0;
  --blue-2: #0b66c3;
  --sky: #dff4fb;
  --sky-2: #f4fbfe;
  --turquoise: #00b9d6;
  --red: #ff2a20;
  --warm: #00b9d6;
  --warm-dark: #008ea9;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(220px, 24vw, 330px);
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: min(290px, 100%);
  filter: brightness(0) invert(1);
}

.navbar {
  min-height: 86px;
}

.hero {
  padding-top: 164px;
  background:
    radial-gradient(circle at 78% 32%, rgba(0, 185, 214, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f9fd 56%, #eefaff 100%);
}

.hero h1 {
  font-size: clamp(2.45rem, 4.4vw, 4.25rem);
  max-width: 800px;
}

.hero h1::first-line {
  color: var(--navy);
}

.eyebrow {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(7, 85, 160, 0.07);
}

.eyebrow i {
  color: var(--red);
}

.btn-primary,
.nav-menu .nav-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 28px rgba(6, 63, 121, 0.2);
}

.btn-primary:hover,
.nav-menu .nav-cta:hover {
  background: var(--navy);
}

.problem-strip {
  background: linear-gradient(90deg, #043d76, #0755a0 68%, #008faa);
}

.services-grid-main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.services-grid-main .service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-top: 4px solid var(--blue);
}

.services-grid-main .service-card:nth-child(2) {
  border-top-color: var(--turquoise);
}

.services-grid-main .service-card.featured {
  box-shadow: 0 26px 70px rgba(6, 63, 121, 0.14);
}

.service-kicker {
  display: inline-flex;
  align-self: flex-start;
  margin: 2px 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 85, 160, 0.08);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.icon-box.turquoise {
  background: linear-gradient(145deg, var(--turquoise), #00a6c2);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--blue);
  font-weight: 800;
}

.service-link:hover {
  gap: 13px;
}

.service-link i {
  transition: transform .2s ease;
}

.service-link:hover i {
  transform: translateX(3px);
}

.whatsapp-float {
  box-shadow: 0 14px 35px rgba(37, 211, 102, .35);
}

@media (max-width: 1050px) {
  .brand-logo { width: 250px; }
  .services-grid-main { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .navbar { min-height: 74px; }
  .brand-logo { width: 210px; }
  .hero { padding-top: 128px; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.1rem); }
}
