:root {
  --primary-dark: #153A5B;
  --primary-accent: #69C2C0;
  --white: #FFFFFF;
  --light-bg: #F7FAFC;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--primary-dark);
  background-color: var(--white);
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/* .header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
} */

/* =========================
   NAVBAR LOGO FIX
========================= */

.nav-logo img {
  max-height: 48px;   /* Desktop */
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .nav-logo img {
    max-height: 40px; /* Mobile */
  }
}

/* .logo img {
  height: 70px;
} */

/* .main-nav {
  display: flex;
  gap: 24px;
} */

/* .main-nav a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary-accent);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
} */


.main-nav a:hover {
  color: var(--primary-accent);
}

.hero {
  min-height: 90vh;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: #f9fbfc;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 35px; /* espacio claro antes del botón */
  font-size: 1.1rem;
  color: #555;
}

.hero-content .btn-primary {
  display: inline-block;
}



.language-switch a {
  text-decoration: none;
  color: var(--primary-accent);
  font-weight: 600;
  opacity: 0.9;
}

.language-switch a:hover {
  opacity: 1;
}


/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 30px 0;
  margin-top: 80px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links img {
  width: 20px;
  height: 20px;
}

.social-links a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* Fix TikTok icon size */
.social-links img.icon-tiktok {
  width: 24px;   /* más grande que los demás */
  height: 24px;
}


/* Services Section */
.services {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
}

/* Services rows */
.services-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.services-row-3 {
  justify-content: space-between;
}

.services-row-2 {
  justify-content: center;
}

.services-row-2 .service-card {
  max-width: 360px;
  width: 100%;
}



.service-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.service-card ul {
  margin-top: 15px;
  padding-left: 18px;
  text-align: left;
}

.service-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 900px) {
  .services-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .services-row {
    flex-direction: column;
    align-items: center;
  }
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7fafc 100%
  );
  text-align: center;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #ffffff;
  border-radius: 16px;
  padding: 45px 35px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}


.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 20px 0;
  color: var(--primary-dark);
}


.pricing-card ul {
  text-align: left;
  margin: 20px 0;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
}


.pricing-card.featured {
  border: 2px solid var(--primary-accent);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 20px;
  background: radial-gradient(
    circle,
    rgba(105, 194, 192, 0.15),
    rgba(105, 194, 192, 0)
  );
  z-index: -1;
}

.pricing-card-cta .btn-primary {
  width: 100%;
  padding: 16px 32px;
  font-size: 1rem;
}


@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing Cards – Premium Style */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--primary-accent);
  opacity: 0.15;
}

.pricing-card.featured::before {
  opacity: 1;
}

.pricing-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.plan-desc {
  color: #555;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;       /* ← elimina el punto */
  padding-left: 0;        /* ← limpia indentación */
  flex-grow: 1;
  margin-bottom: 25px;
}


.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-weight: bold;
}

/* CTA aligned */
.pricing-card-cta {
  margin-top: auto;
}

.pricing-card-cta .btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px 42px;   /* ↑ más aire horizontal */
  font-size: 1rem;
}


/* Highlight middle plan */
.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-accent);
}

button {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



/* Contact / CTA */
.contact {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--light-bg) 0%,
    #ffffff 100%
  );
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-text p {
  color: #555;
  font-size: 1.05rem;
}

.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}


.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  width: 100%;
}

.contact-form .btn-primary {
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
}


@media (max-width: 800px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact {
    padding: 70px 0;
  }
}

/* FAQ */
.faq {
  padding: 80px 0;
  background: var(--light-bg);
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.faq-item p {
  color: #555;
}

/* About Us */
.about {
  padding: 90px 0;
  background: #ffffff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05rem;
}

.about-values {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
}

.about-values h3 {
  margin-bottom: 15px;
}

.about-values ul {
  list-style: none;
  padding-left: 0;
}

.about-values ul li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  color: #555;
}

.about-values ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-weight: bold;
}

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Thank You Page */
.thank-you {
  padding: 120px 0;
  background: linear-gradient(
    180deg,
    var(--light-bg) 0%,
    #ffffff 100%
  );
}

