/* ========== SECCIÓN MAPA ========== */
.seccion-mapa {
    background: #f5f5f5;
    padding: 40px 0;
}

.mapa-direccion-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;

    
    gap: 30px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}


/* ========== MAPA ========== */
.mapa-wrapper {
    background: #fff;
    border: 3px solid #e74c3c;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mapa-titulo {
    background: #27ae60;
    color: #fff;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.mapa-container {
    width: 100%;
    height: 320px;
    background: #e0e0e0;
}

/* ========== DIRECCIÓN ========== */
.direccion-info {
    position: relative;
}

.direccion-titulo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
    text-align: center;
}

.direccion-contenido {
    background: #fff;
    border: 2px solid #1e3a8a;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.icono-ubicacion {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-ubicacion svg {
    width: 28px;
    height: 28px;
}

.direccion-texto {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.mascota-zerox {
    margin-top: 20px;
    text-align: center;
}

.mascota-zerox img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* ========== SERVICIO TÉCNICO ========== */
.seccion-servicio {
    background: #fff;
    padding: 50px 0;
}

.servicio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.linea-roja-servicio {
    width: 80px;
    height: 2px;
    background: #e74c3c;
}

.titulo-servicio {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ========== BANNER SERVICIO ========== */
.servicio-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b5998 100%);
    padding: 16px 30px;
    border-radius: 40px;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.25);
}

.banner-texto {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* ========== SERVICIOS INFO ========== */
.servicios-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 25px;
    align-items: center;
    margin-bottom: 45px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.servicios-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.servicio-item {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.servicio-mascota {
    text-align: center;
}

.servicio-mascota img {
    max-width: 85%;
    height: auto;
}

.servicio-descripcion {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.servicio-descripcion p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* ========== OFRECEMOS HEADER ========== */
.ofrecemos-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 35px;
}

.linea-roja-ofrecemos {
    width: 80px;
    height: 2px;
    background: #e74c3c;
}

.titulo-ofrecemos {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ========== GRID DE SERVICIOS ========== */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.servicio-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.servicio-imagen {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.servicio-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servicio-card:hover .servicio-imagen img {
    transform: scale(1.05);
}

.servicio-nombre {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #000;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
}

.servicio-lista-items {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.servicio-lista-items li {
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.servicio-lista-items li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .servicios-info,
    .servicios-grid {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .mapa-direccion-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .servicios-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .titulo-servicio {
        font-size: 22px;
    }
    
    .titulo-ofrecemos {
        font-size: 20px;
    }

    .banner-texto {
        font-size: 15px;
    }

    .servicio-banner {
        padding: 12px 20px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .servicio-header,
    .ofrecemos-header {
        gap: 15px;
    }
    
    .linea-roja-servicio,
    .linea-roja-ofrecemos {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .seccion-mapa {
        padding: 30px 0;
    }

    .mapa-container {
        height: 250px;
    }

    .direccion-contenido {
        padding: 15px;
    }

    .direccion-texto {
        font-size: 13px;
    }
    
    .icono-ubicacion {
        width: 40px;
        height: 40px;
    }
    
    .icono-ubicacion svg {
        width: 22px;
        height: 22px;
    }

    .mascota-zerox img {
        max-width: 130px;
    }
    
    .titulo-servicio {
        font-size: 18px;
    }
    
    .titulo-ofrecemos {
        font-size: 16px;
    }
}