/* ================================================================
   EL CÓNDOR – MAIN STYLESHEET
   Palette:  terracota #C05C20 · navy #1B2342 · ochre #9A7C2A
================================================================
   1.  HEADER / NAV
   2.  HERO
   3.  BOTONES
   4.  SECCIÓN TÍTULOS
   5.  SERVICES
   6.  PROYECTOS (media list)
   7.  FEATURED
   8.  CTA
   9.  TESTIMONIOS
   10. FOOTER SIMPLE
   11. VALORIZACIÓN
   12. PROCESO DE COMPRA
   13. SIMULADOR
   14. VIDEOS VIRALES
   15. GALERÍA DEL PROYECTO
   16. FILTROS DE PRECIOS
   17. STREET VIEW
   18. FORMULARIOS
================================================================ */


html,
body {
    overflow-x: hidden;
    max-width: 100%;
}


/* ----------------------------------------------------------------
   LOADER — pantalla de carga
---------------------------------------------------------------- */

.css-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #1B2342;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.loader-logo {
    width: 80px;
    height: auto;
    animation: loaderPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 18px rgba(192, 92, 32, 0.35));
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.75; transform: scale(0.96); filter: drop-shadow(0 0 12px rgba(192, 92, 32, 0.3)); }
    50%       { opacity: 1;    transform: scale(1.05); filter: drop-shadow(0 0 30px rgba(192, 92, 32, 0.7)); }
}

.loader-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C05C20;
    animation: loaderDot 1.3s ease-in-out infinite;
}

.loader-dots span:nth-child(1) { animation-delay: 0s; }
.loader-dots span:nth-child(2) { animation-delay: 0.22s; }
.loader-dots span:nth-child(3) { animation-delay: 0.44s; }

@keyframes loaderDot {
    0%, 70%, 100% { transform: scale(0.55); opacity: 0.3; }
    35%            { transform: scale(1.25); opacity: 1; }
}


/* ----------------------------------------------------------------
   1. HEADER / NAV (floating pill)
---------------------------------------------------------------- */

.main-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    z-index: 9999;
    background: rgba(27, 35, 66, 0.97);
    border-radius: 60px;
    padding: 0 20px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.main-header.header-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-24px);
}

.main-header::after {
    display: none;
}

.main-header .top-header {
    padding: 2px 0;
}

.main-header .contact a {
    font-size: 12px;
    line-height: 1;
    margin-right: 14px;
    padding: 0;
    color: #fff;
}

.main-header .contact a:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.main-header .navbar {
    padding: 2px 0;
}

.main-header .navbar-toggler {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.main-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.main-header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header .navbar-brand img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}

.main-header .nav-link {
    font-family: "Rajdhani", sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 4px 8px;
    line-height: 1;
    color: #fff;
}

.main-header .nav-link:hover {
    color: #C05C20;
    text-decoration: none;
}

.nav-item-sgi {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.btn-sgi {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #C05C20;
    color: #fff !important;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-sgi:hover {
    background: #a34c18;
    transform: translateY(-1px);
}

.btn-sgi .fa {
    font-size: 0.78rem;
}


/* ----------------------------------------------------------------
   2. HERO
---------------------------------------------------------------- */

.hero {
    background: url("../images/hero-bg.jpg") no-repeat center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 0;
    padding-top: 10px;
    padding-bottom: 20px;
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero .texture {
    width: 100%;
    height: 100%;
    background: url("../images/hero-texture.png") no-repeat center;
    background-size: cover;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero .diag-bg {
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
    background-color: rgba(192, 92, 32, 0.08);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.02);
    position: absolute;
    left: 0;
    bottom: 29%;
}

.hero::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.02);
    position: absolute;
    left: 0;
    bottom: 58%;
}

/* Hero title entrance animation */
@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Hero home (index) — static centered */
.hero-home {
    position: relative;
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 70px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: center;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-home .container {
    position: relative;
    z-index: 2;
}

.hero-home .texture,
.hero-home .diag-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Static hero content */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    animation: heroTitleIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}


