/* Estilos para a seção de Agendamento */
.appointment-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.appointment-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.appointment-section .section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.appointment-section .section-header p {
    font-size: 1.1rem;
    color: #666;
}

.appointment-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.appointment-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    max-width: 450px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.appointment-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(90, 125, 154, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.appointment-icon i {
    font-size: 2rem;
    color: #5A7D9A;
}

.appointment-card h3 {
    font-size: 1.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

.appointment-card p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.appointment-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.appointment-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

.appointment-features li i {
    color: #5A7D9A;
    margin-right: 10px;
    font-size: 0.9rem;
}

.appointment-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Estilos para a galeria do consultório */
.clinic-gallery {
    margin-top: 60px;
}

.clinic-gallery h3 {
    font-size: 1.8rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .appointment-options {
        flex-direction: column;
        align-items: center;
    }
    
    .appointment-card {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    .gallery-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
