/* style.css */

:root {
  --gold: #b69026;
  --dark: #0f263c;
  --text: #222222;
  --light-text: #5d5d5d;
  --bg: #f8f7f4;
  --border: #e6e1d8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* HEADER */

.header {
  background: white;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo img {
  width: 170px;
  display: block;
}

.menu {
  display: flex;
  gap: 36px;
}

.menu a {
  position: relative;
  padding-bottom: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--dark);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.btn-whatsapp i {
  font-size: 18px;
}

/* HERO */

.hero {
  padding: 0;
  background: white;
}

.hero .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: stretch;
}

.hero-content {
  padding: 80px 6vw 80px 8vw;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--dark);
  margin-bottom: 28px;
}

.hero-content p {
  font-size: 20px;
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-list {
  list-style: none;
  margin-bottom: 40px;
}

.hero-list li {
  margin-bottom: 14px;
  color: var(--light-text);
  font-size: 17px;
}

.hero-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  margin-right: 10px;
}

.hero-image img {
  border-radius: 0;
  min-height: 620px;
  height: 100%;
  object-fit: cover;
}

/* BOTONES */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1b8f3b;
  color: white;
  padding: 18px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}

.btn-primary i {
  font-size: 18px;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-block;
  margin-top: 20px;
  background: var(--dark);
  color: white;
  padding: 18px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

/* TITLES */

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2,
.cta h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--dark);
}

.section-title h2::after,
.cta h2::after {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* AREAS */

.areas {
  padding: 100px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.area-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
}

.area-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: rgba(182, 144, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.area-icon i {
  font-size: 30px;
  color: var(--gold);
}

.area-card h3 {
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.area-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.area-card li {
  margin-bottom: 12px;
  color: var(--light-text);
  font-size: 14px;
}

.area-card li::before {
  content: "•";
  color: var(--gold);
  margin-right: 8px;
}

.area-card a {
  margin-top: auto;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px;
  text-align: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

/* PROCESS */

.process {
  padding: 100px 0;
  background: white;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}

.process-item {
  position: relative;
  text-align: center;
}

.process-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: -28px;
  color: var(--gold);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.process-item span {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.process-item span i {
  font-size: 28px;
}

.process-item:nth-child(odd) span {
  background: var(--gold);
}

.process-item:nth-child(even) span {
  background: var(--dark);
}

.process-item h4 {
  margin-bottom: 12px;
  color: var(--dark);
}

.process-item p {
  color: var(--light-text);
  font-size: 14px;
}

/* TRUST */

.trust {
  background: var(--dark);
  color: white;
  padding: 50px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.trust-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.trust-icon i {
  font-size: 28px;
}

.trust-item h4 {
  margin-bottom: 6px;
}

.trust-item p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

/* ABOUT */

.about {
  padding: 0;
  background: white;
}

.about .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: stretch;
}

.about-content {
  padding: 80px 6vw 80px 8vw;
}

.about-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
  margin-bottom: 30px;
  color: var(--dark);
}

.about-content p {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 17px;
}

.about-image img {
  border-radius: 0;
  min-height: 430px;
  height: 100%;
  object-fit: cover;
}

/* CTA */

.cta {
  padding: 100px 0;
  text-align: center;
  background: white;
}

.cta h2 {
  font-size: clamp(40px, 5vw, 70px);
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 30px;
  color: var(--light-text);
  font-size: 20px;
}

/* CONTACT */

.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-item {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 30px;
  background: white;
}

.whatsapp-icon {
  color: #1b8f3b;
  border: 2px solid #1b8f3b;
}

.instagram-icon {
  color: #d94c8a;
  border: 2px solid #d94c8a;
}

.email-icon {
  color: var(--gold);
  border: 2px solid var(--gold);
}

.contact-item h4 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-item p,
.contact-item small {
  color: var(--light-text);
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: white;
  padding: 50px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-socials i {
  font-size: 18px;
}

.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 82px;
  }

  .logo img {
    width: 140px;
  }

  .menu {
    display: none;
  }

  .hero .container,
  .about .container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .about-content {
    padding: 50px 0;
  }

  .hero-image img,
  .about-image img {
    border-radius: 8px;
    min-height: auto;
    height: auto;
  }

  .cards-grid,
  .process-grid,
  .contact-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0;
  }

  .areas,
  .process,
  .about,
  .contact,
  .cta {
    padding: 70px 0;
  }

  .trust-item {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .btn-whatsapp {
    padding: 12px 18px;
    font-size: 13px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .section-title {
    margin-bottom: 42px;
  }

  .area-card,
  .contact-item {
    padding: 28px 22px;
  }
}

@media (max-width: 900px) {
  .area-card {
    text-align: center;
    align-items: center;
  }

  .area-card ul {
    text-align: left;
  }

  .area-icon {
    margin-left: auto;
    margin-right: auto;
  }
}