.hero-title2 {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(3.6rem, 8.5vw, 8.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    animation: heroTitleIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.hero-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 700;
    color: #ffffff;
    max-width: 680px;
    margin-bottom: 36px;
    line-height: 1.65;
    text-shadow:
        0  2px 4px  rgba(0,0,0,1),
        0  0   12px rgba(0,0,0,0.95),
        0  0   30px rgba(0,0,0,0.8);
}

.btn-hero-wa {
    display: inline-block;
    background-color: #C05C20;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.btn-hero-wa:hover {
    background-color: #1da851;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

/* Hero inner (all pages except index) */
.hero-inner {
    padding-top: 120px;
}

.hero.hero-inner {
    position: relative;
}

.hero.hero-inner .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero.hero-inner .container {
    position: relative;
    z-index: 3;
}

.hero.hero-inner .texture {
    opacity: 0.25;
}

.hero-inner h1 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-inner p {
    color: rgba(255, 255, 255, 0.82);
    text-shadow: none;
}


/* ----------------------------------------------------------------
   2b. BARRA DE ESTADÍSTICAS
---------------------------------------------------------------- */

.stats-bar {
    background: #1B2342;
    padding: 28px 0;
}

.stats-bar .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-bar .stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: "Rajdhani", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #C05C20;
    line-height: 1;
}

.stat-label {
    font-family: "Open Sans", sans-serif;
    font-size: 0.8rem;
    color: #cfcfcf;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    text-align: center;
}


/* ----------------------------------------------------------------
   2c. BOTÓN FLOTANTE WHATSAPP
---------------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9998;
    background: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 26px rgba(37, 211, 102, 0.75);
    color: #fff;
    text-decoration: none;
}


/* ----------------------------------------------------------------
   3. BOTONES
---------------------------------------------------------------- */

.btn-primary {
    background-color: #C05C20;
    border-color: #C05C20;
    color: #ffffff;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #a04215;
    border-color: #a04215;
    color: #ffffff;
    text-decoration: none;
}

.btn-primary:active {
    background-color: #7a2f0d;
    border-color: #7a2f0d;
}

.btn-outline-primary {
    border-color: #C05C20;
    color: #C05C20;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: #C05C20;
    border-color: #C05C20;
    color: #fff;
}


/* ----------------------------------------------------------------
   4. SECCIÓN TÍTULOS
---------------------------------------------------------------- */

.title {
    font-weight: 700;
    text-transform: uppercase;
}

.title h6 {
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.title h2 {
    font-size: 35px;
}

.title-blue {
    color: #1B2342;
}

.title-primary {
    color: #C05C20;
}


/* ----------------------------------------------------------------
   5. SERVICES
---------------------------------------------------------------- */

.services {
    padding: 80px 0 50px;
}

.services .title {
    margin-bottom: 20px;
}

.services .media {
    margin: 40px 0;
}

.services h5 {
    color: #1B2342;
    border-bottom: 2px solid #e7e7e7;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.service-box {
    padding: 30px 20px;
}

.service-box i {
    color: #C05C20;
}

.service-box h5 {
    color: #1B2342;
    margin-top: 15px;
}


/* ----------------------------------------------------------------
   6. PROYECTOS (media list en index)
---------------------------------------------------------------- */

.proyectos .media img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.proyectos .btn {
    border-radius: 20px;
    font-weight: 600;
    padding: 6px 16px;
}


/* ----------------------------------------------------------------
   7. FEATURED
---------------------------------------------------------------- */

.featured {
    padding: 80px 0;
    background-color: #fafafa;
    overflow: hidden;
}

.featured p {
    margin: 35px 0 53px;
}

.featured .media i {
    font-size: 24px;
    color: #C05C20;
}

.featured .media h5 {
    text-transform: uppercase;
    color: #1B2342;
}

.featured .btn {
    margin-top: 80px;
}

.featured-img {
    position: relative;
    height: 480px;
    width: 100%;
}

.featured-big {
    position: absolute;
    right: 0;
    top: -280px;
    width: 85%;
    max-width: 520px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-small {
    position: absolute;
    left: 0;
    top: 220px;
    width: 60%;
    max-width: 340px;
    height: auto;
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}


/* ----------------------------------------------------------------
   8. CTA
---------------------------------------------------------------- */

.cta {
    margin-top: 40px;
}

.cta-content {
    padding: 30px 0 90px;
    color: #fff;
    background-color: #C05C20;
    position: relative;
    z-index: 1;
}

.cta-content::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(27, 35, 66, 0.77);
    position: absolute;
    top: 0;
    left: -1px;
    z-index: -1;
    transition: all 0.2s ease-in-out;
}

.cta-content .subscribe-btn {
    align-self: flex-end;
    margin-right: 30px;
}

.cta-content h2,
.cta-content p {
    color: #fff;
}


/* ----------------------------------------------------------------
   9. TESTIMONIOS
---------------------------------------------------------------- */

.testimonial-and-clients {
    background: #111827;
    padding: 65px 0;
}

.testimonials {
    padding: 0 0 24px;
}

.testimonial-and-clients .title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    max-width: 680px;
}

.testimonial-and-clients .title h6 {
    color: #C05C20;
    font-weight: 700;
    letter-spacing: 1px;
}

.test-rating-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.test-rating-bar .stars {
    color: #FBBF24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.test-rating-bar .rating-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.test-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    min-height: 200px;
}

.test-card-photo {
    width: 40%;
    background: rgba(192, 92, 32, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 14px;
    text-align: center;
    flex-shrink: 0;
}

.test-card-photo img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    border: 2.5px solid #C05C20;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.test-card-photo h5 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.test-card-photo span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.test-card-body {
    flex: 1;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.test-stars {
    color: #FBBF24;
    font-size: 0.88rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.test-card p {
    font-size: 0.95rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
    margin-bottom: 0;
}

.test-pagination {
    text-align: center;
    margin-top: 20px;
}

.test-pagination span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.test-pagination span:not(:last-child) {
    margin-right: 10px;
}

.test-pagination span.swiper-pagination-bullet-active {
    width: 28px;
    height: 9px;
    border-radius: 5px;
    background-color: #C05C20;
}

.testimonial-cta {
    background: linear-gradient(145deg, #C05C20 0%, #8B3A10 100%);
    color: #fff;
    padding: 44px 32px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(192, 92, 32, 0.4);
    text-align: center;
}

.testimonial-cta-icon {
    width: 66px;
    height: 66px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 30px;
    color: #fff;
}

.testimonial-cta h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.testimonial-cta p {
    font-size: 0.9rem;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.testimonial-cta .btn {
    background: #fff;
    color: #C05C20;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    width: 100%;
    border: none;
    display: block;
}

.testimonial-cta .btn:hover {
    background: #f5f0e8;
    color: #C05C20;
}

.testimonial-cta-stat {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 18px;
}


/* ----------------------------------------------------------------
   10. FOOTER SIMPLE
---------------------------------------------------------------- */

.footer-rich {
    background: #0d1526;
    color: #cfcfcf;
    font-size: 14px;
    padding: 60px 0 0;
}

.footer-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.88;
    display: block;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfcfcf;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-btn:hover {
    background: #C05C20;
    color: #fff;
    text-decoration: none;
    border-color: #C05C20;
}

.footer-heading {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #C05C20;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13.5px;
    margin-bottom: 10px;
    line-height: 1.55;
}

.footer-list li i {
    color: #C05C20;
    margin-right: 8px;
    width: 14px;
    text-align: center;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-list a:hover {
    color: #C05C20;
    text-decoration: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    margin-top: 50px;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.28);
    font-size: 12.5px;
    margin: 0;
}


/* ----------------------------------------------------------------
   EMPRESA PAGE
---------------------------------------------------------------- */

.empresa-nit-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(27, 35, 66, 0.06);
    border: 1.5px solid rgba(27, 35, 66, 0.14);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 13.5px;
    color: #1B2342;
}

.empresa-nit-badge i {
    color: #C05C20;
    font-size: 18px;
    flex-shrink: 0;
}

.empresa-nit-sep {
    margin: 0 6px;
    color: #aaa;
}

/* Credenciales section */
.empresa-credenciales {
    background: #F5F0E8;
    padding: 80px 0;
}

.empresa-credenciales-sub {
    color: #777;
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

.credencial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 22px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
    border-top: 4px solid #C05C20;
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.credencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.credencial-icon {
    width: 64px;
    height: 64px;
    background: rgba(192, 92, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: #C05C20;
}

.credencial-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1B2342;
    margin-bottom: 8px;
}

.credencial-valor {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #1B2342;
    margin-bottom: 6px;
}

.credencial-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 12px;
}

.credencial-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #C05C20;
    background: rgba(192, 92, 32, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

/* Valores / Por qué elegir */
.valor-item {
    padding: 28px 16px;
    margin-bottom: 8px;
}

.valor-icon {
    width: 56px;
    height: 56px;
    background: rgba(192, 92, 32, 0.09);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #C05C20;
    margin-bottom: 16px;
}

.valor-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1B2342;
    margin-bottom: 10px;
}

.valor-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* Street View section */
.empresa-streetview {
    background: #F5F0E8;
    padding: 80px 0 60px;
}

.empresa-streetview-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.empresa-streetview-dir {
    color: #777;
    font-size: 14px;
}

.empresa-streetview-dir a {
    color: #C05C20;
    text-decoration: none;
    font-weight: 600;
}

.empresa-streetview-dir a:hover {
    text-decoration: underline;
}

/* Legalidad section */
.empresa-legalidad {
    background: #fff;
}

.empresa-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empresa-lista li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14.5px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.5;
}

.empresa-lista li:last-child {
    border-bottom: none;
}

.empresa-lista li i {
    color: #C05C20;
    margin-top: 2px;
    flex-shrink: 0;
}

/* CTA final */
.empresa-cta-final {
    background: linear-gradient(135deg, #1B2342 0%, #0d1526 100%);
    padding: 90px 0;
}

.empresa-cta-final h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.empresa-cta-final p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.empresa-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.empresa-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.2s ease;
    background: transparent;
}

.empresa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    text-decoration: none;
}


/* ----------------------------------------------------------------
   PROYECTOS PAGE
---------------------------------------------------------------- */

/* Filtros bar */
.proyectos-filtros {
    background: #f7f8fb;
    border-bottom: 1px solid #e5e8f0;
    padding: 22px 0;
}

.pf-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 32px;
}

.pf-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pf-group-label {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #888;
    white-space: nowrap;
}

.pf-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pf-bar .filtro-clear {
    margin-left: auto;
}

/* Sección de grid */
.proyectos-lista {
    padding: 70px 0 40px;
    background: #f7f8fc;
}

/* Tarjeta de proyecto */
.proy-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 2px solid transparent;
}

