
:root {
  --primary:    #F2AA1F;
  --secondary:  #114358;
  --disabled:   #F1ECE7;
  --black:      #000000;
  --white:      #FFFFFF;
}

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

body {
  /* font-family: 'Montserrat', sans-serif; */
  background: #e8e0d8;
}

/* =====================
   CONTACTO SECTION
===================== */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 15px 60px;
  background-image: url('../../images/imgContacto/casa.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay muy suave */

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 175, 145, 0.20);
  z-index: 0;
}

/* CONTENEDOR GLASS */
.glass-container {
  background: rgba(179, 173, 173, 0.442);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 40px;
  padding: 50px 40px;
  max-width: 1050px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 1;
}

/* IZQUIERDA */
.brand-logo { 
  width: 80px; 
  margin-bottom: 10px; 
}

.brand-title {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 5px;
  color: var(--black);
  margin-bottom: 15px;
}
.brand-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  text-align: center;
}

/* REDES SOCIALES */

.social-icons { 
  gap: 15px; 
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

.social-icons img:hover { 
  transform: scale(1.15); 
}

/* FORMULARIO E INPUTS */

.form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.custom-input {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 15px auto;
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
  display: block;

}

.custom-input:focus{
  box-shadow: none !important;
  border: 2px solid var(--secondary) !important;
  outline: 0;
}

.input-light { 
  background-color: #f1f8ff; 
}

.input-dark { 
  background-color: #cfd8df;
}

/* TERMINOS Y CONDICIONES */

.checkbox-container {
  max-width: 420px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

/* BOTON ENVIAR */

.btn-send {
  background-color: var(--primary);
  padding: 12px 60px;
  border: none;
  border-radius: 25px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.btn-send:hover{
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* =====================
   MAPA 
===================== */
.map-section {
  background:#ffffff;
  padding: 44px 0 52px;
}

.map-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.map-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .border-left-desktop {
    border-left: 1px solid rgba(0,0,0,0.08);
  }
}

@media (max-width: 767px) {
.glass-container { 
  padding: 30px 20px; 
  border-radius: 30px;
  margin-top: 50px; 
}

.brand-title { 
  font-size: 38px; 
  }
.info-side { 
  margin-bottom: 40px; 
  padding-right: 0 !important; 
}
.form-side { 
  padding-left: 0 !important; 
}

.custom-input { 
  max-width: 100%; 
}

.map-wrapper iframe { 
  height: 280px; 
}
}

