/* ADOPCIÓN PREMIUM - MVC PURE CSS */

/* Overrides para Adopción Estilo Moderno */
.filter-section {
    padding: 20px 0;
    margin-bottom: 30px;
}

.btn-pill {
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-pill.active {
    background-color: #2980b9 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(41, 128, 185, 0.3);
}

.btn-pill-outline {
    background-color: #f8f9fa;
    color: #666;
    margin-right: 8px;
}

.btn-pill-outline:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.search-container-modern {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-input-modern {
    border-radius: 50px !important;
    padding: 12px 25px !important;
    border: 1px solid #eee !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03) !important;
    font-size: 1rem;
}

.btn-search-modern {
    border-radius: 50px !important;
    padding: 10px 30px !important;
    font-weight: 700;
    background-color: #007bff;
    border: none;
    transition: all 0.3s;
}

.btn-search-modern:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Tinder Card Pro */
.pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px;
}

.tinder-card-pro {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.tinder-card-pro:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tinder-card-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.tinder-card-pro:hover img {
    transform: scale(1.1);
}

.tinder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tinder-overlay h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.tinder-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    font-weight: 500;
}

.btn-info-circle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: rgba(0, 188, 212, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-info-circle:hover {
    background: #fff;
    color: #00bcd4;
    transform: rotate(360deg) scale(1.1);
}

.badge-type {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 5px 15px;
    border-radius: 50px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
}
