.team-phone { margin: 8px 0 0; }
.team-phone a { color: var(--earth-800); text-decoration: none; font-weight: 600; }
.team-phone a:hover { color: var(--primary); }
/* Paleta tierra y tipografías */
:root {
  --earth-50: #f7f2ef;
  --earth-100: #efe6e0;
  --earth-200: #e3d3c6;
  --earth-300: #d6bca8;
  --earth-400: #c9a68c;
  --earth-500: #b88c73;  /* marrón principal */
  --earth-600: #a87c64;  /* marrón acento */
  --earth-700: #805b49;  /* texto oscuro */
  --earth-800: #664b3e;  /* bordes */
  --earth-900: #3a2a23;  /* fondo oscuro */

  /* Rosa maquillaje (suave, elegante) */
  --rose-50: #fff7f8;
  --rose-100: #fdecef;
  --rose-200: #f9d7de;
  --rose-300: #f3bcc8;
  --rose-400: #eda3b1;
  --rose-500: #e6879d;

  --primary: var(--earth-600);
  --primary-dark: var(--earth-700);
  --accent: var(--rose-400);
  --bg: var(--earth-50);
  --surface: #ffffff;
  --text: #2b2b2b;
  --text-muted: #6b645f;
  --border: #e8e1da;
  --radius: 12px;
  --shadow: 0 10px 24px rgba(58, 42, 35, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar { padding: 14px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 32px; }

.nav-logo { display: flex; align-items: center; gap: 10px; min-width: 240px; }
.logo-img { height: 44px; width: 44px; object-fit: cover; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,.12); }
.brand { display: flex; flex-direction: row; align-items: baseline; gap: 0; line-height: 1; white-space: nowrap; }
.brand-signature { font-family: 'Playfair Display', serif; color: var(--earth-800); font-size: 24px; font-weight: 700; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--earth-800); letter-spacing: 0; font-size: 24px; text-transform: none; }

