@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --burdeos: #6B1A2A;
  --dorado: #C9A84C;
  --crema: #F7F2E8;
  --azul: #1B4F72;
  --marron: #8B5E3C;
  --arena: #D4B896;
  --blanco: #FDFCFA;
  --texto: #2A2220;
  --texto-suave: #6B5E58;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--crema);
  color: var(--texto);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--texto-suave);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 26, 42, 0.08);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burdeos) !important;
}

.logo-nav {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dorado);
}

.nav-link-custom {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--texto);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.nav-link-custom:hover {
  background-color: var(--burdeos);
  color: var(--blanco);
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-social a:not(.cta-header) {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burdeos);
  color: var(--blanco);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-social a:not(.cta-header):hover {
  background: var(--dorado);
  transform: translateY(-2px);
}

.nav-social a.email-link {
  background: var(--azul);
}

.nav-social a.email-link:hover {
  background: var(--dorado);
}

.nav-social .cta-header {
  background: var(--burdeos);
  color: var(--blanco);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.nav-social .cta-header:hover {
  background: var(--dorado);
  color: var(--texto);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: var(--crema);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 79, 114, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--dorado);
  box-shadow: 0 20px 60px rgba(107, 26, 42, 0.15);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--burdeos);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--texto-suave);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.btn-primary-custom {
  background: var(--burdeos);
  color: var(--blanco);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--dorado);
  color: var(--texto);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline-custom {
  background: transparent;
  color: var(--burdeos);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 500;
  border: 2px solid var(--burdeos);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--burdeos);
  color: var(--blanco);
  transform: translateY(-3px);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  background: var(--blanco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(107, 26, 42, 0.06);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.bento-card-lg {
  grid-column: span 8;
}

.bento-card-md {
  grid-column: span 4;
}

.bento-card-full {
  grid-column: span 12;
}

.bento-card-half {
  grid-column: span 6;
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .card-image img {
  transform: scale(1.05);
}

.card-image-tall {
  aspect-ratio: 3/4;
}

.card-image-wide {
  aspect-ratio: 16/9;
}

.card-image-square {
  aspect-ratio: 1/1;
}

.card-image-landscape {
  aspect-ratio: 4/3;
}

.bento-card .row.align-items-stretch {
  min-height: 100%;
}

.bento-card .row .card-image {
  border-radius: 0;
}

.bento-card .row .card-image.h-100 img {
  height: 100%;
  min-height: 320px;
}

.bento-card .row .col-lg-5:first-child .card-image,
.bento-card .row .col-lg-7:first-child .card-image {
  border-radius: 20px 0 0 20px;
}

.bento-card .row .col-lg-5:last-child .card-image,
.bento-card .row .col-lg-7:last-child .card-image {
  border-radius: 0 20px 20px 0;
}

@media (max-width: 991px) {
  .bento-card .row .col-lg-5:first-child .card-image,
  .bento-card .row .col-lg-7:first-child .card-image,
  .bento-card .row .col-lg-5:last-child .card-image,
  .bento-card .row .col-lg-7:last-child .card-image {
    border-radius: 20px 20px 0 0;
  }
}

.card-body-custom {
  padding: 1.75rem 2rem;
}

.card-tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tag-burdeos {
  background: rgba(107, 26, 42, 0.1);
  color: var(--burdeos);
}

.tag-dorado {
  background: rgba(201, 168, 76, 0.15);
  color: #8B7340;
}

.tag-azul {
  background: rgba(27, 79, 114, 0.1);
  color: var(--azul);
}

.tag-marron {
  background: rgba(139, 94, 60, 0.1);
  color: var(--marron);
}

.card-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--texto);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texto-suave);
  margin-bottom: 1.25rem;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--texto-suave);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.card-list li i {
  color: var(--dorado);
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.section-header {
  text-align: center;
  padding: 5rem 2rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.section-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.icon-burdeos {
  background: rgba(107, 26, 42, 0.1);
  color: var(--burdeos);
}

.icon-azul {
  background: rgba(27, 79, 114, 0.1);
  color: var(--azul);
}

.icon-marron {
  background: rgba(139, 94, 60, 0.1);
  color: var(--marron);
}

.icon-dorado {
  background: rgba(201, 168, 76, 0.15);
  color: #8B7340;
}

.section-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 0.75rem;
}

.quote-block {
  background: var(--burdeos);
  color: var(--blanco);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  position: absolute;
  top: -2rem;
  left: 1rem;
  opacity: 0.1;
  line-height: 1;
}

.quote-block h3 {
  color: var(--blanco);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.quote-block p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-card img {
  transition: transform 0.6s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.image-overlay h4 {
  color: var(--blanco);
  font-size: 1.4rem;
  margin: 0;
}

.image-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
}

.row-layout {
  display: flex;
  gap: 1.25rem;
}

.row-layout .bento-card {
  flex: 1;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--dorado);
  border-radius: 2px;
  margin: 1.5rem auto;
}

footer {
  background: var(--burdeos);
  color: var(--blanco);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--dorado);
}

.footer-brand h3 {
  color: var(--blanco);
  font-size: 1.8rem;
  margin: 0;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--dorado);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dorado);
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--blanco);
  margin-right: 0.75rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--dorado);
  color: var(--texto);
  transform: translateY(-3px);
}

.footer-cta {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.footer-cta h4 {
  color: var(--blanco);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dorado);
  color: var(--texto);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  margin: 0.25rem;
  transition: all 0.3s ease;
}

.footer-cta a:hover {
  background: var(--blanco);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.motto {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--dorado);
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .bento-card-lg,
  .bento-card-md {
    grid-column: span 6;
  }
  .bento-card-full {
    grid-column: span 12;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    justify-content: center;
  }
  .row-layout {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .bento-card-lg,
  .bento-card-md,
  .bento-card-half {
    grid-column: span 12;
  }
  .hero-section {
    padding: 7rem 1.5rem 3rem;
  }
  .bento-grid {
    padding: 0 1rem;
    gap: 1rem;
  }
  .nav-link-custom {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  .navbar-brand span {
    display: none;
  }
  .card-body-custom {
    padding: 1.25rem 1.5rem;
  }
  .quote-block {
    padding: 2rem 1.5rem;
  }
}