.thank-you-card {
  max-width: 650px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  text-align: center;
}

.thank-you-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: #ffffff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.thank-you-card p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 2px rgba(105, 194, 192, 0.2);
}

/* =========================
   HERO PREMIUM
========================= */

.hero-premium {
  position: relative;
  min-height: 90vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;

  background: linear-gradient(
  180deg,
  #ffffff 0%,
  #eef5f8 50%,
  #e6f0f4 100%
);

}

/* Hero content */
.hero-premium .hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.hero-premium h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.hero-premium p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
}

/* Background shapes */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(40px);
}

/* Shape 1 */
.hero-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-accent);
  top: -200px;
  left: -200px;
  opacity: 0.35;
}


/* Shape 2 */
.hero-shape.shape-2 {
  width: 700px;
  height: 700px;
  background: #153A5B;
  bottom: -300px;
  right: -300px;
  opacity: 0.22;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0) 70%
  );
  z-index: 1;
}



@media (max-width: 900px) {
  .hero-premium h1 {
    font-size: 2.3rem;
  }

  .hero-premium p {
    font-size: 1.05rem;
  }
}

/* =========================
   SERVICES PREMIUM
========================= */

.services {
  background: linear-gradient(
    180deg,
    #f7fafc 0%,
    #ffffff 100%
  );
}

/* Service card */
.service-card {
  position: relative;
  padding: 45px 30px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Accent line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-accent),
    #9adad7
  );
  opacity: 0.9;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

/* Icon */
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(105, 194, 192, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon inner shape */
.service-icon span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--primary-accent);
}

/* Text refinements */
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 18px;
  color: #555;
}

/* List */
.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #555;
}

.service-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-weight: bold;
}

.services-row {
  margin-bottom: 40px;
}

/* =========================
   ABOUT US – PARALLEL BLOCKS
========================= */

.about-premium {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7fafc 100%
  );
}

.about-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch; /* CLAVE: misma altura */
}

/* Base box */
.about-box {
  padding: 45px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* alinea contenido verticalmente */
}

/* Left box */
.about-box-primary {
  background: linear-gradient(
    135deg,
    rgba(105, 194, 192, 0.3),
    rgba(21, 58, 91, 0.25)
  );
  color: var(--primary-dark);
}

.about-box-primary p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* Right box */
.about-box-secondary {
  background: linear-gradient(
    135deg,
    #ffffff,
    #f3f7fa
  );
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.about-box-secondary h3 {
  margin-bottom: 18px;
}

/* Values list */
.about-box-secondary ul {
  list-style: none;
  padding-left: 0;
}

.about-box-secondary ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #555;
}

.about-box-secondary ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-weight: bold;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FAQ PREMIUM
========================= */

.faq-premium {
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7fafc 100%
  );
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}

/* FAQ container */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

/* FAQ item */
.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

/* Icon */
.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-accent);
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 30px 25px;
  color: #555;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   NAVBAR RESPONSIVE FIX
========================= */

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop */
.nav-menu {
  display: flex;
  gap: 30px;
}

/* Burger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  margin: 5px 0;
}

/* Mobile */
@media (max-width: 900px) {

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    gap: 24px;

    padding: 30px 0;
    display: none; /* 🔴 CLAVE */
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .nav-menu.active {
    display: flex; /* 🔴 CLAVE */
  }

  .nav-toggle {
    display: block;
  }
}


.pricing-card .btn-primary {
  white-space: normal;
  text-align: center;
}
@media (max-width: 600px) {
  .pricing-card .btn-primary {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* =========================
   NAVBAR LINKS – FIX STYLES
========================= */

.nav-menu a {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

/* Hover underline effect */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary-accent);
  transition: width 0.25s ease;
}

.nav-menu a:hover {
  color: var(--primary-accent);
}

.nav-menu a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .nav-menu a::after {
    bottom: -4px;
  }
}

/* =========================
   NAVBAR ACTIONS
========================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switch a {
  font-weight: 600;
  color: var(--primary-accent);
  text-decoration: none;
}

.language-switch a:hover {
  opacity: 0.8;
}
