/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tipografía y fondo general */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    padding: 30px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
    background-color: #ffffff;
    color: rgb(240, 247, 245);
    padding: 10px 0;
    width: 100%;


}
header {
    text-align: center;
    margin-bottom: 30px;
    background-color: #ffffff;
    color: rgb(240, 247, 245);
    padding: 10px 0;

}

header img {
    max-width: 100%;
    border-radius: 20px;
}

/* Títulos */
h1 {

    color: #1f3c88;
    margin-bottom: 30px;
}

h2 {
    color: #1f3c88;
    margin: 30px 0 15px;
}

/* Párrafos */
p {
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Resaltar texto importante */
span {
    font-weight: bold;
}

/* Línea divisoria */
hr {
    border: none;
    height: 2px;
    background-color: #d1d9e6;
    margin: 30px 0;
}

/* Lista de servicios */
ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

ol li {
    margin-bottom: 8px;
}

/* Enlaces */
a {
    display: inline-block;
    margin-bottom: 20px;
    color: #1f3c88;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Formularios */
form {
    margin-bottom: 15px;
}

/* Inputs */
input {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Botones */
button {
    background-color: #1f3c88;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background-color: #162d66;
}

/* Diseño responsive */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
    }
}

/* Logo */

.logo img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    flex-wrap: wrap;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
}

/* Sección Bienvenida */
.hero {
  background-color: #0a1f33;
  color: #e8eef3;
  padding: 6rem 4rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}


  .hero h1 {
    font-size: 3rem;
    max-width: 45%;
    text-align: left;
    margin: 0;
  }

  .hero-text {
    max-width: 50%;
    text-align: left;
  }


.hero .highlight {
  color: #4fc3f7;
  font-weight: 800;
}


@media (max-width: 768px){
    .hero{
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
    }
    .hero h1 {
        max-width: 100%;
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-text{
        max-width: 100%;
        text-align: center;
    }
}


/* Resto de la página queda blanca */
.services {
  padding: 2rem;
}



/* ===== Columnas de artículos ===== */
.features-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.features-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===== Tarjetas ===== */
.feature-card {
  border: 1px solid #e5e7eb;
  padding: 32px;
  border-radius: 12px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: #475569;
  font-size: 15px;
}

/* ===== Links ===== */
.feature-card a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
}

.feature-card a:hover {
  text-decoration: underline;
}

/* ===== Hover elegante ===== */
.feature-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr;
  }

  .features-columns {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 60px 16px;
  }
}

html {
    scroll-behavior: smooth;
}


/* Sección Planes */
.planes-section {
  background-color: #f4f7fa;
  padding: 5rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #0a1f33;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #555;
  font-size: 1rem;
}

/* Grid */
.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Tarjetas */
.plan-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.plan-card h3 {
  color: #0a1f33;
  margin-bottom: 0.8rem;
}

.plan-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.plan-card ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: #333;
}

/* Botón */
.btn-plan {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0a1f33;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: 0.3s;
}

.btn-plan:hover {
  background-color: #123b63;
}

/* Plan Premium destacado */
.premium {
  border: 2px solid #0a1f33;
  transform: scale(1.05);
}

.premium-btn {
  background-color: #caa14a;
  color: #0a1f33;
}

.premium-btn:hover {
  background-color: #b58e3f;
}

/* ===== ESTILO ESTRATÉGICO TIPO CONSULTORA ===== */

.strategic-services {
  padding: 120px 8%;
  background: #ffffff;
}

.services-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.services-header .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2563eb;
}

.services-header h2 {
  font-size: 36px;
  margin: 20px 0;
  color: #0a1f33;
  font-weight: 700;
}

.services-header p {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* Grid más limpio */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* Tarjeta minimalista */
.service-card {
  position: relative;
  padding: 40px;
  border-left: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #0a1f33;
}

.service-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

/* Línea superior tipo McKinsey */
.accent-line {
  width: 40px;
  height: 3px;
  background-color: #2563eb;
  margin-bottom: 20px;
  transition: width 0.4s ease;
}

/* Hover elegante */
.service-card:hover {
  transform: translateY(-6px);
}

.service-card:hover .accent-line {
  width: 80px;
}

/* Animación visible */
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CONTACTO ESTRATÉGICO ===== */

.strategic-contact {
  padding: 120px 8%;
  background-color: #0a1f33;
  color: #ffffff;
}

.strategic-contact .contact-info h2 {
  color: #ffffff;
}


.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Lado izquierdo */
.contact-info .eyebrow {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #4fc3f7;
}

.contact-info h2 {
  font-size: 34px;
  margin: 20px 0;
  line-height: 1.3;
}

.contact-info p {
  color: #d1d9e6;
  font-size: 15px;
  line-height: 1.7;
}

.contact-details {
  margin-top: 30px;
}

.contact-details p {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Formulario */
.contact-form-wrapper {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.contact-form-wrapper:hover {
  transform: translateY(-8px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background-color: #0a1f33;
  color: #ffffff;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #123b63;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}







/* ===== SECCIÓN WHY CONSULTORA ===== */

.strategic-why {
  padding: 140px 8%;
  background-color: #f8fafc;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-header {
  max-width: 850px;
  margin-bottom: 100px;
}

.why-header .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2563eb;
}

.why-header h2 {
  font-size: 40px;
  line-height: 1.25;
  margin-top: 20px;
  font-weight: 700;
  color: #0a1f33;
}

.highlight-line {
  display: block;
  position: relative;
}

.highlight-line::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #2563eb;
  display: block;
  margin-top: 16px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

/* Bloques */
.why-block {
  position: relative;
  padding-left: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.why-block h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0a1f33;
}

.why-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Línea lateral minimalista */
.why-block .line {
  position: absolute;
  left: 0;
  top: 5px;
  width: 3px;
  height: 40px;
  background-color: #2563eb;
  transition: height 0.4s ease;
}

.why-block:hover .line {
  height: 80px;
}

/* Animación visible */
.why-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== WHY HERO WHITE PREMIUM ===== */

.why-dark {
  background: #ffffff;
  padding: 160px 8%;
  color: #0a1f33;
}

.why-dark-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-dark-header {
  max-width: 900px;
  margin-bottom: 100px;
}

.why-dark-header .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2563eb;
}

.why-dark-header h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 25px 0;
  font-weight: 700;
  color: #0a1f33;
}

.accent-text {
  display: block;
  color: #2563eb;
}

.why-dark-header p {
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  max-width: 700px;
}

/* MÉTRICAS */

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin: 80px 0 120px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 60px 0;
}

.metric {
  text-align: center;
}

.metric h3 {
  font-size: 48px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.metric p {
  font-size: 13px;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Grid */

.why-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}



.why-dark-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.why-dark-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}


/* Responsive */

@media (max-width: 900px) {
  .why-dark-grid {
    grid-template-columns: 1fr;
  }

  .metrics-row {
    grid-template-columns: 1fr 1fr;
  }

  .why-dark-header h2 {
    font-size: 34px;
  }
}




/* ===== WHY CARDS – MAKYZEN STYLE ===== */

.why-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
}

.why-dark-card {
  padding: 0 0 30px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.4s ease;
}

.why-dark-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #0a1f33;
}

.why-dark-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  max-width: 500px;
}

/* Hover elegante minimal */

.why-dark-card:hover {
  border-bottom: 1px solid #2563eb;
  transform: translateX(8px);
}


@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items:center;
    gap: 15px;
  }

  .nav-links li {
    margin: 10px 0;
  }
  .logo-img{
      max-width: 150px;
  }
}

