@import url('https://api.fontshare.com/v2/css?f[]=satoshi@1,900,700,500,301,701,300,501,401,901,400,2&display=swap');
/* ===== RESET BÁSICO ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  font-family: "Satoshi", system-ui, sans-serif;
  height: 100%;
  width: 100%;
  color: #ffffff;
  overflow-x: hidden;
}
/* desplazamiento suave para anclas (#...) */
html { scroll-behavior: smooth; }

/* evita que el navbar fijo tape el inicio de la sección */
#servicios { scroll-margin-top: 80px; } /* ajusta 80px si cambias la altura del navbar */

body {
  font-family: "Satoshi", system-ui, sans-serif;
}



/* Satoshi Variable */
@font-face {
  font-family: "Satoshi";
  src: url("../Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 100 900; /* todos los pesos en un solo archivo */
  font-style: normal;
  font-display: swap;
}

/* Satoshi Variable Italic */
@font-face {
  font-family: "Satoshi";
  src: url("../Satoshi_Complete/Fonts/WEB/fonts/Satoshi-VariableItalic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}





:root {
  --drab-dark-brown: #2b3014;
  --olive: #918042;
  --white-smoke: #f5f4f5;
  --white: #ffffff;
  --black: #141414;
}

/* Estilos generales heredados */
body {
  font-family: "Satoshi", system-ui, sans-serif;
  background-color: var(--white-smoke);
  color: var(--black);
  margin: 0;
  line-height: 1.6;
}

/* Navbar */
.main-navbar {
  background-color: var(--white);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--olive);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-navbar a {
  color: var(--black);
  margin: 0 20px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.main-navbar a:hover {
  color: var(--olive);
}

.main-navbar a.active {
  color: var(--olive);
  font-weight: 600;
}

.brand {
  color: var(--drab-dark-brown);
  margin: 0;
  font-size: 28px;
  font-weight: bold;
}

/* Hero Contacto */
.contact-hero {
  background: linear-gradient(135deg, rgba(43, 48, 20, 0.9) 0%, rgba(145, 128, 66, 0.9) 100%), 
              url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
  background-size: cover;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.contact-hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.contact-hero .lead {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Sección de Contacto */
.contact-section {
  padding: 80px 0;
  background-color: var(--white-smoke);
}

.section-title {
  color: var(--drab-dark-brown);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
}

.title-divider {
  height: 3px;
  width: 60px;
  background-color: var(--olive);
  margin-bottom: 30px;
}

/* Formulario */
.contact-form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.contact-form label {
  font-weight: 500;
  color: var(--drab-dark-brown);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 0.25rem rgba(145, 128, 66, 0.25);
}

.privacy-link {
  color: var(--olive);
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
}

.btn-submit {
  background-color: var(--olive);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background-color: #a08a4a;
  color: var(--white);
  transform: translateY(-2px);
}

/* Información de Contacto */
.contact-info-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--olive);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--drab-dark-brown);
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-text p {
  margin-bottom: 0;
  color: #555;
}

.social-section h4 {
  color: var(--drab-dark-brown);
  margin-bottom: 15px;
  font-size: 18px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--white-smoke);
  color: var(--drab-dark-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--olive);
  color: var(--white);
  transform: translateY(-3px);
}

/* Mapa */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  margin-top: 30px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--drab-dark-brown) 0%, #1a1f0a 100%);
  color: var(--white);
  padding: 30px 0;
}

.footer-link {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
  margin-left: 15px;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-hero h2 {
    font-size: 2.2rem;
  }
  
  .contact-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0;
  }
  
  .contact-hero h2 {
    font-size: 1.8rem;
  }
  
  .contact-hero .lead {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .contact-form-container,
  .contact-info-container {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-form-container,
  .contact-info-container {
    padding: 25px;
  }
  
  .footer-links {
    margin-top: 15px;
  }
  
  .footer-link {
    display: block;
    margin: 5px 0;
  }
  /* === Tipografía Satoshi forzada en la sección de contacto === */
.contact-hero,
.contact-hero *,
.contact-section,
.contact-section *,
.contact-form-container,
.contact-form-container *,
.contact-info-container,
.contact-info-container *,
.map-container,
.map-container * {
  font-family: "Satoshi", system-ui, sans-serif !important;
}

}