/**
 * Dr. Servicios - Footer Component Styles
 */

/* Footer Styles */
footer {
    background: #1f2937;
    color: white;
    padding: 32px 16px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-text {
    color: #d1d5db;
    margin-bottom: 6px;
    font-size: 15px;
}

.footer-small {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 6px;
}

.footer-email {
    color: #4ADE80;
    text-decoration: underline;
}

.footer-email:hover {
    color: #22c55e;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    font-size: 13px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}
