@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --bg: #060d1e;
  --panel: rgba(11, 22, 42, 0.82);
  --panel-strong: rgba(16, 32, 58, 0.9);
  --card: #0f1f3c;
  --accent: #00c48c;
  --accent-alt: #6b3fa0;
  --text: #e9eef7;
  --muted: #c2cee5;
  --border: rgba(255, 255, 255, 0.06);
  --shadow: 0 18px 60px rgba(4, 10, 25, 0.35);
}

body {
  background: radial-gradient(circle at 10% 20%, rgba(107, 63, 160, 0.1), transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(0, 196, 140, 0.12), transparent 20%),
    linear-gradient(140deg, #050a18, #0c1730);
  color: var(--text);
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", serif;
}

a {
  text-decoration: none;
  font-family: "Inter", serif;
  color: var(--muted);
}

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

p {
  font-size: 16px;
  line-height: 1.75;
  font-family: "Inter", sans-serif;
  color: var(--muted);
}

.rounded {
  border-radius: 8px !important;
}

.btn-whatsapp {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00C48C;
  color: #f4f4f4;
  font-size: 30px;
  border-radius: 50px;
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  transition: 0.4s;
}

.btn-whatsapp ion-icon {
  font-size: 30px;
}

.btn-whatsapp:hover {
  color: #f4f4f4;
  background-color: #6B3FA0;
  box-shadow: 0 4px 16px -4 rgba(0, 0, 0, 0.7);
}

.btn {
  padding: 10px 24px;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 196, 140, 0.18);
}

.btn span {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn ion-icon {
  margin: -16px 0 -16px 16px;
  font-size: 17px;
}

.btn.btn-primary {
  background: linear-gradient(135deg, #00c48c, #00e6a8);
  border-color: #00c48c;
  color: #fff;
  font-weight: 600;
  padding: 16px 24px;
}

.btn.btn-primary ion-icon {
  color: #f4f4f4;
}

.btn.btn-primary:hover {
  background: #00b580;
  border-color: #00b580;
  color: #f4f4f4;
}

.btn.btn-primary-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  font-weight: 600;
  padding: 16px 24px;
  border-width: 1.5px;
}

.btn.btn-primary-outline:hover {
  background: var(--accent-alt);
  border-color: var(--accent-alt);
  color: #fff;
}

.rotate {
  animation-name: rotate;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: linear;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }

  50% {
    transform: rotateZ(180deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

/* header */

header {
  width: 100%;
  position: absolute;
  background: rgba(6, 11, 24, 0.8);
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

header .header-top {
  background: #00C48C;
  padding: 10px 0;
}

header .header-top .content {
  padding: 0;
}

header .header-top .content a.link {
  display: flex;
  align-items: center;
  color: #f4f4f4;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
}

header .header-top .content a.link ion-icon {
  color: #f4f4f4;
  margin-right: 10px;
  font-size: 16px;
}

header .header-top .content .social {
  display: flex;
  align-items: center;
}

header .header-top .content .social a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  padding: 4px 8px;
  color: #f4f4f4;
  transition: all 0.2s;
}

header .header-top .content .social a:hover {
  color: #6b3fa0;
}

header .logo {
  display: block;
}

header .logo img {
  height: 70px;
}

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

header .content nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

header .content nav ul li a {
  padding: 10px 24px;
  line-height: 1;
  margin-left: 8px;
  color: #f4f4f4;
  text-decoration: none;
  transition: all 0.2s;
}

header .content nav ul li a:hover {
  color: #00c48c;
}

header .content nav ul li a.btn {
  background: #00c48c;
  border-color: #00c48c;
  color: #f4f4f4;
  font-weight: 600;
  padding: 16px 24px;
}

/* main */

section.home {
  padding: calc(180px + 98px) 0 calc(48px + 160px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
}

section.home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(6, 13, 30, 0.85), rgba(11, 22, 42, 0.55));
  z-index: 0;
}

section.home .content {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 40px 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

section.home .content h1 {
  margin: 0;
  font-size: 40px;
  color: #F4F4F4;
  padding: 0;
}

section.home .content h1 span {
  color: #00c48c;
}

section.home .content p {
  font-size: 18px;
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

section.home .content .btn {
  margin: 8px 0 0;
}

section.home .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin: 0;
  border-radius: 999px;
  background: rgba(0, 196, 140, 0.14);
  color: #8ff3d5;
  border: 1px solid rgba(0, 196, 140, 0.28);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 42px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  font-size: 14px;
}

.hero-footnotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}

.stat-card strong {
  display: block;
  color: #f4f4f4;
  font-size: 16px;
}

.stat-card small {
  color: var(--muted);
}

/* main */

section.section-default {
  padding: 64px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background: radial-gradient(circle at 20% 10%, rgba(0, 196, 140, 0.08), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(107, 63, 160, 0.08), transparent 30%),
    linear-gradient(160deg, #0b152a, #0c1730 60%, #0b192f);
  border-bottom: 1px solid rgba(0, 196, 140, 0.1);
}

section.section-default.overlay {
  position: relative;
}

section.section-default.overlay::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #1f2945;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

section.section-default.overlay .container {
  position: relative;
  z-index: 1;
}

section.section-default form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  border-radius: 12px;
  min-height: 56px;
  padding: 12px 16px;
}

section.section-default form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #00c48c;
  box-shadow: 0 0 0 0.2rem rgba(0, 196, 140, 0.15);
}

div.section-title h2 {
  font-size: 48px;
  font-weight: 600;
  color: #F4F4F4;
  margin: 0;
  position: relative;
}

div.section-title h2::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 4px;
  background: #00c48c;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
}

