/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 @font-face {
    font-family: 'Futura Std Book';
    font-style: normal;
    font-weight: normal;
    src: local('font/Futura Std Book'), url('font/FuturaStdBook.woff') format('woff');
    }
     @font-face {
    font-family: 'Futura Std Light';
    font-style: normal;
    font-weight: normal;
    src: local('Futura Std Light'), url('font/FuturaStdLight.woff') format('woff');
    }
    html{ scroll-behavior: smooth;}
body {
    background: #F5F2ED; /* tono crema similar al diseño */
      font-family: 'Futura Std Light';
    color: #766556; /* marrón suave que usa el diseño */
    overflow-x: hidden;
}
.menu a:hover{ font-family: 'Futura Std Book';}
/* ---------- HEADER ---------- */
.main-header {
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Futura Std Light';
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo.small {
    height: 82px;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu a {
    text-decoration: none;
    color: #766556;
    font-size: 16px;
    letter-spacing: 1px;
}

.sens-mini {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
}

.sens-mini span {
    font-size: 10px;
}

/* ---------- HERO ---------- */
.hero {
    text-align: center;
}

.hero-title {
    font-size: 70px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 40px;
    color: #766556;
}

.hero-icons img {
    /* width: 100px; */
    /* margin: 0 25px; */
    object-fit: contain;
}

.futura-text {
    margin-top: 35px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 10px;
    color: #766556;
}
/* ----------- GALERÍA ----------- */

.galeria {
    width: 100%;
    display: flex;
}

.img-box {
    position: relative;
    width: 20%;
    height: auto;   /* ajustable para que coincida con tu diseño */
    overflow: hidden;
}
.img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* capa negra */
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Hover: aparece overlay */
.img-box:hover::after {
  opacity: 1;
}
.img-box .text {
    display: none;
    z-index: 99999;
    color: white;
    position: absolute;
    top: 47%;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 23px;
 transition: opacity 0.4s ease;
}

.img-box:hover .text {
    display: block;
    color:white;

}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-box .num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 18px;
    color: white;
   
     font-family: 'Futura Std Light';
    letter-spacing: 2px;
}

/* ----------- FRANJA DE TEXTO ----------- */

.franja-textos {
    width: 100%;
    background: #F5F0EA;
  padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.franja-textos h3 {
    color: #766556;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}
/* ---------- PANTALLA FULL (100vh) ---------- */

.pantalla-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}



/* Texto sobre la imagen */
.overlay-text {
    position: absolute;
    top: 52%;
    left: 0;
    right: 0;
    display: block;
    align-items: center;
    text-align: center;
    width: 100%;
    /* height: 100vh; */
    /* color: white; */
    font-size: 32px;
    margin: 0 auto;
        font-weight: 300;
}

.overlay-text .big {
    font-size: 70px;
    font-weight: 300;
    letter-spacing: 5px;
    color: white;
}

.overlay-text .small {
    font-size: 60px;
    letter-spacing: 8px;
    font-weight: 300;
    color: white;
}
/*---------------------------
     PANTALLA PROYECTO
---------------------------*/

.pantalla-proyecto {
    background: #f5f2ed;
    padding: 90px 80px;
}

.proyecto-contenido {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* --------------------- */
/* IMÁGENES */
/* --------------------- */

.proyecto-img {
    position: relative;
}

.proyecto-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 01. / 02. numeración */
.proyecto-img .num {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 18px;
    color: white;
    letter-spacing: 2px;
    opacity: 0.9;
    font-family: 'Futura Std Light';
}

/* flecha blanca */
.proyecto-img .flecha {
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 40px;
    color: white;
    font-weight: 300;
    opacity: 0.9;
}

/* --------------------- */
/* TEXTOS */
/* --------------------- */

.proyecto-textos {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.proyecto-textos p {
    color: #6E5D4D;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    font-family: 'Futura Std Light';
}

/* Imagen izquierda más grande */
.izquierda {
    width: 55%;
}

/* Imagen derecha más pequeña */
.derecha {
    width: 100%;
}
  .wrap {
    max-width: 1400px;
    margin: 40px auto;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 540px; /* izquierda: texto, derecha: imagen fija */
    gap: 40px;
    align-items: stretch;
    padding: 20px 30px;
  }

  /* Area izquierda (texto editorial) */
  .left {
    padding: 60px 80px;
    position: relative;
  }

  /* pequeños cuadrados decorativos */
  .dot-top, .dot-bottom {
    width: 10px;
    height: 10px;
    background: var(--accent);
    position: absolute;
    left: 40px;
  }
  .dot-top { top: 20px; }
  .dot-bottom { bottom: 30px; }

  h1.title {
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 36px;
    letter-spacing: 0.6px;
     font-family: 'Futura Std Light';
  }

  .lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--texto);
    font-weight: 300;
    max-width: 680px;
  }

  .lead p { margin-bottom: 20px; }

  /* Area derecha (imagen) */
  .right {
    overflow: hidden;
    display: block;
    position: relative;
    align-self: stretch;
       padding: 60px 80px;
  }

  .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
  }

  /* Ajustes tipográficos para pantalla grande */
  @media (min-width: 1600px){
    .wrap { grid-template-columns: 1fr 640px; gap:60px; }
    h1.title { font-size: 44px; }
  }

  /* Responsive: en pantallas pequeñas apilan las columnas */
  @media (max-width: 960px){
    .wrap {
      grid-template-columns: 1fr;
      padding: 30px;
      gap: 30px;
    }
    .right { order: -1; height: 420px; border-left: none; }
    .left { padding: 30px 24px; }
    .dot-top { left: 18px; top: 14px; }
    .dot-bottom { left: 18px; bottom: 18px; }
  }

  /* pequeños detalles visuales */
  .excerpt {
    margin-top: 14px;
    max-width: 720px;
  }

  a.inline-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(110,93,77,0.12);
    padding-bottom: 2px;
  }
   .main-header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* logos left – hamburguesa right */
    align-items: center;
    position: relative;
}

