.veterinarias-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #fef9f4, #f2f3f7);
    border-top: 4px solid #dab6fc;
    border-bottom: 4px solid #dab6fc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #5a3e85;
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
}

.veterinaria-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.veterinaria-card:hover {
    transform: translateY(-5px);
}

.vet-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.vet-img {
    flex: 1 1 250px;
    max-width: 300px;
    border-radius: 15px;
    object-fit: cover;
}

.vet-text {
    flex: 2;
}

.vet-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #4c2e77;
}

.vet-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.vet-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #444;
}

.vet-contact li {
    margin-bottom: 5px;
}

.vet-map {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}


.refugios-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #f4f4fa, #fdfcfa);
    border-top: 4px solid #f7c5d1;
    border-bottom: 4px solid #f7c5d1;
}

.refugios-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #91486b;
    margin-bottom: 10px;
}

.refugios-section .section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #444;
}

.refugio-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 40px;
    transition: transform 0.3s;
}

.refugio-card:hover {
    transform: translateY(-5px);
}

.refugio-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.refugio-img {
    flex: 1 1 250px;
    max-width: 300px;
    border-radius: 15px;
    object-fit: cover;
}

.refugio-text {
    flex: 2;
}

.refugio-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #742d53;
}

.refugio-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.refugio-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #444;
}

.refugio-contact li {
    margin-bottom: 5px;
}

.refugio-map {
    margin-top: 25px;
    border-radius: 10px;
    overflow: hidden;
}