div.section-title.text-center h2::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 4px;
  background: #00c48c;
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
}

div.section-title h3 {
  font-size: 28px;
  font-weight: 600;
  color: #F4F4F4;
  margin: 0;
  position: relative;
}

div.section-title h3::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 4px;
  background: #00c48c;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
}

div.section-title.text-center h3::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 4px;
  background: #00c48c;
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  transform: translateX(-50%);
}


.item-service {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  height: 100%;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  transition: all 0.35s ease;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  color: inherit;
  text-decoration: none;
}

.item-service ion-icon {
  min-width: 56px;
  font-size: 56px;
  margin-right: 24px;
  color:#f4f4f4;
}

.item-service h5 {
  margin: 12px 0 16px;
  color: #F4F4F4;
  font-size: 18px;
}

.item-service p {
  color: #F4F4F4;
  line-height: 24px;
  margin: 0;
}

.item-service:hover {
  box-shadow: 0 14px 40px 0 rgb(0 0 0 / 35%);
  border-color: rgba(0, 196, 140, 0.4);
  transform: translateY(-4px);
}

.item-count {
  display: flex;
  align-items: center;
  padding: 24px;
}

.item-count ion-icon {
  font-size: 48px;
  margin-right: 24px;
  color: #f4f4f4;
}

.service-icon {
  font-size: 35px;
  margin-bottom: 20px;
  color: #00C48C;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  display: grid;
  gap: 8px;
}

.service-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 18px 0;
  align-items: stretch;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  height: 100%;
}

.value-card h6 {
  margin: 0 0 6px;
  color: #f4f4f4;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 196, 140, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}

.image-frame {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 12px;
}

.contact-card .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: none;
}

section.section-default form .form-control::placeholder,
.contact-card .form-control::placeholder {
  color: rgba(233, 238, 247, 0.65);
}

.microcopy {
  color: var(--muted);
  margin-bottom: 12px;
}

.helper-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

#frentes .frentes-title {
  margin-bottom: 64px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

#frentes .frentes-title p {
  margin: 0;
}

@media (max-width: 991px) {
  #frentes .frentes-title {
    margin-bottom: 40px;
    gap: 20px;
  }
}

.section-subtitle {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.pillar-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  height: 100%;
  display: grid;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.pillar-card h6 {
  color: #f4f4f4;
  font-size: 15px;
  margin: 0 0 8px;
}

.pillar-card p {
  margin: 0;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  height: 96px;
  width: 100%;
  text-align: center;
  background: rgba(0, 196, 140, 0.12);
  border: 1px solid rgba(0, 196, 140, 0.26);
  color: #8ff3d5;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.pillar-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.pillar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.pillar-list li {
  position: relative;
  padding-left: 16px;
  line-height: 1.55;
}

.pillar-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 9px;
}

