/* ====== GLOBAL ====== */
body {
  margin: 0;
  font-family: 'Lucida Sans Unicode', sans-serif;
  background: #fafafa;
}

.section {
  
  padding: 60px 40px;
}

.title {
  text-align: center;
  font-size: 42px;
}

.subtitle {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.bg-light {
  background: #fdfdfd;
}

.bg-pink {
  background: #ffe9ed;
}

.bg-lightpink {
  background: #fff7fa;
}

.btn {
  background: #ff3b55;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

/* ====== HEADER ====== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* ====== HERO ====== */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 40px;
  background: url("hero.jpg");
  background-color: #FBE9F0;
  background-size: cover;
  background-position: center;
  color: #111;
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  text-align: center;


}

.hero h1 { 
  font-size: 60px; 
  max-width: 700px; 
} 

.hero p {
  font-size: 1.8rem;
  font-weight: 500; 
}
/* ====== GRID & CARDS ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  border-radius: 12px;
}

.link-agendar {
  float: right;
  color: #ff3b55;
}

/* ====== FLEX SECTIONS ====== */
.flex-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.info-box {
  flex: 1;
  background: #ff3b55;
  color: white;
  padding: 30px;
  border-radius: 20px;
}

.form-box {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.flex-row {
  display: flex;
  gap: 15px;
}

/* ====== FORMS ====== */
form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 20px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  min-height: 80px;
}

/* ====== FOOTER ====== */
footer {
  text-align: center;
  padding: 30px;
  background: #222;
  color: white;
  margin-top: 40px;
}


form button {
  background: #ff3b55;
  color: white;
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  opacity: 0.9;
}

/* ====== NUEVO FOOTER ====== */
.footer {
  background: #000;
  color: white;
  padding: 60px 40px; /* ← Barra más grande */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-left h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-link:hover {
  opacity: 0.7;
}

.icon {
  width: 28px;
  height: 28px;
}

.footer-right {
  text-align: right;
}

.direccion {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
}
