/* =========================================================
   VARIABLES GLOBALES (Vector Style)
   /static/css/index.css
========================================================= */
:root {
  --primary: #D3A129;
  /* Gold */
  --accent: #2F4858;
  /* Navy */
  --bg: #ffffff;
  --bg-soft: #F9F9F9;
  --text: #333333;
  --muted: #888888;
  --border-radius: 50px;
  /* Pill shapes */
}

/* =========================================================
   RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

/* =========================================================
   BOTONES GENERALES
========================================================= */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background: #1a2b36;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(47, 72, 88, 0.2);
}

/* =========================================================
   HERO (Minimal Vector Layout)
   Left: Text | Right: Illustration style
========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 40px 0 100px;
  min-height: 85vh;
}

.hero-text {
  text-align: left;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  /* Gold header */
  font-size: 5rem;
  /* Más grande y potente */
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  /* Un poco más grande */
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 700;
  opacity: 0.9;
}

.hero p {
  font-size: 1.2rem;
  /* Más legible */
  color: #555;
  margin-bottom: 50px;
  max-width: 550px;
  line-height: 1.8;
}

.hero-image {
  position: relative;
  height: 550px;
  /* Más alto */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 110%;
  /* Sobresale un poco para llenar el espacio */
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
  /* Sombra para dar profundidad */
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: translateY(-10px) scale(1.02);
}

/* =========================================================
   CARDS / FEATURES
========================================================= */
.cards-section {
  padding: 100px 0;
  background: #fff;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 60px;
  color: #888;
  font-size: 1.1rem;
  text-align: center;
}

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

.card {
  text-align: left;
  background: #fff;
  border: none;
  padding: 0;
}

.card-img-placeholder {
  width: 100%;
  height: 260px;
  background: #f0f0f0;
  margin-bottom: 24px;
  border-radius: 16px;
}

.card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.features {
  list-style: none;
  border-top: 2px solid #f0f0f0;
  padding-top: 16px;
}

.features li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: var(--bg);
  /* or var(--bg-soft) */
  border: none;
  padding: 80px 20px;
  text-align: center;
  margin-top: 80px;
  border-top: 1px solid #f0f0f0;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social a {
  width: 50px;
  height: 50px;
  border: none;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: .2s;
}

.social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-info {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform .2s;
  z-index: 100;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 30px 5%;
  }

  .hero-text {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 0 40px;
  }

  .hero-image {
    order: 1;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .hero h2 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-image {
    height: 220px;
  }

  .container {
    padding: 20px 5%;
    /* Agregado 5% lateral para que no toque los bordes */
  }

  .section-title {
    font-size: 1.8rem;
  }
}