/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
}

/* ===== NAV ===== */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background-color: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #1a1a1a;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 48px;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* ===== HERO ===== */
#hero {
    position: relative;
    height: 100vh;
    background-image: url('../../assets/img/mural.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1;
}

.hero-content p {
    font-size: 0.75rem;
    margin-top: 16px;
    color: #e87722;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-meta {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    width: 100%;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta-item span:first-child {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff8800;
    font-weight: 500;
}

.hero-meta-item span:last-child {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.hero-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 40px;
    background-color: #e87722;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.hero-btn:hover {
    background-color: #cf6510;
}

/* ===== NOSOTROS ===== */
#nosotros {
    padding: 100px 40px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.nosotros-contenido {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.nosotros-texto {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seccion-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e87722;
    font-weight: 600;
}

.nosotros-texto h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.1;
    letter-spacing: -1px;
}

.nosotros-texto p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    max-width: 480px;
}

.nosotros-numeros {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid #eee;
}

.numero-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 32px 40px;
    border-bottom: 1px solid #eee;
}

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

.numero {
    font-size: 3rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -2px;
    line-height: 1;
}

.numero-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    font-weight: 500;
}

/* ===== SERVICIOS ===== */
#servicios {
    padding: 100px 40px;
    background-color: #0a0a0a;
}

#servicios h2 {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e87722;
    font-weight: 600;
    margin-bottom: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: #1a1a1a;
}

.servicio-card {
    background-color: #0a0a0a;
    padding: 36px 32px;
    text-align: left;
    transition: background-color 0.2s ease;
}

.servicio-card:hover {
    background-color: #111;
}

.servicio-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.servicio-card p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.servicio-card--vacio {
    background-color: #0a0a0a;
    cursor: default;
}

.servicio-card--vacio:hover {
    background-color: #0a0a0a;
}

/* ===== UBICACION ===== */
#ubicacion {
    padding: 100px 40px;
    background-color: #fff;
    text-align: center;
}

.ubicacion-contenido {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

#ubicacion h2 {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e87722;
    font-weight: 600;
}

.ubicacion-mapa {
    overflow: hidden;
}

.ubicacion-mapa iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

#ubicacion p {
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== CONTACTO ===== */
#contacto {
    padding: 100px 40px;
    background-color: #0a0a0a;
    text-align: center;
}

.contacto-contenido {
    max-width: 900px;
    margin: 0 auto;
}

#contacto h2 {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e87722;
    font-weight: 600;
    margin-bottom: 48px;
}

.contacto-info {
    display: flex;
    justify-content: center;
    gap: 0;
}

.contacto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 48px;
    flex: 1;
    border-right: 1px solid #1a1a1a;
}

.contacto-item:last-child {
    border-right: none;
}

.contacto-item span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e87722;
    font-weight: 600;
}

.contacto-item p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background-color: #000;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #111;
}

.footer-contenido {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nombre {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.footer-sub {
    color: #444;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-copy {
    color: #333;
    font-size: 0.75rem;
    margin-top: 8px;
}

.footer-dev {
    color: #333;
    font-size: 0.75rem;
}

.footer-dev a {
    color: #e87722;
    text-decoration: none;
}

.footer-dev a:hover {
    text-decoration: underline;
}

/* ===== BOTONES FLOTANTES ===== */
.flotantes {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.flotante {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.flotante:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.wsp-flotante { background-color: #25d366; }
.ig-flotante  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    /* Nav */
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }

    /* Hero */
    .hero-content {
        padding: 32px 24px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .hero-meta {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Nosotros */
    .nosotros-contenido {
        flex-direction: column;
        gap: 48px;
    }

    .nosotros-numeros {
        border-left: none;
        border-top: 1px solid #eee;
        width: 100%;
    }

    .numero-item {
        padding: 24px 0;
    }

    /* Servicios */
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicio-card--vacio {
        display: none;
    }

    /* Ubicacion */
    .ubicacion-mapa iframe {
        height: 300px;
    }

    /* Contacto */
    .contacto-info {
        flex-direction: column;
    }

    .contacto-item {
        border-right: none;
        border-bottom: 1px solid #1a1a1a;
        padding: 28px 16px;
    }

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

    /* Flotantes */
    .flotantes {
        bottom: 16px;
        right: 16px;
    }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
    /* Nav */
    nav {
        padding: 14px 16px;
    }

    .nav-links {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    /* Hero */
    #hero {
        align-items: center;
    }

    .hero-content {
        padding: 24px 20px 36px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    .hero-content p {
        font-size: 0.65rem;
        letter-spacing: 3px;
        color: white;
    }

    .hero-meta {
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .hero-meta-item span:first-child {
        font-size: 0.6rem;
    }

    .hero-meta-item span:last-child {
        font-size: 0.8rem;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 0.7rem;
        margin-top: 24px;
    }

    /* Secciones */
    #nosotros {
        padding: 60px 20px;
    }

    .nosotros-texto h2 {
        font-size: 2rem;
    }

    #servicios {
        padding: 60px 20px;
    }

    .servicio-card {
        padding: 28px 20px;
    }

    #ubicacion {
        padding: 60px 20px;
    }

    .ubicacion-mapa iframe {
        height: 260px;
    }

    #ubicacion p {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    #contacto {
        padding: 60px 20px;
    }

    .contacto-item {
        padding: 24px 12px;
    }

    .contacto-item p {
        font-size: 0.8rem;
        word-break: break-word;
    }

    footer {
        padding: 32px 20px;
    }

    .flotantes {
        bottom: 12px;
        right: 12px;
    }

    .flotante {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}