/* #region navbar */
/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 64px;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: all 0.4s ease-in-out;
}

nav.scrolling {
  background: rgba(20, 6, 6, 0.85);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease-in-out;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon .material-icons {
  color: var(--wine-dark);
  font-size: 20px;
}

.nav-logo-text {
  font-family: "Tiktok Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--wine-dark) !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--wine-dark) !important;
}
/* #endregion */

/* #region hero */
/* ========== HERO ========== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero_bg.jpg") center/cover no-repeat;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 6, 6, 0.3) 0%,
    rgba(20, 6, 6, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.1px solid var(--gold);
  padding: 8px 14px;
  border-radius: 3px;
  margin-bottom: 28px;
  background-color: rgba(200, 169, 110, 0.2);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 300;
}

.hero-sub2 {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--wine-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

.hero-trust {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.trust-dots {
  display: flex;
  gap: 4px;
}

.trust-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
/* #endregion */

/* #region problemas */
/* ========== PROBLEMAS ========== */
#problemas {
  background: #fff;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.problem-card {
  text-align: left;
  padding: 32px 24px;
  background-color: var(--bg-cards);
  border-radius: 12px;
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: #f5f0e8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-icon .material-icons {
  font-size: 28px;
  color: var(--gold);
}

.problem-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.problem-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* #endregion */

/* #region solucion */
/* ========== SOLUCIÓN ========== */
#solucion {
  background: var(--wine-dark);
  padding: 90px 0;
}

#solucion .section-title {
  color: #fff;
}

#solucion .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.tag-solucion {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 110, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.solution-icon .material-icons {
  font-size: 26px;
  color: var(--gold);
}

.solution-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}
/* #endregion */

/* #region modulos */
/* ========== MÓDULOS ========== */
#modulos {
  background: var(--bg-section);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 24px;
}

.module-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 28px;
  border: 1px solid #eee;
  transition: box-shadow 0.2s;
}

.module-card.uno,
.module-card.dos,
.module-card.tres,
.module-card.cuatro {
  grid-column: span 3;
}

.module-card.cinco,
.module-card.seis,
.module-card.siete {
  grid-column: span 4;
}

.module-card:hover {
  box-shadow: 0 8px 32px rgba(92, 26, 26, 0.1);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.module-icon .material-icons {
  font-size: 22px;
  color: var(--wine);
}

.module-card h3 {
  font-family: "Tiktok Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.module-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-mid);
}

.module-features li .material-icons {
  font-size: 16px;
  color: var(--gold);
}
/* #endregion */

/* #region beneficios */
/* ========== BENEFICIOS ========== */
#beneficios {
  background: #fff;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-header p {
  font-size: 15px;
  color: var(--text-light);
  max-width: 460px;
  margin: 10px auto 0;
  line-height: 1.7;
}

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

.benefit-card {
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background-color: var(--bg-cards);
  border-bottom: 3px solid black;
}

.benefit-card.brown {
  border-bottom-color: var(--livid-brown);
}

.benefit-card.gold {
  border-bottom-color: var(--gold);
}

.benefit-card.black {
  border-bottom-color: var(--azure-black);
}

.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(200, 169, 110, 0.15);
}

.benefit-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 10px;
}

.benefit-card.brown .benefit-number {
  color: var(--livid-brown);
}

.benefit-card.gold .benefit-number {
  color: var(--gold);
}

.benefit-card.black .benefit-number {
  color: var(--azure-black);
}

.benefit-card h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}
/* #endregion */

/* #region implementacion */
/* ========== IMPLEMENTACIÓN ========== */
#implementacion {
  background: var(--bg-section);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 50px;
}

.steps-row::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 3px;
  background: #e0d8cc;
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 500;
  border: 6px solid white;
}

.step:nth-child(1) .step-circle {
  background: var(--wine);
  color: #fff;
}

.step:nth-child(2) .step-circle {
  background: var(--wine-mid);
  color: #fff;
}

.step:nth-child(3) .step-circle {
  background: #9e6f3f;
  color: #fff;
}

.step:nth-child(4) .step-circle {
  background: #c8a96e;
  color: #fff;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.step p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}
/* #endregion */

/* #region faq */
/* ========== FAQ ========== */
#faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 8px;
  padding: 25px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.3s;
  border: 1px solid var(--bg-cards);
  background-color: var(--bg-cards);
}

.faq-item:hover {
  border-color: var(--gold-light);
}

.faq-item span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
}

.faq-item .material-icons {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
/* #endregion */

/* #region contacto */
/* ========== CONTACTO ========== */
#contacto {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--color-red-25, #552c32) 0%,
    var(--color-red-16, #371d1e) 100%
  );
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-item h5 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
  font-weight: 300;
}

.contact-info-item span {
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  font-weight: 500;
}

.contact-info-item .icon {
  width: 54px;
  height: 54px;
  border-radius: 9999px;
  border: var(--stroke-weight-1, 1px) solid
    var(--color-white-20, rgba(255, 255, 255, 0.2));
  background: var(--color-white-10, rgba(255, 255, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item .material-icons {
  font-size: 22px;
  color: var(--gold);
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 36px;
}

.contact-form h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-select-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.form-label-small {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
  font-weight: 400;
}

.form-select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: "Tiktok Sans", sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  appearance: none;
  background: #f9f9f9
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23aaa'/%3E%3C/svg%3E")
    no-repeat right 14px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 10px 14px;
  font-family: "Tiktok Sans", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: #f9f9f9;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  background: var(--wine-dark);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-family: "Tiktok Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--wine);
}
/* #endregion */

/* #region footer */
/* ========== FOOTER ========== */
footer {
  background: #111;
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 16px 0 20px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social .material-icons {
  font-size: 15px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.footer-cert-item .material-icons {
  font-size: 15px;
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom .material-icons {
  font-size: 13px;
  color: #e74c3c;
  vertical-align: middle;
}
/* #endregion */