.proy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
    border-color: #C05C20;
}

/* Header de la tarjeta (logo area) */
.proy-card-header {
    background: #1B2342;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    position: relative;
    overflow: hidden;
}

.proy-card-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(192, 92, 32, 0.18) 0%, transparent 70%);
}

.proy-card-header img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 1;
}

.proy-card-luxury .proy-card-header {
    background: linear-gradient(135deg, #1B2342 0%, #0d1526 100%);
}

.proy-type-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #C05C20;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.proy-badge-luxury {
    background: linear-gradient(90deg, #9a3d0e, #C05C20);
}

/* Card body */
.proy-card-body {
    padding: 24px 22px 16px;
    flex: 1;
}

.proy-card-body h5 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1B2342;
    margin-bottom: 6px;
}

.proy-ubicacion {
    font-size: 13px;
    color: #C05C20;
    font-weight: 600;
    margin-bottom: 12px;
}

.proy-ubicacion i {
    margin-right: 4px;
}

.proy-desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.proy-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

.proy-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    padding: 5px 0;
}

.proy-specs li i {
    color: #C05C20;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* Card footer */
.proy-card-footer {
    padding: 16px 22px 22px;
}

.proy-btn {
    background: #1B2342;
    color: #fff;
    width: 100%;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.proy-btn:hover {
    background: #C05C20;
    color: #fff;
    text-decoration: none;
}

/* CTA proyectos final */
.proyectos-cta {
    background: #1B2342;
    padding: 90px 0;
}

.proyectos-cta-sup {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C05C20;
    margin-bottom: 14px;
}

.proyectos-cta h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.proyectos-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    line-height: 1.7;
}

.proyectos-cta-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proyectos-cta-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.proyectos-cta-lista li i {
    color: #C05C20;
    flex-shrink: 0;
}

/* CTA right card */
.proyectos-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
}

