/* ======================================================
   NOSOTROS – SIMPLIFICAR INMOBILIARIA
====================================================== */

:root {
    --gold: #d4af37;
    --gold-hover: #b8962e;
    --dark: #111827;
    --dark-soft: #1f2933;
    --gray-text: #4b5563;
    --gray-soft: #6b7280;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #111;
    /*padding-top: 100px; usar este mismo apra los edmas*/
}

/* =====================
   HERO NOSOTROS
===================== */

.nosotros-hero {
    position: relative;
    min-height: 70vh;
    padding-top: 140px;
    padding-bottom: 60px;

    background: url('../../assets/img/hero/carrusel2.jpg') center / cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay oscuro REAL (mejor contraste) */
.nosotros-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.70),
        rgba(0,0,0,0.55)
    );
}

/* Contenido */
.nosotros-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
}

/* Título */
.nosotros-hero-content h1 {
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

/* Línea dorada */
.nosotros-hero-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* Texto */
.nosotros-hero-content p {
    font-size: 18px;
    line-height: 1.65;
    color: #f1f1f1;
    max-width: 820px;
    margin: 0 auto;
}


.mv-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.mv-item i {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
}
.proceso_item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform .3s ease;
}

.proceso_item:hover {
    transform: translateY(-6px);
}


/* =====================
   SECCIÓN GENERAL
===================== */

.nosotros-section {
    padding: 80px 20px;
    background: #ffffff;
}

.nosotros-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.nosotros-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark);
    position: relative;
}

.nosotros-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 18px auto 0;
}

.nosotros-container p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 16px;
}

/* =====================
   VALORES
===================== */
.nosotros-valores-carousel {
    padding: 90px 20px;
    background: #f9fafb;
    text-align: center;
}

.valores-carousel {
    position: relative;
    max-width: 520px;
    margin: 50px auto 0;
}

.valor-slide {
    display: none;
    animation: fadeUp .6s ease;
}

.valor-slide.active {
    display: block;
}

.valor-slide i {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
}

.valor-slide h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.valor-slide p {
    font-size: 16px;
    color: #6b7280;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.nosotros-valores-carousel {
    padding: 100px 20px;
    background: #f9fafb;
    text-align: center;
    position: relative;
}

.valores-carousel {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    height: 260px;
}

/* =====================
   CIERRE FINAL
===================== */

.nosotros-cierre {
    padding: 80px 20px;
    background: #111827;
    text-align: center;
    color: #ffffff;
}

.nosotros-cierre h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.nosotros-cierre p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

.nosotros-cierre .cta_btn {
    display: inline-block;
    padding: 14px 36px;
    background: #818e53;
    color: #ffffff;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
.nosotros-valores-carousel {
    padding: 100px 20px;
    background: #f9fafb;
}

.valores-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXTO */
.valores-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111827;
}

.valores-intro {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
}

.valores-highlight {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #111;
}

.valores-highlight strong {
    color: #d4af37;
}

/* CTA */
.valores-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #d4af37;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all .3s ease;
}

.valores-cta:hover {
    background: #b8962e;
    transform: translateY(-2px);
}

/* CARRUSEL */
.valores-carousel {
    text-align: center;
}

.valor-slide {
    display: none;
    animation: fadeUp .6s ease;
}

.valor-slide.active {
    display: block;
}

.valor-slide i {
    font-size: 52px;
    color: #d4af37;
    margin-bottom: 20px;
}

.valor-slide h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.valor-slide p {
    font-size: 16px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .valores-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.proceso_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s ease;
}
.proceso_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.proceso_item:hover::before {
    transform: scaleY(1);
}

.nosotros-cierre .cta_btn:hover {
    background: #6f7b48;
    transform: translateY(-2px);
}
/* =====================
   MISIÓN Y VISIÓN
===================== */

.nosotros-mv {
    padding: 80px 20px;
    background: #f9fafb;
}

.mv-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mv-item h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
}

.mv-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================
   PROCESO DE TRABAJO
===================== */

.nosotros_proceso {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.nosotros_proceso h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.proceso_desc {
    max-width: 650px;
    margin: 0 auto 48px;
    color: #4b5563;
}

.proceso_grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.proceso_item {
    position: relative;
    padding: 36px 28px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform .35s ease, box-shadow .35s ease;
    overflow: hidden;
    cursor: default;
}


.proceso_item span {
    font-size: 32px;
    font-weight: 700;
    color: #818e53;
}

.proceso_item h3 {
    margin: 12px 0 8px;
    font-size: 20px;
}

.proceso_item p {
    font-size: 15px;
    color: #6b7280;
}
.nosotros_cta_final {
    padding: 90px 20px;
    background: linear-gradient(135deg, #111827, #1f2933);
    text-align: center;
    color: #ffffff;
}

.nosotros_cta_final h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.nosotros_cta_final p {
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {

    .nosotros-hero {
        height: 60vh;
    }

    .nosotros-hero-content p {
        font-size: 16px;
    }

    .nosotros-cierre h2 {
        font-size: 30px;
    }
}
