/* BASE */
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #fafafa;
    color: #222;
}

/* HERO CON VIDEO */
.hero {
    position: relative;
    height: 55vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
    animation: fadeIn 1.2s ease-out;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin: 0;
}

.hero-content p {
    margin-top: 10px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* SERVICIOS */
.services {
    padding: 30px 20px;
}

.services h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.icon {
    font-size: 2.4rem;
}

.text h3 {
    margin: 0;
    font-size: 1.3rem;
}

.text p {
    margin: 5px 0 0;
    color: #555;
    font-size: 0.95rem;
}

/* CORPORATE */
.corporate {
    background: #111;
    color: #ddd;
    padding: 30px 20px;
    text-align: center;
}

/* FOOTER */
footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
}

/* ANIMACIÓN */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* DESKTOP */
@media (min-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .services {
        max-width: 1100px;
        margin: auto;
    }
}

