/* ========================================
   Villas de Guadalupe - Custom Styles
   ======================================== */

/* ========================================
   Font Declarations
   ======================================== */

@font-face {
    font-family: 'Reportages';
    src: url('../Reportages-518EB.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Arial Narrow is a system font on Windows, no @font-face needed */

/* ========================================
   CSS Variables
   ======================================== */

:root {
    --primary-color: #7d634d;
    --secondary-color: #734836;
    --accent-color: #a0826d;
    --light-brown: #e8dcd0;
    --success-color: #7d634d;
    --danger-color: #734836;
    --warning-color: #d4a574;
    --info-color: #734836;
    --light-color: #ffffff;
    --dark-color: #2c2416;
    --text-muted: #5a5047;

    --font-primary: 'Reportages', 'Arial Narrow', Arial, sans-serif;
    --font-secondary: 'Arial Narrow', Arial, sans-serif;

    --border-radius: 0.75rem;
    --border-radius-lg: 1.5rem;
    --box-shadow: 0 0.25rem 0.75rem rgba(125, 99, 77, 0.15);
    --box-shadow-lg: 0 1rem 2.5rem rgba(125, 99, 77, 0.25);
    --box-shadow-xl: 0 1.5rem 4rem rgba(125, 99, 77, 0.35);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ========================================
   Base Styles
   ======================================== */

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--dark-color);
    background-color: #faf8f5;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Tipografía secundaria (Arial Narrow Italic) */
.lead {
    font-family: var(--font-secondary);
    font-style: italic;
    color: #4a4038;
}

.card-text {
    font-family: var(--font-secondary);
    font-style: italic;
    color: #5a5047;
}

.text-muted {
    color: var(--text-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.display-4,
.display-5 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(125, 99, 77, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(125, 99, 77, 0.25);
    transform: translateY(-1px);
}

.btn-warning {
    background: var(--warning-color);
    color: white;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.2);
}

.btn-warning:hover {
    background: #c49563;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.25);
    transform: translateY(-1px);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.card {
    border: 1px solid rgba(125, 99, 77, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(125, 99, 77, 0.08);
    transition: all 0.25s ease;
    background: white;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(125, 99, 77, 0.12);
    border-color: rgba(125, 99, 77, 0.15);
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    background: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(125, 99, 77, 0.15);
    transition: all 0.2s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 16px rgba(125, 99, 77, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warning-color);
    transition: width 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: white;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .hero-image {
    height: 85vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(44, 36, 22, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 3;
}

.hero-section .lead {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-size: 1.25rem;
    position: relative;
    z-index: 3;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 3;
}

/* ========================================
   Desarrollos Cards
   ======================================== */

.desarrollo-card {
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    position: relative;
    background: white;
    border: 2px solid transparent;
}

.desarrollo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--warning-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.desarrollo-card:hover::before {
    transform: scaleX(1);
}

.desarrollo-card .card-img-top {
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
}

.desarrollo-card:hover .card-img-top {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.desarrollo-card .card-body {
    position: relative;
    padding: 2rem;
    background: linear-gradient(to bottom, white 0%, #fdfcfa 100%);
}

.desarrollo-card .card-title {
    color: var(--primary-color);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.desarrollo-card .card-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warning-color);
    transition: width 0.3s ease;
}

.desarrollo-card:hover .card-title {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.desarrollo-card:hover .card-title::after {
    width: 100%;
}

.desarrollo-anterior-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(125, 99, 77, 0.15);
    background: white;
}

.desarrollo-anterior-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(125, 99, 77, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.desarrollo-anterior-card:hover::after {
    opacity: 1;
}

.desarrollo-anterior-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.desarrollo-anterior-card:hover .card-img-top {
    transform: scale(1.06) rotate(0.5deg);
    filter: brightness(1.05);
}

.desarrollo-anterior-card .card-body {
    background: white;
    padding: 1.75rem;
    position: relative;
    z-index: 1;
}

.desarrollo-anterior-card .card-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.desarrollo-anterior-card:hover .card-title {
    color: var(--secondary-color);
}

/* ========================================
   Statistics Section
   ======================================== */

.stats-section {
    background: var(--primary-color);
    color: white;
    position: relative;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    border-radius: var(--border-radius);
    padding: 1.75rem;
    position: relative;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* About Section Statistics */
.bg-primary.rounded-circle,
.bg-success.rounded-circle,
.bg-warning.rounded-circle,
.bg-info.rounded-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(125, 99, 77, 0.2);
    transition: transform 0.2s ease;
}

.bg-primary.rounded-circle:hover,
.bg-success.rounded-circle:hover,
.bg-warning.rounded-circle:hover,
.bg-info.rounded-circle:hover {
    transform: scale(1.05);
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-success {
    background: #6a8c5f !important;
}

.bg-warning {
    background: var(--warning-color) !important;
}

.bg-info {
    background: var(--secondary-color) !important;
}

/* ========================================
   Contact Form
   ======================================== */

.contact-form .form-control {
    border: 1px solid #e0d5c7;
    border-radius: var(--border-radius);
    padding: 0.75rem 0.875rem;
    transition: all 0.2s ease;
    background-color: white;
    font-size: 0.9rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(125, 99, 77, 0.1);
    background-color: white;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.contact-form .form-label {
    font-weight: 700;
    color: black;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.3px;
}

.contact-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
}

.contact-form .mb-3 {
    margin-bottom: 0.875rem !important;
}

.contact-form .mb-4 {
    margin-bottom: 1rem !important;
}

#contacto .card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--light-brown);
}

#contacto .card-header {
    background: var(--primary-color);
    padding: 1.5rem;
    border: none;
}

#contacto .card-header h3 {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 1.35rem;
}

#contacto .card-body {
    padding: 2.5rem;
    background: white;
}

/* ========================================
   Footer
   ======================================== */

footer {
    background: var(--dark-color);
    position: relative;
    margin-top: auto;
}

footer a {
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    display: inline-block;
}

footer a:hover {
    color: var(--warning-color) !important;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* ========================================
   Utilities
   ======================================== */

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.text-shadow-lg {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(to bottom, white 0%, #faf8f5 100%) !important;
}

.border-radius-lg {
    border-radius: var(--border-radius-lg);
}

.box-shadow {
    box-shadow: var(--box-shadow);
}

.box-shadow-lg {
    box-shadow: var(--box-shadow-lg);
}

.box-shadow-xl {
    box-shadow: var(--box-shadow-xl);
}

/* Section Headings */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Section Backgrounds */
.bg-light {
    background: linear-gradient(to bottom, #faf8f5 0%, #f5f1eb 100%) !important;
}

section {
    position: relative;
    overflow: hidden;
}

section.py-5 {
    padding: 4rem 0 !important;
}

/* Decorative Elements */
.decorative-shape {
    display: none;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f1eb;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

@media (max-width: 768px) {
    .hero-section .hero-image {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
        background: rgba(0, 0, 0, 0.2);
        border-radius: var(--border-radius);
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    section.py-5 {
        padding: 3rem 0 !important;
    }

    .desarrollo-card .card-img-top,
    .desarrollo-anterior-card .card-img-top {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .hero-section .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .bg-primary.rounded-circle,
    .bg-success.rounded-circle,
    .bg-warning.rounded-circle,
    .bg-info.rounded-circle {
        width: 50px;
        height: 50px;
    }

    #contacto .card-body {
        padding: 2rem 1.5rem;
    }

    .hero-section .hero-image {
        height: 60vh;
        min-height: 450px;
    }
}

/* ========================================
   Dark Mode Support (Optional)
   ======================================== */

@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #343a40;
        --dark-color: #f8f9fa;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {

    .navbar,
    footer,
    .btn,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .hero-section .hero-image {
        background-attachment: scroll !important;
        height: auto !important;
        min-height: auto !important;
    }
}

/* ========================================
   Enhanced Carousel Styles
   ======================================== */

.carousel {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.carousel-inner {
    border-radius: var(--border-radius);
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: all 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.5rem;
    width: 3rem;
    height: 3rem;
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--warning-color);
    border: 2px solid white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-caption {
    background: rgba(44, 36, 22, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    bottom: 2rem;
    left: 5%;
    right: 5%;
}

/* Thumbnail Gallery Styles */
.galeria-thumb {
    transition: all 0.3s ease;
    opacity: 0.6;
    border: 3px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.galeria-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(125, 99, 77, 0.3);
    transform: translateY(-2px);
}

.galeria-thumb:hover {
    opacity: 1;
    border-color: var(--warning-color);
    transform: scale(1.05) translateY(-2px);
}

/* ========================================
   Price Badge Styles
   ======================================== */

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--warning-color), #e8b87d);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.price-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.price-badge:hover::before {
    left: 100%;
}

/* ========================================
   Development Page Enhancements
   ======================================== */

.desarrollo-hero {
    position: relative;
}

.desarrollo-hero .hero-image {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.desarrollo-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.85) 0%, rgba(115, 72, 54, 0.75) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.info-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Icon Animations
   ======================================== */

.icon-bounce {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.icon-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ========================================
   Loading Spinner
   ======================================== */

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(125, 99, 77, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   Enhanced Hover Effects
   ======================================== */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(125, 99, 77, 0.2);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(212, 165, 116, 0.6);
}

/* ========================================
   Badge Styles
   ======================================== */

.badge {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    letter-spacing: 0.5px;
}

.badge-disponible {
    background: linear-gradient(135deg, #6a8c5f, #7da373);
    color: white;
    box-shadow: 0 2px 8px rgba(106, 140, 95, 0.3);
}

.badge-vendido {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

/* ========================================
   Section Decorations
   ======================================== */

.section-decorated {
    position: relative;
    padding: 5rem 0;
}

.section-decorated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(125, 99, 77, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

/* ========================================
   Gradient Text
   ======================================== */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--warning-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Responsive Enhancements
   ======================================== */

@media (max-width: 768px) {
    .carousel-item img {
        height: 350px;
    }

    .desarrollo-hero .hero-image {
        background-attachment: scroll;
        height: 50vh;
        min-height: 350px;
    }

    .price-badge {
        font-size: 1.25rem;
        padding: 0.6rem 1.2rem;
    }

    .galeria-thumb {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-item img {
        height: 280px;
    }

    .carousel-caption {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .info-box {
        padding: 1rem;
    }
}