.proyectos-cta-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(192, 92, 32, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #C05C20;
}

.proyectos-cta-card h4 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.proyectos-cta-card > p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 22px;
}

.proyectos-cta-btn-sec {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-weight: 700;
    padding: 12px 20px;
    transition: all 0.2s ease;
}

.proyectos-cta-btn-sec:hover {
    border-color: #C05C20;
    color: #C05C20;
    background: transparent;
    text-decoration: none;
}

.proyectos-cta-phones {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proyectos-cta-phones p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.proyectos-cta-phones i {
    color: #C05C20;
}


/* ----------------------------------------------------------------
   11. VALORIZACIÓN
---------------------------------------------------------------- */

.valorizacion {
    padding: 100px 0;
    background: #f9f9f9;
}

.valorizacion canvas {
    width: 100%;
    height: 420px;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
}


/* ----------------------------------------------------------------
   12. PROCESO DE COMPRA
---------------------------------------------------------------- */

.proceso-compra {
    padding: 80px 0;
}

.proceso-item {
    padding: 28px 30px;
    border-left: 4px solid #C05C20;
    border-radius: 0 8px 8px 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.proceso-item h4 {
    color: #1B2342;
    font-weight: 700;
    margin-bottom: 12px;
}


/* ----------------------------------------------------------------
   13. SIMULADOR
---------------------------------------------------------------- */

.simulador-pagos input,
.simulador-pagos select {
    color: #000 !important;
}

.simulador-pagos input::placeholder {
    color: #666;
}

.simulador-resultado,
.simulador-resultado p,
.simulador-resultado span,
.simulador-resultado strong {
    color: #000 !important;
}


/* ----------------------------------------------------------------
   13b. SIMULADOR INLINE
---------------------------------------------------------------- */

.simulador-inline {
    padding: 80px 0;
    background: #f5f0e8;
}

.sim-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
}

.sim-label {
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1B2342;
    margin-bottom: 10px;
    display: block;
}

.sim-pct-val {
    color: #C05C20;
}

.sim-prefix {
    background: #f5f0e8;
    color: #555;
    border: 1.5px solid #e0e0e0;
    border-right: none;
    font-weight: 700;
    border-radius: 8px 0 0 8px !important;
}

.sim-input {
    border: 1.5px solid #e0e0e0 !important;
    border-left: none !important;
    border-radius: 0 8px 8px 0 !important;
}

.sim-standalone-input {
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 8px !important;
}

.sim-input-meses {
    border-left: 1.5px solid #e0e0e0 !important;
    border-right: none !important;
    border-radius: 8px 0 0 8px !important;
}

.sim-suffix {
    background: #f5f0e8;
    color: #555;
    border: 1.5px solid #e0e0e0;
    border-left: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0 8px 8px 0 !important;
}

.sim-hint {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 5px;
}

.sim-opt-tag {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin-bottom: 0;
}

.sim-permuta-fields {
    margin-top: 12px;
    padding: 14px 16px;
    background: rgba(192, 92, 32, 0.06);
    border-radius: 10px;
    border: 1.5px solid rgba(192, 92, 32, 0.2);
}

/* Range slider */
.sim-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    margin: 8px 0 4px;
}

