/* ================= VARIABLES ================= */
:root {
  --bg-main: #f7eded;
  --bg-card: #ffffff;
  --pink-soft: #f3dede;
  --pink-main: #cf6a7a;
  --pink-dark: #b85060;
  --text-main: #111;
  --shadow: 0 8px 20px rgba(0,0,0,0.06);
  --radius: 16px;
}

/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
}

body {
  background: linear-gradient(#f6eaea, #f9f1f1);
  color: var(--text-main);
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(#f5e3e3, #f9f1f1);
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
}

/* ================= BOTONES HERO ================= */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Botón llamar */
.btn-primary {
  background: #ffffff;
  color: #111;
  border: 1px solid #e0e0e0;
}


/* Icono teléfono (ARREGLADO) */
.icon-phone {
  color: #fff;
  font-size: 18px;
}

/* Botón cómo llegar */
.btn-secondary {
  background: #e6e6e6;
  color: #111;
}

/* ================= SECCIONES ================= */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

/* ================= GRID ================= */
.grid {
  display: grid;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ================= TARJETAS ================= */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 30px 20px;
  box-shadow: var(--shadow);
}

.card p {
  font-size: 16px;
  font-weight: 500;
}

/* ================= ICONOS ================= */
.icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* ================= INFO ================= */
.info-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.phone {
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
}

/* ================= MAPA ================= */
.map-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: 0;
}
