﻿.service-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)), url('/Imagenes/fondo-web.jpg') center/cover no-repeat;
}

.hero-img {
    max-height: 450px;
    animation: float 4s ease-in-out infinite;
}

.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .service-card:hover {
        transform: translateY(-10px);
    }

    .service-card img {
        height: 230px;
        object-fit: cover;
    }

.impact-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
}

.process-step .circle {
    width: 70px;
    height: 70px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cta-section {
    background: #f8f9fa;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* =========================================
   FIX RESPONSIVE MOBILE
========================================= */

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
}