.sim-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #C05C20;
    box-shadow: 0 2px 8px rgba(192, 92, 32, 0.45);
    cursor: pointer;
    transition: transform 0.15s ease;
}

.sim-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.sim-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #C05C20;
    border: none;
    cursor: pointer;
}

.sim-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
}

/* Plazo chips */
.sim-plazo-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sim-chip {
    cursor: pointer;
    margin: 0;
}

.sim-chip input {
    display: none;
}

.sim-chip span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #666;
    transition: all 0.2s ease;
    user-select: none;
}

.sim-chip:hover span {
    border-color: #C05C20;
    color: #C05C20;
}

.sim-chip input:checked + span {
    background: #C05C20;
    border-color: #C05C20;
    color: #fff;
    box-shadow: 0 3px 10px rgba(192, 92, 32, 0.35);
}

/* Results panel */
.sim-resultado {
    background: #1B2342;
    border-radius: 20px;
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(27, 35, 66, 0.22);
    transition: box-shadow 0.4s ease;
}

.sim-activo {
    box-shadow: 0 16px 50px rgba(27, 35, 66, 0.38);
}

.sim-resultado-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.sim-resultado-header i {
    font-size: 1.5rem;
    color: #C05C20;
}

.sim-resultado-header h5 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.sim-items {
    flex: 1;
}

.sim-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sim-item:last-child {
    border-bottom: none;
}

