/* ============================ 
   ESTILOS GENERALES
============================ */
li {
    list-style-type: none;
    font-size: x-large;
    font-weight: 400 !important;
    color: white;
}

body {
    margin: 0 !important; 
    background: none !important;
}

/* ============================ 
   BACKGROUND
============================ */
.backImg {
    margin: 112px 0 0 0;
    background: url("https://movilidadelectrica.com/wp-content/uploads/2020/02/Concesionario.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: fit-content;
    width: fit-content;
}

/* ============================ 
   MAIN TARJETAS
============================ */
.services-header {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.main-nuestrosServicios {
    padding: 50px 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #f3eff5;
}

/* ============================ 
   TARJETAS SERVICIOS
============================ */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.cards-nuestrasTarjetas {
    flex: 0 1 calc(33.33% - 20px);
    height: 250px;
    background-color: #386194;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}


/* Hover efecto premium */
.cards-nuestrasTarjetas:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 25px rgba(0,0,0,0.4);
}

/* Parte azul superior con título centrado vertical y horizontalmente */
.card-title {
    flex: 1; /* ocupa todo el espacio superior disponible */
    display: flex;
    align-items: center; /* centra vertical */
    justify-content: center; /* centra horizontal */
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    padding: 0 15px; /* espacio lateral */
    word-wrap: break-word;
}

/* Franja gris inferior con bordes redondeados */
.card-footer {
    background-color: rgba(128, 128, 128, 0.85);
    text-align: center;
    padding: 15px 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer; /* ✅ solo aquí aparece la manita */
}


.card-footer a:hover {
    color: #ffd700; /* amarillo premium */
}

.card-footer:hover {
    background-color: rgba(100,100,100,0.9);
}


/* ============================ 
   MEDIA QUERIES
============================ */
@media (max-width: 1200px) {
    .cards-nuestrasTarjetas {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 960px) {
    .main-nuestrosServicios {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .cards-nuestrasTarjetas {
        flex: 0 1 calc(100% - 20px);
        margin: 10px;
    }
}
