/* Home Page Specific Styles (Luxury Warm-Light Editorial) */

.home-main {
  max-width: 1250px;
  margin: 9rem auto 6rem;
  padding: 0 2.5rem;
}

/* Hero Section */
.home-hero {
  text-align: center;
  margin-bottom: 7rem;
  padding: 5rem 3rem;
  background: linear-gradient(135deg, rgba(196, 154, 69, 0.04) 0%, rgba(44, 68, 54, 0.03) 50%, rgba(196, 154, 69, 0.02) 100%);
  border-radius: 30px;
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(196, 154, 69, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.home-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.home-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 1.1rem 2.5rem;
  border-radius: 40px; /* Bords arrondis de luxe */
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition-bezier);
  box-shadow: 0 8px 25px rgba(44, 68, 54, 0.15);
  border: 1.5px solid var(--primary);
}

.cta-btn:hover {
  transform: translateY(-4px);
  background: transparent;
  color: var(--primary);
  box-shadow: 0 15px 30px rgba(44, 68, 54, 0.1);
}

/* Section Common Titles */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  letter-spacing: 0.02em;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 1px;
}

/* About Section */
.about-section {
  margin-bottom: 8rem;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-bezier);
  box-shadow: var(--shadow-soft);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.about-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Services Section */
.services-section {
  margin-bottom: 8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: var(--transition-bezier);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(44, 68, 54, 0.05));
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(2deg);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Logistics Section */
.logistics-section {
  margin-bottom: 8rem;
}

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.logistic-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-bezier);
  box-shadow: var(--shadow-soft);
}

.logistic-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.logistic-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logistic-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Why Choose Us Section */
.why-us-section {
  margin-bottom: 8rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.why-us-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-bezier);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-us-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.why-us-card:hover::before {
  opacity: 1;
}

.why-us-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(196, 154, 69, 0.1));
}

.why-us-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.why-us-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Process Section */
.process-section {
  margin-bottom: 8rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  position: relative;
  margin-top: 3rem;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-bezier);
  box-shadow: var(--shadow-soft);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: var(--shadow-medium);
}

.step-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #ffffff;
  border: 2px solid var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(44, 68, 54, 0.2);
}

.process-step:hover .step-number {
  background: var(--accent);
  box-shadow: 0 4px 15px rgba(196, 154, 69, 0.3);
}

.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer (Éditorial Sobre) */
.main-footer {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 5rem 2rem 3rem;
  margin-top: 8rem;
  color: var(--text-main);
  box-shadow: 0 -4px 30px rgba(44, 68, 54, 0.01);
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 320px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  mix-blend-mode: multiply;
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-logo p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
}

.contact-info p {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-bezier);
}

.contact-info a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* Responsive Home Rules */
@media (max-width: 768px) {
  .home-main {
    margin-top: 8rem;
    padding: 0 1.5rem;
  }
  .home-hero {
    padding: 3rem 1.5rem;
    margin-bottom: 5rem;
  }
  .home-hero h1 {
    font-size: 3.2rem;
  }
  .home-hero h2 {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  .about-content, .services-grid, .logistics-grid, .why-us-grid, .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-steps {
    gap: 3.5rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 3rem;
  }
  .footer-logo {
    align-items: center;
  }
  .footer-logo p {
    text-align: center;
  }
}