.sim-item-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sim-item-value {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.sim-item-destacado {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 2px solid rgba(192, 92, 32, 0.35);
    border-bottom: none;
}

.sim-item-destacado .sim-item-label {
    color: #C05C20;
    font-weight: 700;
    font-size: 0.85rem;
}

.sim-item-destacado .sim-item-value {
    font-size: 1.6rem;
    color: #C05C20;
}

.sim-nota {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
}

.sim-cta-btn {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    pointer-events: none;
}

.sim-activo .sim-cta-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Value pop-in animation */
@keyframes simPopIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sim-val-anim {
    animation: simPopIn 0.4s ease forwards;
}


/* ----------------------------------------------------------------
   14. FORMULARIO DE LEADS (Contacto rápido)
---------------------------------------------------------------- */

.contacto-leads {
    background: linear-gradient(135deg, #1B2342 0%, #2c3a6e 100%);
    padding: 80px 0;
}

.leads-info h6 {
    color: #C05C20;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 0.8rem;
}

.leads-info h2 {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.leads-info > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.leads-beneficios {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leads-beneficios li {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.leads-beneficios li i {
    color: #C05C20;
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.leads-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.leads-form-card h5 {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1B2342;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #C05C20;
}

.leads-form-card .form-control {
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.leads-form-card .form-control:focus {
    border-color: #C05C20;
    box-shadow: 0 0 0 3px rgba(192, 92, 32, 0.12);
}


/* ----------------------------------------------------------------
   15. GALERÍA DEL PROYECTO
---------------------------------------------------------------- */

.proyecto-galeria {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.proyecto-galeria .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.proyecto-galeria img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.proyecto-galeria .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.proyecto-galeria .swiper-pagination-bullet-active {
    background: #C05C20;
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.galeria-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.galeria-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.galeria-prev-btn {
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

.galeria-next-btn {
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.galeria-fullscreen-btn {
    bottom: 15px;
    right: 15px;
}


/* ----------------------------------------------------------------
   16. FILTROS DE PRECIOS
---------------------------------------------------------------- */

.filtro-lotes-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.filtro-label {
    font-weight: 500;
    color: #555;
}

.filtro-chip {
    position: relative;
    cursor: pointer;
}

.filtro-chip input {
    display: none;
}

.filtro-chip span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #444;
    transition: all 0.2s ease;
    background: #fff;
}

.filtro-chip:hover span {
    border-color: #C05C20;
    color: #C05C20;
}

.filtro-chip input:checked + span {
    background: #C05C20;
    color: #fff;
    border-color: #C05C20;
}

.filtro-clear {
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    margin-left: auto;
    padding: 4px 8px;
}

.filtro-clear:hover {
    color: #C05C20;
    text-decoration: underline;
}


/* ----------------------------------------------------------------
   17. STREET VIEW
---------------------------------------------------------------- */

.street-view-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.street-view-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ----------------------------------------------------------------
   18. FORMULARIOS
---------------------------------------------------------------- */

.form-control {
    color: #000000 !important;
}

.form-control::placeholder {
    color: #666666;
    opacity: 1;
}


/* ----------------------------------------------------------------
   19. PROYECTO DETAIL
---------------------------------------------------------------- */

/* Tipo badge (hero) */
.proy-tipo-badge {
    display: inline-block;
    background: rgba(192, 92, 32, 0.18);
    color: #C05C20;
    font-family: "Rajdhani", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1.5px solid rgba(192, 92, 32, 0.35);
}

/* Hero logo */
.proy-hero-logo {
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
    opacity: 0.92;
}

/* Hero description & location */
.proy-hero-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 16px;
}

.proy-hero-loc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.proy-hero-loc i {
    color: #C05C20;
    margin-right: 6px;
}

/* Stats bar */
.proy-stats-bar {
    background: #1B2342;
    padding: 28px 0;
    border-bottom: 3px solid #C05C20;
}

.proy-stat {
    text-align: center;
    padding: 8px 16px;
}

.proy-stat-sep {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.proy-stat > i {
    font-size: 1.3rem;
    color: #C05C20;
    display: block;
    margin-bottom: 7px;
}

.proy-stat-val {
    font-family: "Rajdhani", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 3px;
}

.proy-stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Map section */
.proy-mapa-section {
    padding: 80px 0;
    background: #ffffff;
}

.proy-ubicacion-desc {
    font-size: 14.5px;
    color: #666;
    line-height: 1.72;
    margin-bottom: 22px;
}

.proy-mapa-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* Street view */
.proy-sv-section {
    padding: 70px 0;
    background: #f5f0e8;
}

.proy-sv-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* Characteristics */
.proy-caract-section {
    padding: 80px 0;
    background: #f7f8fc;
}

.proy-caract-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border-top: 3px solid #C05C20;
    height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.proy-caract-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.proy-caract-icon {
    width: 60px;
    height: 60px;
    background: rgba(192, 92, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #C05C20;
    transition: background 0.22s ease;
}

.proy-caract-card:hover .proy-caract-icon {
    background: rgba(192, 92, 32, 0.18);
}

.proy-caract-text {
    font-family: "Rajdhani", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1B2342;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.45;
}