/* Logos a la izquierda */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Menú desktop */
.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #4b3a2f;
    font-weight: 600;
}

/* Ocultar hamburguesa en desktop */
.hamburger {
    display: none !important;
}

/* Estilo botón hamburguesa */
.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    background: #4b3a2f;
    border-radius: 2px;
    transition: .3s ease;
}

/* Animación X */
.hamburger.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Menú móvil escondido */
.mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 70%;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: .35s ease;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 999;
}

.mobile-menu a {
    font-size: 15px;
    color: #4b3a2f;
    text-decoration: none;
}

/* Abrir menú */
.mobile-menu.open {
    transform: translateX(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .header-right{display: none;}
  .main-header{display: block;}
    .menu {
        display: none;
    }

    .hamburger {
        display: flex !important;
        float: right;
        position: absolute;
        top: 25px;
        right: 20px;
        width: 25px;
    height: 20px;
    }
    .hero{    height: 30vh !important;}
    .hero-icons img {
        width: 63% !important;
    }
        .galeria .img-box {
        min-width: 80%;
        height: 500px !important;
    }
    .pantalla-full {
    background-size: cover !important;
}
.left {
        padding: 30px 15px;
        width: 100% !important;
    }
        .pantalla-full img {
        width: 100% !important;
        height: 100vh;
        object-fit: cover;
    }
    .loguito{
              width: 60% !important;
        height: auto !important;
    }
    .section{display: block !important;}
    .right{width: 100% !important;}
}
    .vineta {
  width: 10px;
  height: 10px;
  background: #6E5D4D; 
  margin-bottom:200px;/* color del cuadrado */
}

.slick-slide{position: relative;}
   /* -------------------------------------
   SECCIÓN ATV BIO (DISEÑO SOLICITADO)
-------------------------------------- */
.vine{margin-bottom: 0px;
    margin-top: 0px;
    border-top: 1px solid #7a695a;
    border-bottom: 1px solid #7a695a;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 100px;    margin-top: -5px;}
.atv-bio-section {
    position: relative;
    min-height: 100vh; /* Ocupa al menos toda la pantalla */
    display: flex;
    background-color: #F5F2ED; /* Tu color crema de fondo */
    overflow: hidden; /* Para evitar scroll horizontal por la imagen salida */
}

/* --- LADO IZQUIERDO (CONCRETO) --- */
.atv-visual {
    position: relative;
    width: 38%; /* Ancho de la franja gris según la imagen */
    flex-shrink: 0;
    display: flex;
    align-items: center; /* Centrar la foto verticalmente */
}

.concrete-bg {
    position: absolute;
    top: 0;
    left: 0;
   width: 90%;
    height: 100%;
    /* Si no tienes la imagen de concreto aún, usa este color gris temporal: */
    background-color: #b0b0b0; 
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* La foto de los arquitectos superpuesta */
.architects-photo {
    position: relative;
    z-index: 10;
    width: 90%; /* Tamaño relativo a la franja gris */
    height: auto;
    /* Truco para que la imagen "salga" hacia la derecha */
    margin-left: 40%; 

}

/* --- LADO DERECHO (TEXTO) --- */
.atv-content {
    width: 62%;
    padding: 80px 100px 80px 180px; /* Padding extra a la izquierda para dejar espacio a la foto */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título apilado */
.atv-title {
    font-family: 'Futura Std Book', sans-serif; /* Un poco más grueso */
    color: #766556; /* Tu color marrón */
    font-size: 65px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Párrafos */
.atv-text-body p {
    font-family: 'Futura Std Light', sans-serif;
    color: #766556;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 650px; /* Para que el texto no sea demasiado ancho */
    text-align: justify; /* Opcional: para que se vea cuadrado como en la imagen */
}

/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 1024px) {
    .atv-bio-section {
        flex-direction: column;
        height: auto;
    }

    .atv-visual {
        width: 100%;
        height: 500px;
        justify-content: center;
    }
    
    .concrete-bg {
        width: 100%;
    }

    .architects-photo {
        margin-left: 0;
        width: 80%;
        margin-top: 50px;
    }

    .atv-content {
        width: 100%;
        padding: 60px 40px;
    }
    
    .atv-title {
        font-size: 45px;
    }
}
/* -------------------------------------
   SECCIÓN SC BIO (DISEÑO ESPEJO)
-------------------------------------- */

.sc-bio-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    background-color: #F5F2ED; 
    overflow: hidden;
    /* Invertimos el orden visual para que el contenido quede a la izquierda */
}

/* --- LADO IZQUIERDO (TEXTO) --- */
.sc-content {
    width: 68%;
    /* Padding extra a la derecha para dejar espacio a la foto */
    padding: 80px 180px 80px 100px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Título apilado */
.sc-title {
    font-family: 'Futura Std Book', sans-serif; 
    color: #766556; 
    font-size: 65px;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Párrafos */
.sc-text-body p {
    font-family: 'Futura Std Light', sans-serif;
    color: #766556;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px; 

}

/* --- LADO DERECHO (MADERA) --- */
.sc-visual {
    position: relative;
    width: 32%; 
    flex-shrink: 0;
    display: flex;
    align-items: center; 
    /* Alineamos a la izquierda del contenedor para que la imagen se mueva más fácil sobre el texto */
    justify-content: flex-start; 
}

.dark-wood-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Si no tienes la imagen de madera aún, usa este color oscuro temporal: */
    background-color: #383025; 
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* La foto del hombre superpuesta */

.portrait-photo {
    position: relative;
    z-index: 10;
    width: 89%;
    height: auto;
    max-width: 500px;
    margin-left: -31%;
   
}
/* --- RESPONSIVE (Móvil) --- */
@media (max-width: 1024px) {
    .sc-bio-section {
        flex-direction: column-reverse; /* Cambia el orden para que el texto aparezca primero en móvil */
        height: auto;
    }

    .sc-visual {
        width: 100%;
        height: 500px;
        justify-content: center;
    }
    
    .dark-wood-bg {
        width: 100%;
    }

    .portrait-photo {
        margin-left: 0;
        width: 80%;
        margin-top: 50px;
    }

    .sc-content {
        width: 100%;
        padding: 60px 40px;
    }
    
    .sc-title {
        font-size: 45px;
    }
}
/* -------------------------------------
   FOOTER
-------------------------------------- */
.main-footer {
    background-color: #6E5D4D; /* Color Taupe/Marrón Oscuro */
    color: white;
    padding: 0 50px 30px; 

    font-family: 'Futura Std Light', sans-serif;
    overflow: hidden;
}


.scroll-top-button svg {
    display: block;
}


/* --- SECCIÓN FORMULARIO --- */
.footer-form-container {
    padding: 80px 0 100px;
    text-align: center;
}

.footer-form-container h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    max-width: 1400px;
    margin: 0 auto;
}

.form-fields {
    display: flex;
    justify-content: space-between;
}

.input-group {
    flex-basis: 33.33%;
    padding: 0 20px;
    position: relative;
    /* Necesario para alinear correctamente los elementos */
    display: flex; 
    flex-direction: column;
}

.input-group label {
    order: 1; /* Coloca la etiqueta debajo del input visualmente */
    font-size: 17px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 5px;
}

.input-group input {
    order: 2; /* Coloca el input arriba */
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: white;
    padding: 0 0 5px 0;
    margin-top: 20px;
    outline: none;
    height: 30px;
    font-size: 16px;
}
input{ font-family: 'Futura Std Light';}
.submit-group {
    /* Ajuste específico para el grupo de Teléfono / Enviar */
    position: relative;
    align-items: flex-start;
}

.submit-button {
    position: relative;
 /* Alineado con el borde inferior del input */
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0;
    transition: opacity 0.3s;
    float: right;font-family: 'Futura Std Light';
}

.submit-button:hover {
    opacity: 1;
}


/* --- BARRA INFERIOR --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin-right: 40px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

/* Pequeños rectángulos blancos de resaltado */
.footer-nav a .highlight {
    position: absolute;
    display: block;
    width: 16px;
    height: 2px;
    background: white;
    top: -8px; 
    left: 0;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.copyright {
    font-size: 12px;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons .icon {
    width: 18px;
    height: 18px;
    display: block;
}

/* --- Responsive para Móviles --- */
@media (max-width: 768px) {
    .main-footer {
        padding: 0 20px 20px;
    }
    
    .footer-form-container {
        padding: 60px 0 80px;
    }

    .form-fields {
        flex-direction: column;
        gap: 40px;
    }
    
    .input-group {
        padding: 0;
    }

    .submit-button {
        right: 0;
        top: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-nav a {
        margin-right: 20px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Mover el botón de chat a una posición más central en móvil */
    .chat-button {
        right: 20px;
        bottom: 20px;
        padding: 8px 15px;
        font-size: 14px;
    }
}
::placeholder {
  color: #fff; /* Cambia el color a azul */
  opacity: 1; /* Algunas veces es necesario para asegurar la opacidad */
}

/* =========================================================
   🔸 MOBILE / TABLET – Hasta 1024px
   ========================================================= */
@media (max-width: 1024px) {

    /* --- HEADER --- */
    .main-header {
        padding: 20px 25px;
    }

    .menu {
        gap: 20px;
    }

    .logo.small {
        height: 60px;
    }

    /* --- HERO --- */
    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .hero-icons img {
        width: 70%;
    }

    /* --- GALERÍA (de 5 columnas → scroll horizontal o apilar) --- */
    .galeria {
        overflow-x: auto;
        display: flex;
        gap: 10px;
    }

    .galeria .img-box {
        min-width: 65%;
        height: 260px;
    }

    .img-box .text {
        font-size: 18px;
    }

    /* --- FRANJA TEXTOS --- */
    .franja-textos {
        padding: 20px 25px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .franja-textos h3 {
        font-size: 24px;
    }

    /* --- PANTALLA FULL --- */
 

    /* --- SECCIÓN PROYECTO --- */
    .pantalla-proyecto {
        padding: 50px 30px;
    }

    .proyecto-contenido {
        flex-direction: column;
        gap: 40px;
    }

    .proyecto-textos {
        width: 100%;
    }

    .izquierda {
        width: 100%;
    }

    .derecha {
        width: 100%;
    }

    /* --- SLIDERS --- */
    .slider1 img,
    .slider3 img {
        border-radius: 4px;
        width: 100%;
        height: auto;
    }

    /* --- SECCIÓN DOBLE (LEFT + RIGHT) --- */
    .wrap {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .left {
        padding: 30px 15px;
    }

    .right {
        padding: 0;
        height: auto!important;
    }

    .right img {
        height: auto;
    }
}

/* =========================================================
   🔸 MOBILE – Hasta 768px
   ========================================================= */
@media (max-width: 768px) {

    /* --- HEADER MOBILE --- */
    .main-header {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        gap: 15px;
    }

    /* Hero */
    .hero {
        padding-top: 10vh!important;
    }

    .hero-icons img {
        width: 100%;
    }

    /* Galería */
    .galeria .img-box {
        min-width: 80%;
        height: 220px;
    }

    /* Proyecto textos */
    .proyecto-textos p {
        font-size: 15px;
        line-height: 1.4;
    }

    /* Títulos */
    h1.title {
        font-size: 28px;
    }
}

.atv-text-body p {
    font-family: 'Futura Std Light', sans-serif;
    color: #766556;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
}
.sc-text-body p{
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.lead {
    font-size: 16px !important;
    line-height: 1.4!important;
    color: var(--texto);
    font-weight: 300;
    width: 73% !important;
}
.atv-content {
    width: 55%;
    padding: 80px 51px 80px 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.atv-text-body p {
    font-family: 'Futura Std Light', sans-serif;
    color: #766556;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
}
.sc-text-body p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}
.sc-text-body{width: 76%;}

.scroll-top-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #D3D3D3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999999999;
    margin-top: -25px;
    z-index: 999999999;
    margin-top: -25px;
}
/* Fondo oscuro del modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
font-family: 'Futura Std Light';
}

/* Caja principal */
.modal-content {

    background: #6C594B;
    width: 650px;
    padding: 50px;
    position: relative;
    color: #fff;

font-family: 'Futura Std Light';
}

/* Botón cerrar */
.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 26px;
    cursor: pointer;
}

/* Título */
.modal-title {
  font-family: 'Futura Std Light';
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Inputs estilo línea   */
.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    pointer-events: none;
}

/* Flecha enviar */
.send-btn {
    background: none;
    border: none;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-top: 20px;
}
.modal-content {
    background: #6C594B;
    width: 650px;
    padding: 50px;
    position: relative;
    color: #fff;

    left: 0;
    right: 0;
    position: absolute;
    margin: 0 auto;
    margin-top: 10%;
}
@media(max-width: 768px){
      .slider1 img, .slider3 img {
        border-radius: 0px;}
      .galeria .img-box {
        height: 40vh !important;
    }
        .franja-textos {
        padding: 0px 25px;
        flex-direction: column-reverse;
        gap: 10px;
        text-align: center;
       padding-bottom: 60px;
    }
        .franja-textos h3 {
        font-size: 24px;
        margin-top: 0px;
        margin-bottom: -34px;
    }
        .proyecto-contenido {
        flex-direction: column;
        gap: 20px;
    }
        .proyecto-textos {
        width: 100%;
        gap: 20px;
    }
    .lead {
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: var(--texto);
    font-weight: 300;
    width: 95% !important;
}
.architects-photo {
        margin-left: 0;
        width: 65%;
        margin-top: 0;
    }
    .atv-content {
    width: 100%;
    /* padding: 80px 51px 80px 260px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}
.portrait-photo {
        margin-left: 0;
        width: 70%;
        margin-top: 0;
    }
    .sc-text-body {
    width: 95%;
}
   .hero-icons img {
        max-width: 90% !important;
        width: 75% !important;
    }
    .modal-content {
    width: 100%;}
        .logo.small {
        margin-left: -20px;
    }
    .hero {
        padding-top: 8vh !important;
    }
}