body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #2b153f 0%, #3f245f 45%, #5a2e86 100%);
    color: #ffffff;
}

.text-gold {
    color: #d4af37 !important;
}

.bg-black {
    background-color: #000 !important;
}

.border-gold {
    border-color: #f0c95a !important;
}

.navbar-luna {
    background: linear-gradient(90deg, #3f245f 0%, #5a2e86 100%);
}

.nav-gold {
    color: #f0c95a !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-gold:hover,
.nav-gold:focus {
    color: #fff0b3 !important;
}

.btn-gold {
    background-color: #d4af37;
    color: #2e1b46;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #f0c95a;
    color: #2e1b46;
}

.hero-box {
    max-width: 760px;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.hero-dots button.active {
    background: #f0c95a;
}

.card img {
    height: 240px;
    object-fit: cover;
}

.card {
    border-radius: 16px;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-section img {
    border-radius: 18px;
}

.review-card {
    border-radius: 16px;
    background-color: #ffffff;
    color: #212529;
}

.reviews-section {
    background-color: rgba(255, 255, 255, 0.08);
}

.footer-luna {
    background: linear-gradient(90deg, #3f245f 0%, #5a2e86 100%);
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-text {
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f0c95a;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 22px;
    margin-top: 10px;
}

.footer-social a {
    color: #ffffff;
    transition: 0.3s;
    font-size: 22px;
}

.footer-social a:hover {
    color: #f0c95a;
    transform: scale(1.15);
}

.footer-line {
    border-color: rgba(240, 201, 90, 0.35);
}

.footer-copy {
    color: #ffffff;
}

.property-badge {
    font-size: 0.85rem;
}

.about-box,
.services-box,
.search-home-box {
    background-color: #ffffff;
    color: #212529;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.08);
}

.mt-n4 {
    margin-top: -2rem;
}

.badge-estado {
    font-size: 0.78rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
}

.badge-nuevo {
    background-color: #198754;
    color: #fff;
}

.badge-oportunidad {
    background-color: #d4af37;
    color: #000;
}

.badge-reservado {
    background-color: #fd7e14;
    color: #fff;
}

.badge-vendido,
.badge-alquilado {
    background-color: #6c757d;
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    background-color: #25D366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.05);
}

.propiedades-carousel .carousel-control-prev,
.propiedades-carousel .carousel-control-next {
    width: 5%;
}

.propiedades-carousel .carousel-control-prev-icon,
.propiedades-carousel .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.55);
    border-radius: 50%;
    padding: 1.2rem;
}

@media (max-width: 991.98px) {
    .hero-slider {
        min-height: 460px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        min-height: 400px;
    }

    .hero-prev,
    .hero-next {
        width: 42px;
        height: 42px;
        font-size: 1.6rem;
    }

    .propiedades-carousel .carousel-item .col-md-4:not(:first-child) {
        display: none;
    }
}


/* ===== AJUSTES VISUALES PARA IGUALAR LA VERSIÓN DE HOSTINGER ===== */

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #2b153f 0%, #3f245f 50%, #5a2e86 100%);
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Header */
.navbar-luna {
    background: linear-gradient(90deg, #3f245f 0%, #5a2e86 100%);
}

.navbar-brand .brand-text {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.nav-gold {
    color: #f0c95a !important;
    font-weight: 500;
    font-size: 1rem;
}

.nav-gold:hover,
.nav-gold:focus {
    color: #fff0b3 !important;
}

.btn-gold {
    background-color: #d4af37 !important;
    color: #2e1b46 !important;
    border: none !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #f0c95a !important;
    color: #2e1b46 !important;
}

/* Botón Admin */
.navbar .btn.btn-gold {
    background-color: #d4af37 !important;
    color: #2e1b46 !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.45rem 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* Hero */
.hero-slider {
    min-height: 560px;
}

.hero-box h1,
.hero-box h2 {
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.hero-box .lead {
    font-size: 1.2rem;
    color: #f8f9fa;
}

.hero-box .btn {
    min-width: 210px;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
}

/* Títulos de sección */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.container .text-muted {
    color: rgba(255,255,255,0.78) !important;
    font-size: 1rem;
}

/* Cards de propiedades */
.card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.9rem rgba(0, 0, 0, 0.14);
}

.card-body {
    color: #212529;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Buscador de home */
.search-home-box {
    border-radius: 18px;
    background: linear-gradient(180deg, #6a3b95 0%, #5a2e86 100%);
    color: #ffffff;
    position: relative;
    z-index: 10;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,.18);
}

.search-home-box .form-label {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.search-home-box .form-control,
.search-home-box .form-select {
    background-color: rgba(255,255,255,0.96);
    color: #212529;
    border: 1px solid rgba(255,255,255,0.4);
    font-size: 0.98rem;
    min-height: 46px;
}

.search-home-box .form-control::placeholder {
    color: #6c757d;
}

.search-home-box .btn-gold {
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
}

/* Sobre nosotros y servicios */
.about-box,
.services-box {
    background: linear-gradient(180deg, #6a3b95 0%, #5a2e86 100%);
    color: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.9rem rgba(0,0,0,.14);
}

.about-box p,
.services-box p,
.services-box h5 {
    color: #ffffff;
}

.services-box .text-primary {
    color: #f0c95a !important;
}

.about-box .section-title,
.services-box .section-title {
    color: #ffffff;
}

/* Sección reseñas */
.reviews-section {
    background: linear-gradient(180deg, #6a3b95 0%, #5a2e86 100%);
}

.review-card {
    border-radius: 16px;
    background-color: rgba(255,255,255,0.96);
    color: #212529;
}

.review-card p {
    font-size: 1rem;
}

.review-card h6 {
    font-weight: 700;
}

/* Footer */
.footer-luna {
    background: linear-gradient(90deg, #3f245f 0%, #5a2e86 100%);
    color: #ffffff;
}

.footer-title,
.footer-text,
.footer-copy,
.footer-links a,
.footer-social a {
    color: #ffffff !important;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #f0c95a !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 1.7rem;
    }

    .hero-box .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero-box .btn {
        min-width: auto;
        width: 100%;
    }

    .search-home-box {
        padding: 1.5rem !important;
    }
}


/* ===== AJUSTES FINALES HOME ===== */

/* Tamaño general de textos */
body,
p,
.card-body,
.about-box p,
.services-box p,
.review-card p,
.footer-text,
.search-home-box .form-label,
.search-home-box .form-control,
.search-home-box .form-select,
.container .text-muted {
    font-size: 1.05rem !important;
}

/* Títulos principales */
.section-title,
h2.section-title {
    font-size: 2.1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

/* Títulos de cards y servicios */
.card-title,
.services-box h5,
.review-card h6 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}

/* Lead del hero */
.hero-box .lead {
    font-size: 1.2rem !important;
}

/* Sección reseñas: fondo violeta */
.reviews-section,
section.reviews-section {
    background: linear-gradient(180deg, #6a3b95 0%, #5a2e86 100%) !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Tarjetas de reseñas */
.review-card {
    background-color: rgba(255, 255, 255, 0.96) !important;
    color: #212529 !important;
    border-radius: 16px;
}

/* Textos de la cabecera de reseñas */
.reviews-section .section-title,
.reviews-section .text-muted {
    color: #ffffff !important;
}

/* Servicios y sobre nosotros algo más legibles */
.about-box,
.services-box {
    font-size: 1.03rem !important;
}

/* Caja buscador home */
.search-home-box {
    background: linear-gradient(180deg, #6a3b95 0%, #5a2e86 100%) !important;
}

.search-home-box .form-label {
    color: #ffffff !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-title,
    h2.section-title {
        font-size: 1.75rem !important;
    }

    body,
    p,
    .card-body,
    .about-box p,
    .services-box p,
    .review-card p {
        font-size: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .section-title,
    h2.section-title {
        font-size: 1.5rem !important;
    }
}


/* ===== RESEÑAS: AJUSTE FINAL CORRECTO ===== */

.reviews-section {
    background: linear-gradient(180deg, #6a3b95 0%, #5a2e86 100%) !important;
    background-color: #5a2e86 !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Solo cabecera de la sección en blanco */
.reviews-section > .container > .text-center .section-title,
.reviews-section > .container > .text-center p,
.reviews-section > .container > .text-center .text-muted {
    color: #ffffff !important;
}

/* Tarjetas */
.review-card {
    background: #ffffff !important;
    color: #212529 !important;
    border-radius: 16px;
}

/* Texto dentro de las tarjetas */
.review-card p {
    color: #212529 !important;
    font-size: 1.08rem !important;
    line-height: 1.6;
}

.review-card h6 {
    color: #212529 !important;
    font-size: 1.08rem !important;
    font-weight: 700;
}