/* ============================================================
   DETALLE ANIMAL - MOBILE FIRST
   ============================================================ */

:root {
    --fondo-oasis: #e3f2fd;
    --azul-titulo: #1976d2;
    --azul-filtro: #bbdefb;
    --azul-boton: #2196f3;
    --azul-hover: #1565c0;
    --borde-suave: #e1f5fe;
}

body {
    background-color: var(--fondo-oasis) !important;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* FIX HEADER */
.main-content {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

/* TARJETA PRINCIPAL */
.main-detail-card {
    background-color: #ffffff;
    border-radius: 20px !important;
    padding: 20px; /* Padding reducido móvil */
    border: 1px solid var(--borde-suave) !important;
}

@media (min-width: 992px) {
    .main-detail-card {
        padding: 40px;
        border-radius: 30px !important;
    }
}

/* FOTO */
.marco-foto-final {
    border-radius: 20px !important;
    overflow: hidden;
    border: 3px solid var(--azul-filtro);
    width: 100%;
    aspect-ratio: 1 / 1; /* Foto cuadrada en móvil */
}

@media (min-width: 992px) {
    .marco-foto-final {
        aspect-ratio: auto;
        height: 100%;
        min-height: 500px;
    }
}

.marco-foto-final img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTOS */
.nombre-titulo {
    color: var(--azul-titulo);
    font-weight: 800;
    font-size: 2rem;
}

.subtitulo-raza {
    color: #64b5f6;
    font-weight: 600;
    font-size: 1.1rem;
}

/* BADGES */
.info-badge-custom {
    background-color: var(--azul-filtro) !important;
    color: #1565c0 !important;
}

/* HISTORIA */
.historia-box {
    background-color: #f8fbfe;
    border-left: 5px solid var(--azul-boton);
    border-radius: 12px;
    padding: 20px;
}

/* BOTÓN CENTRO INTERACTIVO */
.btn-centro-interactive {
    display: block;
    text-decoration: none !important;
    background-color: #f1f8ff; 
    border: 2px solid var(--borde-suave);
    border-radius: 20px;
    padding: 15px;
    transition: 0.3s;
}

.btn-centro-interactive:hover {
    background-color: #fff;
    border-color: var(--azul-boton);
    transform: translateY(-2px);
}

.icon-circle-centro {
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.lbl-centro-small { color: #1565c0; font-size: 0.7rem; }
.name-centro-span { color: var(--azul-titulo); font-size: 1.1rem; }

/* MAPA */
.map-wrapper {
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--borde-suave);
}

/* BOTÓN ADOPTAR */
.btn-adoptar-custom {
    background: linear-gradient(135deg, var(--azul-boton) 0%, var(--azul-hover) 100%) !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
}

/* PROVEEDORES MODAL */
.btn-provider {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    background: white;
    transition: 0.2s;
}

.btn-provider:hover {
    background-color: var(--fondo-oasis);
    border-color: var(--azul-boton);
}