/* * ARQUIVO: home.css
 * DESCRIÇÃO: Estilos específicos para a página inicial (home)
 */

/* Banner principal */
.banner {
    width: 100%;
    height: 300%;
}

.banner-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #E0E0E0;
    border-radius: 8px;
}

/* Seção de acompanhamento do serviço */
.service-track {
    background: #000000;
    color: #ffffff;
    padding: 20px 20px; /* Reduzido o padding para deixar mais compacto */
    text-align: center;
}

.service-track-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    font-size: 40px; /* Ícone menor */
    color: #FFC107;
    margin-bottom: 10px;
}

.service-track h2 {
    font-size: 24px; /* Título menor */
    margin-bottom: 8px;
    font-weight: bold;
}

.service-track p {
    font-size: 14px; /* Texto menor */
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 600px;
}

/* Seção de produtos */
.products-section {
    padding: 40px 20px;
    text-align: center;
}

.products-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.products-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.product-card i {
    font-size: 45px;
    color: #FFC107;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
}

/* Seção de localização */
.location {
    padding: 30px 20px;
}

.location h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.location-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-container iframe {
    flex: 1;
    min-width: 250px;
    height: 250px;
    border-radius: 8px;
}

.location-info {
    flex: 1;
    min-width: 250px;
    padding: 20px 0;
}

.location-info h3 {
    font-size: 22px;
    color: #FFC107;
    margin-bottom: 15px;
}

.location-info p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.hours {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.hours i {
    color: #FFC107;
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .products-container,
    .location-container {
        flex-direction: column;
        align-items: center;
    }

    .product-card,
    .location-container iframe,
    .location-info {
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-image {
        height: 200px;
    }
}