:root {
  --color-bg: #11141a;
  --color-bg-elevated: #171c24;
  --color-bg-soft: #181d26;
  --color-text: #f5f5f7;
  --color-text-muted: #b0b4c0;
  --color-accent: #d6b46c;
  --color-accent-soft: rgba(214, 180, 108, 0.2);
  --color-border: #252a34;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --font-title: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, #20283a 0, transparent 55%),
    radial-gradient(circle at bottom right, #151b28 0, transparent 45%),
    var(--color-bg);
}

/* Utilidades */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 0.75rem 0;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Botones */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #f1d59a);
  color: #1a1305;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(214, 180, 108, 0.55);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: rgba(214, 180, 108, 0.08);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(8, 10, 16, 0.94), rgba(8, 10, 16, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

/* Navegación */

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

.main-nav ul a:hover {
  color: var(--color-text);
  background-color: rgba(214, 180, 108, 0.1);
}

/* Botón hamburguesa */

.nav-toggle {
  width: 42px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 20, 26, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero {
  padding-top: calc(6rem + var(--header-height));
  padding-bottom: 5.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0 0 0.9rem 0;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.hero-text {
  margin: 0 0 1.5rem 0;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 32rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-title);
  letter-spacing: 0.02em;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
}

.badge-highlight {
  background-color: var(--color-accent-soft);
  border-color: rgba(214, 180, 108, 0.65);
  color: var(--color-accent);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-profile {
  display: flex;
  justify-content: flex-end;
}

.profile-card {
  width: 100%;
  max-width: 360px;
  background: radial-gradient(circle at top, #232a3a, #151922);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.4rem 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-image-wrapper {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.profile-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 14, 0.7), transparent 55%);
  pointer-events: none;
}

.profile-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-info {
  margin-top: 1.1rem;
}

.profile-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin: 0 0 0.25rem 0;
}

.profile-role {
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.profile-text {
  margin: 0 0 0.9rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Cards genéricas */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.7rem;
}

.card {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card ul {
  margin: 1rem 0 0 0;
  padding-left: 1.1rem;
  list-style: none;
}

.service-card ul li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.9rem;
}

/* Por qué elegirme */

.section-why {
  background: radial-gradient(circle at center, rgba(214, 180, 108, 0.05), transparent 60%);
}

.cards-grid-why {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pill-card {
  border-radius: 20px;
}

/* Proceso (timeline) */

.section-process {
  position: relative;
}

.section-process::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.7rem;
  margin-top: 1.5rem;
}

.timeline-step {
  position: relative;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.7rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  border: 1px solid rgba(214, 180, 108, 0.5);
  margin-bottom: 0.7rem;
  background: rgba(214, 180, 108, 0.04);
}

/* Testimonios */

.section-testimonials {
  background: radial-gradient(circle at top, rgba(25, 32, 49, 0.9), rgba(13, 17, 26, 1));
}

.testimonial-card {
  position: relative;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-text::before {
  content: "“";
  font-size: 2.2rem;
  color: rgba(214, 180, 108, 0.5);
  position: absolute;
  top: 0.5rem;
  left: 1.1rem;
}

.testimonial-text {
  padding-top: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  margin: 0 0 0.2rem 0;
}

.testimonial-type {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Contacto */

.section-contact {
  background: linear-gradient(135deg, #121722, #171f2c);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.9rem;
  margin: 0 0 1rem 0;
}

.contact-info p {
  margin: 0 0 1.4rem 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Formulario */

.contact-form-wrapper {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.form-card {
  padding: 1.7rem 1.6rem 1.9rem 1.6rem;
}

.form-card h3 {
  margin-bottom: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 8, 14, 0.9);
  padding: 0.7rem 0.75rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(176, 180, 192, 0.75);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 180, 108, 0.85);
  box-shadow: 0 0 0 1px rgba(214, 180, 108, 0.4);
  background-color: #0d1119;
}

.privacy-note {
  margin: 0.6rem 0 0 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.4rem 0 1.6rem 0;
  background: rgba(7, 9, 14, 0.98);
}

.footer-inner {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-profile {
    justify-content: flex-start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  .hero {
    padding-top: calc(4.5rem + var(--header-height));
  }

  .hero-title {
    font-size: 2.05rem;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    background: rgba(8, 10, 16, 0.98);
    flex-direction: column;
    padding: 1.2rem 1.5rem 1.4rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
  }

  .main-nav .btn-small {
    align-self: stretch;
    justify-content: center;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .header-inner {
    gap: 0.8rem;
  }

  .logo img {
    height: 32px;
  }

  .profile-card {
    max-width: 100%;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }
}
.testimonials-more {
  margin-top: 2rem;
  text-align: center;
}

.testimonials-more p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.testimonials-more a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.testimonials-more a:hover {
  text-decoration: underline;
}
