/* RESET Y FUENTE */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    background-color: #fff;
    line-height: 1.6;
}

.site-container { width: 1000px; margin: 0 auto; padding: 20px 0; }

/* HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.logo-img { height: 60px; }

.top-nav a {
    text-decoration: none;
    font-weight: 700;
    color: #999;
    margin-left: 25px;
    font-size: 11px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.top-nav a:hover { color: #00AEEF; }

/* GRID PRINCIPAL */
.main-grid {
    display: grid;
    grid-template-columns: 180px 1fr 240px;
    gap: 40px;
}

/* MENÚ IZQUIERDO */
.left-menu ul { list-style: none; text-align: right; }
.left-menu li {
    font-weight: 700;
    color: #888;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
}
.left-menu li:hover { color: #333; }

/* BANNER CENTRAL */
.banner-area {
    height: 280px;
    background: #f4f4f4 url('central.png') center/cover;
    margin-bottom: 30px;
}

h2 { font-size: 18px; color: #8C7374; margin-bottom: 20px; font-weight: 700; }

/* SECCIÓN 3 COLUMNAS PORTADA */
.discover-section { margin-top: 40px; border-top: 1px solid #eee; padding-top: 25px; }
.discover-title { color: #999; font-size: 13px; margin-bottom: 20px; font-weight: 700; }
.discover-grid { display: flex; justify-content: space-between; }
.disc-col { flex: 1; font-weight: 700; font-size: 13px; padding: 0 15px; }
.disc-col.brown { color: #8C7374; }
.disc-col.cyan { color: #00AEEF; }
.borders { border-left: 1px solid #ddd; border-right: 1px solid #ddd; }

/* ESTILOS DEL METRO (ACTUALIZADO) */
.metro-info { margin-top: 10px; font-weight: 600; font-size: 11px; }
.metro-linea { display: flex; align-items: center; margin-bottom: 5px; }
.metro-icon {
    width: 18px; /* Tamaño del logo del metro */
    height: auto;
    margin-right: 8px;
}

/* FORMULARIO CONTACTO */
.contact-details { background: #f9f9f9; padding: 20px; border-left: 4px solid #00AEEF; margin-bottom: 25px; }
.modern-form { display: flex; flex-direction: column; gap: 12px; max-width: 450px; }
.modern-form input, .modern-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}
.btn-send {
    background: #00AEEF;
    color: white;
    border: none;
    padding: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}
.btn-send:hover { background: #0089bd; }

/* SIDEBAR DERECHA */
.sidebar-block { margin-bottom: 30px; }
.sidebar-block h3 { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.sidebar-thumb { width: 70px; float: left; margin: 0 10px 10px 0; border: 1px solid #eee; }
.bullet-list { list-style: disc inside; margin-bottom: 10px; }
.more-link { color: #00AEEF; font-weight: 700; text-decoration: none; font-size: 11px; }
.aniversario { text-align: right; }
.aniversario img { width: 90px; }

/* SECCIONES SERVICIOS */
.split-content { display: flex; gap: 20px; }
.split-content img { width: 140px; height: auto; border: 1px solid #eee; padding: 4px; }
.highlight { color: #00AEEF; font-weight: 700; }

/* ESTO FUERZA EL TAMAÑO DE BANNER HORIZONTAL */
.project-main-image {
    width: 100%;
    height: 280px;      /* Esta altura evita que salga enorme hacia abajo */
    overflow: hidden;   /* Corta lo que sobre de la foto */
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Clave: ajusta la foto al hueco sin deformarla */
    object-position: center center; /* Centra la vista en el iPad/planos */
    display: block;
}

/* DISEÑO CON IMAGEN A LA DERECHA */
.split-layout {
    display: flex;
    gap: 30px;            /* Espacio entre el texto y la imagen */
    align-items: center;  /* Alinea el texto verticalmente con el centro de la foto */
    margin-top: 15px;
}

.split-text {
    flex: 1;              /* El texto toma el espacio restante */
}

.split-image {
    flex: 0 0 250px;      /* Controla el ancho de la imagen */
}

.split-image img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}