* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    padding-top: 70px;
}

/* NAVBAR */
.navbar {
    background: #1a1a2e;
    transition: background 0.3s;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}

.navbar-brand i {
    color: #ffc107;
    margin-right: 6px;
}

/* HERO */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?w=1920&q=80') center center / cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    letter-spacing: -1px;
}

.hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero .btn-warning {
    color: #1a1a2e;
}

/* SERVICE CARDS */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

/* TESTIMONIALS */
#testimonios {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card img {
    border: 3px solid #ffc107;
    object-fit: cover;
}

/* GALERÍA */
.galeria-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.galeria-img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* CONTACT CARDS */
#contacto .card {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

#contacto .card:hover {
    transform: translateY(-4px);
}

#contacto .card i {
    transition: transform 0.3s ease;
}

#contacto .card:hover i {
    transform: scale(1.15);
}

/* MAPA */
.ratio-21x9 {
    --bs-aspect-ratio: 42.857%;
}

/* FOOTER */
.footer {
    background: #1a1a2e;
}

/* SCROLL SMOOTH */
html {
    scroll-behavior: smooth;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .galeria-img {
        height: 200px;
    }
}