.nav-menu { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.nav-link { color: var(--earth-800); text-decoration: none; font-weight: 500; position: relative; font-size: 16px; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--primary); transition: width .25s ease; }
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 120%; left: 0; background: white; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow); padding: 8px 0; min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; color: var(--earth-800); text-decoration: none; }
.dropdown-menu a:hover { background: var(--earth-100); color: var(--primary); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle .bar { width: 24px; height: 2px; background: var(--earth-800); }

/* Hero */
.hero {
  /* degradado combinando marrón y rosa maquillaje */
  background: linear-gradient(180deg, #ffffff 0%, var(--rose-100) 38%, #ede3da 70%, #d6c3b4 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-container { max-width: 1180px; margin: 0 auto; padding: 0 40px; display: block; text-align: center; }
.display {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: .6px;
  font-size: clamp(42px, 6.2vw, 84px);
  color: var(--earth-900);
  line-height: 1.08;
  margin: 0 0 8px;
}
.subtitle { color: var(--primary-dark); letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700; margin: 0 0 18px; font-size: clamp(14px, 1.6vw, 20px); }
.hero p { color: var(--earth-800); font-size: 18px; margin: 0 0 24px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { appearance: none; border: 0; cursor: pointer; padding: 12px 22px; border-radius: 999px; font-weight: 600; letter-spacing: .3px; box-shadow: var(--shadow); transition: transform .15s ease, box-shadow .15s ease; text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 26px rgba(168,124,100,.22); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--accent); box-shadow: none; }
.btn-secondary:hover { background: var(--accent); color: #fff; }

/* Enlarged CTA */
.btn-cta { padding: 14px 26px; font-size: 18px; }

/* Header CTA */
.nav-cta { display: inline-block; margin-left: 12px; background: var(--accent); color: #fff; border-radius: 999px; padding: 10px 16px; font-weight: 700; text-decoration: none; box-shadow: var(--shadow); }
.nav-cta:hover { background: var(--primary); color: #fff; }
@media (max-width: 940px) { .nav-cta { display: none; } }

.hero-content { background: transparent; border: 0; padding: 26px 28px; }
.hero-logo { width: min(360px, 95%); border-radius: 16px; box-shadow: var(--shadow); background: #fff; padding: 18px; }

/* Hero decorative shapes */
.hero-decor { position: absolute; width: 520px; height: 520px; opacity: 0.25; pointer-events: none; }
.hero-decor path { fill: var(--accent); stroke: rgba(255,255,255,0.65); stroke-width: 2; }
.hero-decor-left { left: -140px; top: -40px; }
.hero-decor-right { right: -140px; bottom: -40px; transform: scaleX(-1); }

/* Hero bullets */
.hero-bullets { display: grid; grid-template-columns: repeat(3, minmax(220px,1fr)); gap: 18px; margin-top: 22px; justify-items: center; }
.bullet { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px; background: transparent; border: 0; border-radius: 12px; padding: 6px 8px; }
.bullet i { color: #fff; font-size: 18px; display: inline-grid; place-items: center; width: 44px; height: 44px; background: linear-gradient(135deg, var(--accent), var(--primary)); border-radius: 50%; box-shadow: var(--shadow); }
.bullet span { color: var(--earth-900); font-weight: 600; line-height: 1.25; }

/* Services */
.services { padding: 72px 0; background: #fff; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; color: var(--earth-900); font-size: clamp(26px,3.2vw,36px); margin: 0 0 28px; }
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: start; justify-items: center; }
.feature { text-align: center; }
.feature .feature-icon { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--primary)); color: #fff; font-size: 26px; margin: 0 auto 10px; box-shadow: var(--shadow); }
.feature h3 { margin: 10px 0 6px; color: var(--earth-900); }
.feature p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }

/* Grid cards (used in Equipo – mantiene el estilo anterior) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; text-align: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 28px rgba(58,42,35,.12); }
/* Team extras */
.team-card { text-align: center; }
.team-email { margin: 10px 0 0; font-weight: 600; }
.team-email a { color: var(--earth-800); text-decoration: none; }
.team-email a:hover { color: var(--primary); }
.team-socials { display: flex; justify-content: center; gap: 14px; margin-top: 10px; }
.team-socials a { color: var(--earth-700); font-size: 18px; text-decoration: none; }
.team-socials a:hover { color: var(--primary); }

/* About */
.about { padding: 72px 0; background: var(--earth-50); }
.about-content { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.about-text h2 { font-family: 'Playfair Display', serif; color: var(--earth-900); font-size: clamp(26px,3.2vw,36px); margin: 0 0 14px; }
.about-text p { color: var(--text-muted); margin: 0 0 14px; }
.credentials { display: grid; gap: 10px; margin-top: 16px; }
.credential { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #fff; border: 1px solid var(--border); border-radius: 10px; }
.credential i { color: var(--primary); }
.profile-photo { width: min(360px, 100%); aspect-ratio: 1/1; object-fit: cover; border-radius: 18px; border: 6px solid #fff; box-shadow: 0 18px 36px rgba(58,42,35,.15); }

/* Online consultation */
.online-consultation { padding: 72px 0; background: #fff; }
.online-content { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: center; }
.online-text h2 { font-family: 'Playfair Display', serif; color: var(--earth-900); margin: 0 0 10px; }
.online-text h3 { color: var(--earth-800); margin: 18px 0 10px; }
.online-text p, .online-benefits li { color: var(--text-muted); }
.online-benefits { padding-left: 18px; }

/* Stats */
.stats { background: var(--earth-600); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; text-align: center; }
.stat-item h3 { margin: 0; font-size: clamp(28px,4vw,42px); }
.stat-item p { margin: 6px 0 0; opacity: .9; }

/* Testimonials */
.testimonials { padding: 72px 0; background: var(--rose-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.testimonial-content p { color: var(--text-muted); font-style: italic; }

/* FAQ */
.faq { padding: 72px 0; background: #fff; }
.faq-container { max-width: 880px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; }
.faq-question { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { margin: 0; color: var(--earth-900); font-size: 18px; }
.faq-answer { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 18px 16px; max-height: 220px; }

/* Contact */
.contact { padding: 72px 0; background: var(--earth-50); }
.contact-content { display: block; }
/* Añade más aire al borde derecho solo en la sección de contacto */
.contact .container { padding-right: 48px; }
.contact-info h2 { font-family: 'Playfair Display', serif; color: var(--earth-900); margin: 0 0 10px; }
.contact-info p { color: var(--text-muted); }
.contact-details { margin: 14px 0 16px; }
.contact-item h4 { margin: 0 0 2px; }
.contact-item p { margin: 0; }
.contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  column-gap: 12px;
  margin-bottom: 12px;
}
.contact-item i {
  color: var(--primary);
  margin-top: 2px;
  font-size: 18px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pricing { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #fff; border: 2px solid var(--earth-600); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.pricing-table thead { background: var(--earth-600); color: #fff; }
.pricing-table th { padding: 16px 14px; text-align: left; font-weight: 700; font-size: 14px; border-right: 1px solid rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.5px; }
.pricing-table th:last-child { border-right: none; }
.pricing-table td { padding: 16px 14px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); color: var(--text-muted); font-size: 14px; line-height: 1.6; vertical-align: top; }
.pricing-table td:last-child { border-right: none; }
.pricing-table tbody tr { border-bottom: 1px solid var(--border); }
.pricing-table tbody tr:hover { background: var(--earth-50); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table .service-name { font-weight: 600; color: var(--earth-900); }
.pricing-table .price-cell { font-weight: 700; color: var(--primary); font-size: 15px; }
@media (max-width: 940px) {
  .pricing-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table thead { display: none; }
  .pricing-table tbody { display: block; }
  .pricing-table tr { display: block; margin-bottom: 16px; border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
  .pricing-table td { display: block; padding: 8px 0; border-bottom: 1px solid var(--border); }
  .pricing-table td:before { content: attr(data-label) ": "; font-weight: 600; color: var(--earth-900); }
  .pricing-table td:last-child { border-bottom: none; }
}

.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--earth-900); }
.form-group input, .form-group textarea { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border); outline: none; font-size: 16px; background: #fff; color: var(--earth-900); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(168,124,100,.15); }
.checkbox-group {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}
.checkbox-group input[type="checkbox"] { margin-top: 4px; }
.checkbox-group label { display: inline; margin: 0; line-height: 1.4; }
.hidden { display: none; }

/* Footer */
.footer { background: linear-gradient(180deg, #111 0%, #0e0c0b 100%); color: #ddd; padding: 38px 0 18px; position: relative; }
.footer::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--accent), transparent 40%, var(--primary) 70%, transparent); opacity: .6; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.footer a { color: #c9a68c; text-decoration: none; }
.footer-bottom { border-top: 1px solid #222; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 16px; padding-top: 12px; }
.footer-section ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-logo { width: 54px; height: 54px; border-radius: 12px; box-shadow: 0 6px 16px rgba(0,0,0,.35); background:#fff; padding: 6px; }

/* Legal pages */
.legal-hero { background: linear-gradient(180deg, #ffffff 0%, #ede3da 100%); padding: 56px 0 24px; border-bottom: 1px solid var(--border); }
.legal-main { max-width: 960px; margin: 24px auto 60px; padding: 0 20px; }
.legal-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 18px; }
.legal-card h2 { margin-top: 0; color: var(--earth-900); }
.legal-card p, .legal-card li { color: var(--text-muted); }

/* Utilities */
.section-title + p.section-lead { text-align: center; color: var(--text-muted); margin-top: -14px; margin-bottom: 26px; }

/* Responsive */
@media (max-width: 940px) {
  .hero-container, .about-content, .online-content, .contact-content { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; inset: 64px 0 auto 0; background: #fff; border-bottom: 1px solid var(--border); padding: 18px; display: none; flex-direction: column; gap: 12px; }
  .nav-menu.active { display: flex; }
  .hero { padding-top: 64px; }
  .brand-name { font-size: 14px; }
  .brand-signature { font-size: 30px; }
  .contact .container { padding-right: 20px; }
}
