body{
    margin: 0;
    padding: 0;
    background: #f4f6f9;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;

    background-image: url("../img/fondo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* =========================================================
   HEADER PRINCIPAL
   OPORTUNIDADES INMOBILIARIAS MARTORELL
========================================================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;
    height: 150px;

    padding: 0 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;

    background: linear-gradient(
        135deg,
        #003366,
        #0059b3
    );

    box-shadow: 0 8px 25px rgba(0, 0, 0, .20);
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 450px;
    height: auto;

    display: block;

    transition: .4s ease;
}


/* Efecto del logo */

.logo img:hover {
    transform: scale(1.05);
}


/* =========================================================
   MENÚ PRINCIPAL
========================================================= */

.main-header nav {
    display: block;
}

.main-header nav ul {
    display: flex;
    align-items: center;

    gap: 0;

    list-style: none;

    margin: 0;
    padding: 0;
}


/* =========================================================
   ELEMENTOS DEL MENÚ
========================================================= */

.main-header nav ul li {
    list-style: none;

    display: flex;
    align-items: center;
}


/* =========================================================
   BARRAS VERTICALES ENTRE OPCIONES
========================================================= */

.main-header nav ul li:not(:last-child)::after {
    content: "";

    display: block;

    width: 1px;
    height: 22px;

    background: rgba(255, 255, 255, .5);
}


/* =========================================================
   ENLACES DEL MENÚ
========================================================= */

.main-header nav ul li a {
    display: block;

    padding: 10px 18px;

    color: white;

    font-size: 15px;
    font-weight: bold;

    text-decoration: none;

    border-radius: 40px;

    transition: .35s ease;

    letter-spacing: .5px;

    white-space: nowrap;
}


/* =========================================================
   EFECTO HOVER
========================================================= */

.main-header nav ul li a:hover {
    background: white;

    color: #004080;

    transform: translateY(-4px);

    box-shadow:
        0 8px 18px rgba(255, 255, 255, .25);
}


/* =========================================================
   ENLACE ACTIVO / FOCUS
========================================================= */

.main-header nav ul li a:focus {
    background: #ffffff;

    color: #004080;

    outline: none;
}


/* =========================================================
   BOTÓN PROPIEDADES
   COLOR ESPECIAL
========================================================= */

.main-header nav ul li a[href*="resultadoBusqueda"]:hover {
    background: #cabb11;

    color: white;

    transform: translateY(-4px);

    box-shadow:
        0 8px 18px rgba(0, 0, 0, .25);
}


/* =========================================================
   BOTÓN MENÚ HAMBURGUESA
========================================================= */

.menu-toggle {
    display: none;

    background: transparent;

    border: none;

    color: white;

    font-size: 32px;

    cursor: pointer;

    padding: 5px;

    transition: .3s ease;
}


/* Hover del botón */

.menu-toggle:hover {
    color: #ffd700;

    transform: scale(1.1);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-header {
        height: 120px;

        padding: 0 35px;
    }

    .logo img {
        width: 330px;
    }

    .main-header nav ul li a {
        padding: 9px 12px;

        font-size: 14px;
    }

}


/* =========================================================
   TABLET PEQUEÑA
========================================================= */

@media (max-width: 900px) {

    .main-header {
        height: 100px;

        padding: 0 25px;
    }

    .logo img {
        width: 260px;
    }

    .main-header nav ul li a {
        padding: 8px 9px;

        font-size: 13px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

    .main-header {

        position: sticky;
        top: 0;

        width: 100%;

        height: 90px;

        padding: 15px 20px;

        box-sizing: border-box;
    }


    /* -------------------------
       LOGO
    ------------------------- */

    .logo img {
        width: 180px;

        max-width: 100%;

        height: auto;
    }


    /* -------------------------
       BOTÓN HAMBURGUESA
    ------------------------- */

    .menu-toggle {

        display: block;

        font-size: 32px;

        z-index: 1002;
    }


    /* -------------------------
       MENÚ LATERAL
    ------------------------- */

    .main-header nav {

        position: fixed;

        top: 0;

        right: -100%;

        width: 280px;

        max-width: 85vw;

        height: 100vh;

        padding-top: 100px;

        box-sizing: border-box;

        background: #003366;

        transition: right .35s ease;

        z-index: 1001;

        box-shadow:
            -10px 0 30px rgba(0, 0, 0, .30);

        overflow-y: auto;
    }


    /* -------------------------
       MENÚ ABIERTO
    ------------------------- */

    .main-header nav.active {
        right: 0;
    }


    /* -------------------------
       LISTA
    ------------------------- */

    .main-header nav ul {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width: 100%;
    }


    /* -------------------------
       ELEMENTOS
    ------------------------- */

    .main-header nav ul li {

        width: 100%;

        display: block;
    }


    /* -------------------------
       QUITAR BARRAS VERTICALES
    ------------------------- */

    .main-header nav ul li:not(:last-child)::after {

        display: none;
    }


    /* -------------------------
       ENLACES
    ------------------------- */

    .main-header nav ul li a {

        display: block;

        width: 100%;

        padding: 18px 30px;

        box-sizing: border-box;

        text-align: left;

        border-radius: 0;

        border-bottom:
            1px solid rgba(255, 255, 255, .12);

        font-size: 18px;

        white-space: normal;
    }


    /* -------------------------
       HOVER CELULAR
    ------------------------- */

    .main-header nav ul li a:hover {

        background: #0059b3;

        color: white;

        transform: none;

        box-shadow: none;
    }


    /* -------------------------
       FOCUS CELULAR
    ------------------------- */

    .main-header nav ul li a:focus {

        background: #0059b3;

        color: white;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 480px) {

    .main-header {

        height: 80px;

        padding: 12px 15px;
    }


    .logo img {

        width: 155px;
    }


    .menu-toggle {

        font-size: 29px;
    }


    .main-header nav {

        width: 260px;

        padding-top: 85px;
    }


    .main-header nav ul li a {

        padding: 17px 25px;

        font-size: 17px;
    }

}
/* =========================================================
   FOOTER
   OPORTUNIDADES INMOBILIARIAS MARTORELL
========================================================= */

footer {
    width: 100%;

    background: linear-gradient(
        135deg,
        #00264d,
        #004080
    );

    color: white;

    padding: 50px 20px 25px;

    margin-top: 80px;

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   ENLACES DE REDES / WHATSAPP
========================================================= */

.social-links {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;

    margin-bottom: 30px;
}


/* =========================================================
   BOTONES DE CONTACTO
========================================================= */

.social-links a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 230px;

    padding: 15px 25px;

    background: rgba(255, 255, 255, .10);

    color: white;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

    border-radius: 50px;

    transition: .35s ease;

    border: 1px solid rgba(255, 255, 255, .15);

    box-sizing: border-box;
}


/* =========================================================
   ICONO WHATSAPP
========================================================= */

.social-links i {

    font-size: 28px;

    color: #25D366;

    transition: .35s ease;
}


/* =========================================================
   EFECTO HOVER
========================================================= */

.social-links a:hover {

    background: #25D366;

    color: white;

    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(37, 211, 102, .35);
}


/* Cambiar color del icono */

.social-links a:hover i {

    color: white;
}


/* =========================================================
   TEXTO COPYRIGHT
========================================================= */

footer p {

    margin: 25px 0 0;

    padding-top: 20px;

    font-size: 15px;

    color: #d8d8d8;

    border-top:
        1px solid rgba(255, 255, 255, .20);

    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    footer {

        padding: 40px 20px 25px;

        margin-top: 60px;
    }


    .social-links {

        flex-direction: column;

        gap: 15px;

        margin-bottom: 25px;
    }


    .social-links a {

        width: 90%;

        max-width: 400px;

        min-width: 0;

        justify-content: center;

        padding: 14px 20px;

        font-size: 16px;
    }


    .social-links i {

        font-size: 25px;
    }


    footer p {

        font-size: 14px;

        padding-top: 18px;

        margin-top: 20px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 550px) {

    footer {

        padding: 35px 15px 20px;

        margin-top: 50px;
    }


    .social-links {

        width: 100%;

        gap: 12px;

        margin-bottom: 20px;
    }


    .social-links a {

        width: 100%;

        max-width: 100%;

        padding: 14px 15px;

        font-size: 15px;

        border-radius: 40px;
    }


    .social-links i {

        font-size: 23px;
    }


    footer p {

        font-size: 13px;

        line-height: 1.5;

        padding-top: 15px;

        margin-top: 15px;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
========================================================= */

@media (max-width: 380px) {

    footer {

        padding-left: 12px;

        padding-right: 12px;
    }


    .social-links a {

        padding: 13px 10px;

        font-size: 14px;

        gap: 8px;
    }


    .social-links i {

        font-size: 21px;
    }


    footer p {

        font-size: 12px;
    }

}
/* =========================================================
   DETALLE DE LA PROPIEDAD
========================================================= */

.detalle-propiedad {

    width: 100%;

    max-width: 1400px;

    margin: 50px auto 70px;

    padding: 0 5%;

    box-sizing: border-box;
}


/* ==========================================
   TÍTULO DE LA PROPIEDAD
========================================== */

.titulo-propiedad {
    width: 100%;
    max-width: 1200px;

    margin: 40px auto 25px;

    padding: 30px 35px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,.10);

    box-sizing: border-box;

    text-align: center;
}

.titulo-propiedad h1 {
    margin: 0;

    color: #004080;

    font-size: 2.2rem;

    line-height: 1.3;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 768px) {

    .titulo-propiedad {
        margin: 30px 20px 20px;

        padding: 25px 20px;
    }

    .titulo-propiedad h1 {
        font-size: 1.8rem;
    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 550px) {

    .titulo-propiedad {
        width: calc(100% - 30px);

        margin: 25px auto 18px;

        padding: 20px 15px;

        border-radius: 14px;
    }

    .titulo-propiedad h1 {
        font-size: 1.5rem;

        line-height: 1.35;
    }

}


/* =========================================================
   GALERÍA
========================================================= */

.galeria-propiedad {

    position: relative;

    width: 100%;

    height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    box-sizing: border-box;
}


/* =========================================================
   CONTENEDOR DE LA IMAGEN
========================================================= */

.imagen-galeria {

    width: 80%;

    height: 80%;

    overflow: hidden;

    border-radius: 20px;

    background: #eeeeee;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .18);
}


.imagen-galeria img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        opacity .3s ease,
        transform .4s ease;
}


/* =========================================================
   BOTONES DE LA GALERÍA
========================================================= */

.btn-galeria {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(0, 64, 128, .85);

    color: white;

    font-size: 22px;

    cursor: pointer;

    z-index: 10;

    transition: .3s ease;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .25);
}


/* =========================================================
   BOTÓN IZQUIERDO
========================================================= */

.btn-anterior {

    left: 20px;
}


/* =========================================================
   BOTÓN DERECHO
========================================================= */

.btn-siguiente {

    right: 20px;
}


/* =========================================================
   HOVER BOTONES
========================================================= */

.btn-galeria:hover {

    background: #007BFF;

    transform:
        translateY(-50%) scale(1.08);

    box-shadow:
        0 8px 20px rgba(0, 123, 255, .35);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .detalle-propiedad {

        margin-top: 40px;

        padding: 0 4%;
    }


    .titulo-propiedad h1 {

        font-size: 2.2rem;
    }


    .galeria-propiedad {

        height: 500px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .detalle-propiedad {

        margin-top: 35px;

        margin-bottom: 50px;

        padding: 0 20px;
    }


    .titulo-propiedad {

        margin-bottom: 25px;
    }


    .titulo-propiedad h1 {

        font-size: 1.9rem;

        line-height: 1.3;
    }


    .titulo-propiedad h1::after {

        width: 80px;

        height: 3px;

        margin-top: 12px;
    }


    .galeria-propiedad {

        height: 420px;
    }


    .imagen-galeria {

        border-radius: 15px;
    }


    .btn-galeria {

        width: 48px;

        height: 48px;

        font-size: 18px;
    }


    .btn-anterior {

        left: 12px;
    }


    .btn-siguiente {

        right: 12px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 550px) {

    .detalle-propiedad {

        margin-top: 25px;

        margin-bottom: 40px;

        padding: 0 15px;
    }


    .titulo-propiedad {

        margin-bottom: 20px;
    }


    .titulo-propiedad h1 {

        font-size: 1.5rem;

        line-height: 1.35;
    }


    .titulo-propiedad h1::after {

        width: 65px;

        height: 3px;

        margin-top: 10px;
    }


    .galeria-propiedad {

        height: 280px;

        gap: 0;
    }


    .imagen-galeria {

        width: 100%;

        height: 100%;

        border-radius: 12px;
    }


    .btn-galeria {

        width: 42px;

        height: 42px;

        font-size: 16px;

        background: rgba(0, 64, 128, .9);
    }


    .btn-anterior {

        left: 8px;
    }


    .btn-siguiente {

        right: 8px;
    }

}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 380px) {

    .titulo-propiedad h1 {

        font-size: 1.35rem;
    }


    .galeria-propiedad {

        height: 240px;
    }


    .btn-galeria {

        width: 38px;

        height: 38px;

        font-size: 14px;
    }


    .btn-anterior {

        left: 6px;
    }


    .btn-siguiente {

        right: 6px;
    }

}
/* ==========================================
   INFORMACIÓN PRINCIPAL DE LA PROPIEDAD
========================================== */

.informacion-principal {

    width: 100%;
    max-width: 1200px;

    margin: 40px auto;

    padding: 30px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


/* ==========================================
   TARJETA DE DATO
========================================== */

.dato-propiedad {

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 90px;

    padding: 18px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 8px 25px rgba(0,0,0,.10);

    border-left: 4px solid #007BFF;

    transition: .3s;
}


.dato-propiedad:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0,0,0,.15);

}


/* ==========================================
   ICONO
========================================== */

.icono-dato {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e8f2ff;

    color: #007BFF;

    font-size: 21px;
}


/* ==========================================
   CONTENIDO
========================================== */

.contenido-dato {

    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}


/* ETIQUETA */

.etiqueta-dato {

    color: #777;

    font-size: 14px;

    font-weight: 600;
}


/* VALOR */

.contenido-dato strong {

    color: #004080;

    font-size: 16px;

    line-height: 1.4;

    word-break: break-word;
}


/* ==========================================
   PRECIO
========================================== */

.precio-propiedad {

    border-left-color: #0c8f37;
}


.precio-propiedad .icono-dato {

    background: #e5f7eb;

    color: #0c8f37;
}


.precio-propiedad .contenido-dato strong {

    color: #0c8f37;

    font-size: 20px;
}


/* ==========================================
   DIRECCIÓN Y REFERENCIA
========================================== */

.direccion-propiedad,
.referencia-propiedad {

    grid-column: span 1;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .informacion-principal {

        grid-template-columns: repeat(2, 1fr);

        padding: 25px;

        gap: 18px;

    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 600px) {

    .informacion-principal {

        grid-template-columns: 1fr;

        margin: 25px auto;

        padding: 15px;

        gap: 15px;

    }


    .dato-propiedad {

        min-height: 80px;

        padding: 15px;

        border-radius: 12px;

    }


    .icono-dato {

        width: 45px;

        height: 45px;

        font-size: 18px;

    }


    .etiqueta-dato {

        font-size: 13px;

    }


    .contenido-dato strong {

        font-size: 15px;

    }


    .precio-propiedad .contenido-dato strong {

        font-size: 18px;

    }

}
/* ==========================================
   CARACTERÍSTICAS DE LA PROPIEDAD
========================================== */

.caracteristicas-propiedad {

    width: 100%;
    max-width: 1200px;

    margin: 50px auto;

    padding: 40px;

    box-sizing: border-box;

    background: linear-gradient(
        135deg,
        #ffffff,
        #f4f8fc
    );

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,.10);
}


/* ==========================================
   TITULO
========================================== */

.titulo-caracteristicas {

    text-align: center;

    margin-bottom: 35px;
}


.titulo-caracteristicas h2 {

    margin: 0 0 10px;

    color: #004080;

    font-size: 2rem;

    font-weight: bold;
}


.titulo-caracteristicas h2 i {

    color: #007BFF;

    margin-right: 8px;
}


.titulo-caracteristicas p {

    margin: 0;

    color: #666;

    font-size: 16px;
}


/* ==========================================
   GRID
========================================== */

.grid-caracteristicas {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* ==========================================
   CARACTERÍSTICA
========================================== */

.caracteristica {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px;

    background: #ffffff;

    border-radius: 14px;

    border: 1px solid #e5eaf0;

    box-shadow: 0 5px 15px rgba(0,0,0,.06);

    transition: .3s;
}


.caracteristica:hover {

    transform: translateY(-4px);

    border-color: #007BFF;

    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}


/* ==========================================
   ICONO
========================================== */

.icono-caracteristica {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #e8f2ff;

    color: #007BFF;

    font-size: 19px;
}


/* ==========================================
   TEXTO
========================================== */

.caracteristica > div:last-child {

    display: flex;

    flex-direction: column;

    gap: 3px;

    min-width: 0;
}


.caracteristica span {

    color: #777;

    font-size: 13px;

    font-weight: 600;
}


.caracteristica strong {

    color: #004080;

    font-size: 15px;

    line-height: 1.3;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {

    .caracteristicas-propiedad {

        padding: 30px 25px;

    }


    .grid-caracteristicas {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 600px) {

    .caracteristicas-propiedad {

        margin: 30px auto;

        padding: 25px 15px;

        border-radius: 15px;

    }


    .titulo-caracteristicas {

        margin-bottom: 25px;

    }


    .titulo-caracteristicas h2 {

        font-size: 1.6rem;

        line-height: 1.3;

    }


    .titulo-caracteristicas p {

        font-size: 14px;

        line-height: 1.5;

    }


    .grid-caracteristicas {

        grid-template-columns: 1fr;

        gap: 12px;

    }


    .caracteristica {

        padding: 14px;

        gap: 13px;

    }


    .icono-caracteristica {

        width: 42px;

        height: 42px;

        font-size: 17px;

    }


    .caracteristica span {

        font-size: 12px;

    }


    .caracteristica strong {

        font-size: 14px;

    }

}
/* ==========================================
   SECCIÓN MÁS DETALLES
========================================== */

.seccion-mas-detalles {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(0,0,0,.10);

    box-sizing: border-box;
}


/* ==========================================
   TÍTULO
========================================== */

.seccion-mas-detalles h2 {
    margin: 0 0 35px;

    text-align: center;

    color: #004080;

    font-size: 2.3rem;

    position: relative;
}

.seccion-mas-detalles h2::after {
    content: "";

    display: block;

    width: 90px;
    height: 4px;

    background: #007BFF;

    margin: 12px auto 0;

    border-radius: 20px;
}


/* ==========================================
   CONTENIDO
========================================== */

.contenido-mas-detalles {
    color: #555;

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;
}

.contenido-mas-detalles > p {
    margin: 0 0 18px;
}

.contenido-mas-detalles strong {
    color: #333;
}


/* ==========================================
   DISTRIBUCIÓN POR PISOS
========================================== */

.distribucion-propiedad {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin: 30px 0;
}


/* TARJETA DE CADA PISO */

.piso-detalle {
    padding: 22px;

    background: #f5f8fc;

    border-left: 5px solid #007BFF;

    border-radius: 12px;

    box-sizing: border-box;
}

.piso-detalle h3 {
    margin: 0 0 10px;

    color: #004080;

    font-size: 1.2rem;
}

.piso-detalle p {
    margin: 0;

    color: #555;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================
   LINDEROS
========================================== */

.linderos-propiedad {
    margin-top: 30px;

    padding: 25px;

    background: #f8fafc;

    border-radius: 15px;

    border: 1px solid #e1e5ea;
}

.linderos-propiedad h3 {
    margin: 0 0 20px;

    color: #004080;

    font-size: 1.4rem;
}

.linderos-propiedad p {
    margin: 8px 0;

    color: #555;
}


/* ==========================================
   INFORMACIÓN ADICIONAL
========================================== */

.informacion-adicional {
    margin-top: 25px;

    padding: 25px;

    background: linear-gradient(
        135deg,
        #eef6ff,
        #f8fbff
    );

    border-radius: 15px;

    border: 1px solid #d9e8f7;
}

.informacion-adicional p {
    margin: 8px 0;

    color: #555;
}

.informacion-adicional strong {
    color: #004080;
}

.rentabilidad {
    color: #0c8f37;

    font-size: 20px;

    font-weight: bold;
}


/* ==========================================
   RESPONSIVE - TABLET
========================================== */

@media (max-width: 768px) {

    .seccion-mas-detalles {
        margin: 30px 20px;

        padding: 30px 25px;
    }

    .seccion-mas-detalles h2 {
        font-size: 2rem;
    }

    .contenido-mas-detalles {
        font-size: 15px;
    }

    .distribucion-propiedad {
        grid-template-columns: 1fr;

        gap: 15px;
    }

}


/* ==========================================
   RESPONSIVE - CELULAR
========================================== */

@media (max-width: 550px) {

    .seccion-mas-detalles {
        width: calc(100% - 30px);

        margin: 25px auto;

        padding: 25px 18px;

        border-radius: 15px;
    }

    .seccion-mas-detalles h2 {
        font-size: 1.7rem;

        margin-bottom: 25px;
    }

    .contenido-mas-detalles {
        font-size: 14px;

        line-height: 1.7;

        text-align: left;
    }

    .piso-detalle {
        padding: 18px;
    }

    .piso-detalle h3 {
        font-size: 1.1rem;
    }

    .piso-detalle p {
        font-size: 14px;
    }

    .linderos-propiedad,
    .informacion-adicional {
        padding: 18px;
    }

    .linderos-propiedad h3 {
        font-size: 1.2rem;
    }

    .rentabilidad {
        font-size: 18px;
    }
}
/* ==========================================
   BOTÓN WHATSAPP DE LA PROPIEDAD
========================================== */

.seccion-whatsapp-propiedad {
    width: 100%;
    max-width: 1200px;

    margin: 35px auto;

    padding: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}


/* BOTÓN */

.btn-whatsapp-propiedad {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 280px;

    padding: 16px 30px;

    background: #25D366;

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: bold;

    border-radius: 50px;

    box-shadow: 0 8px 20px rgba(37,211,102,.25);

    transition: .35s;
}


/* ICONO */

.btn-whatsapp-propiedad i {
    font-size: 27px;
}


/* EFECTO */

.btn-whatsapp-propiedad:hover {
    background: #1ebe5d;

    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(37,211,102,.35);
}


/* ==========================================
   RESPONSIVE - TABLET
========================================== */

@media (max-width: 768px) {

    .seccion-whatsapp-propiedad {
        padding: 15px 20px;
    }

    .btn-whatsapp-propiedad {
        min-width: 250px;

        padding: 15px 25px;

        font-size: 17px;
    }

}


/* ==========================================
   RESPONSIVE - CELULAR
========================================== */

@media (max-width: 550px) {

    .seccion-whatsapp-propiedad {
        width: 100%;

        margin: 25px auto;

        padding: 15px;
    }

    .btn-whatsapp-propiedad {
        width: 100%;

        min-width: 0;

        padding: 14px 20px;

        font-size: 16px;
    }

    .btn-whatsapp-propiedad i {
        font-size: 24px;
    }

}
/* ==========================================
   MAPA DE LA PROPIEDAD
========================================== */

.seccion-mapa-propiedad {
    width: 100%;
    max-width: 1200px;

    margin: 35px auto;

    padding: 0 20px;

    box-sizing: border-box;
}


/* CONTENEDOR DEL MAPA */

.mapa-propiedad {
    width: 100%;

    height: 450px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}


/* MAPA */

.mapa-propiedad iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 768px) {

    .seccion-mapa-propiedad {
        padding: 0 20px;
    }

    .mapa-propiedad {
        height: 380px;

        border-radius: 15px;
    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 550px) {

    .seccion-mapa-propiedad {
        width: 100%;

        margin: 25px auto;

        padding: 0 15px;
    }

    .mapa-propiedad {
        height: 300px;

        border-radius: 12px;
    }

}
/* ==========================================
   BOTÓN VOLVER A PROPIEDADES
========================================== */

.seccion-volver-propiedades {
    width: 100%;
    max-width: 1200px;

    margin: 35px auto 50px;

    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
}


/* BOTÓN */

.btn-volver-propiedades {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 30px;

    background: #004080;

    color: white;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

    border-radius: 50px;

    box-shadow: 0 8px 20px rgba(0,64,128,.25);

    transition: .35s;
}


/* ICONO */

.btn-volver-propiedades i {
    font-size: 18px;
}


/* EFECTO */

.btn-volver-propiedades:hover {
    background: #007BFF;

    transform: translateY(-4px);

    box-shadow: 0 12px 28px rgba(0,64,128,.30);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 768px) {

    .seccion-volver-propiedades {
        margin: 30px auto 40px;

        padding: 0 20px;
    }

    .btn-volver-propiedades {
        padding: 14px 25px;

        font-size: 16px;
    }

}


/* ==========================================
   CELULAR
========================================== */

@media (max-width: 550px) {

    .seccion-volver-propiedades {
        width: 100%;

        margin: 25px auto 35px;

        padding: 0 15px;
    }

    .btn-volver-propiedades {
        width: 100%;

        padding: 14px 20px;

        font-size: 15px;

        box-sizing: border-box;
    }

}