.pillar-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  min-height: 52px;
}

.badge-soft::before {
  content: "✔";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 196, 140, 0.18);
  border: 1px solid rgba(0, 196, 140, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8ff3d5;
  font-size: 12px;
}

.delivery-steps {
  display: grid;
  gap: 12px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.step-card h6 {
  margin: 0 0 6px;
  color: #f4f4f4;
  font-size: 15px;
}

.step-card p {
  margin: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 196, 140, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  border: 1px solid rgba(0, 196, 140, 0.26);
}

/* footer */

footer {
  padding: 64px 0;
  background: linear-gradient(180deg, #0c1730 0%, #0a1326 100%);
  border-top: 1px solid var(--border);
}

footer .logo {
  margin-bottom: 50px;
}

footer .logo img {
  height: 80px;
}

footer p {
  color: #F4F4F4;
  font-size: 16px;
  margin-bottom: 8px;
}

footer h5 {
  font-size: 26px;
  color: #F4F4F4;
  margin-bottom: 24px;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer ul li a {
  color: #f4f4f4;
  text-decoration: none;
  line-height: 1.75;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
}

footer ul.social {
  display: flex;
}

footer ul.social li a {
  color: #f4f4f4;
  background: #00c48c;
  border-radius: 100px;
  padding: 8px;
  margin-right: 8px;
}

footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px solid rgba(0, 196, 140, 0.1);
}

footer .copyright p {
  color: #00C48C;
  margin-bottom: 0;
}

.bg-light {
  background: #f4f4f4 !important;
}

.toggler-menu {
  border: none;
  background: none;
  font-size: 24px;
  color: #f4f4f4;
  cursor: pointer;
}

@media (max-width: 991px) {
  .menu-mobile {
    position: fixed;
    top: 0;
    left: -100vw;
    padding: 36px;
    background: rgba(31, 41, 69, 0.8);
    box-shadow: 4px 0 8px 0 rgb(4 13 20 / 6%);
    width: 100%;
    max-width: 360px;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: 80px;
    transition: all 0.4s;
    z-index: 1200;
  }

  .menu-mobile.animated {
    left: 0;
  }

  .menu-mobile ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .menu-mobile ul li a {
    display: flex;
    margin-bottom: 36px;
    color: #f4f4f4;
    transition: 0.2s;
    text-decoration: none;
  }

  .menu-mobile ul li a:hover {
    color: #00c48c;
  }

  section.home h1 {
    font-size: 46px;
  }

  div.section-title h2 {
    font-size: 30px;
  }

  section.home {
    padding: calc(160px + 98px) 0 calc(64px + 100px);
    min-height: 100vh;
  }

  section.home .content h1 {
    padding: 0;
  }

  section.home .content p {
    padding: 0;
  }

  section.home .content .btn {
    margin: 8px 0 0;
  }
}

@media (max-width: 540px) {
  .menu-mobile {
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .hero-tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .hero-tags .chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 42px;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
  }
}



/* formulario */

section.formulario {
  background-color: #f8f9fa;
}

section.formulario .container {
  max-width: 950px;
  padding: 2rem;
  margin-top: 150px;
}

.question {
  margin-bottom: 1.5rem;
}
.category {
  background-color: #f1f3f5;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
}
.scale {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.scale input[type="radio"] {
  display: none;
}
.scale label {
  flex: 1;
  padding: 0.5rem;
  text-align: center;
  background-color: #e9ecef;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.9rem;
}
.scale input[type="radio"]:checked + label {
  background-color: #0d6efd;
  color: white;
  font-weight: bold;
}
.alert {
  display: none;
}
.alert.show {
  display: block;
}
.score-bar {
  position: relative;
  background-color: #dee2e6;
  height: 30px;
  border-radius: 15px;
  overflow: hidden;
}
.score-indicator {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #0d6efd;
  transition: width 0.5s ease-in-out;
}
