/* Estilos específicos para a página inicial (home.css) */

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(0, 204, 102, 0.8) 100%), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.7) 0%, rgba(0, 204, 102, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white-color);
}

/* Seção Serviços */
.services {
    padding: 60px 0;
    background-color: var(--white-color);
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--heading-color);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    border-top: 4px solid var(--primary-color);
    position: relative;
}

.service-item:nth-child(2) {
    border-top-color: var(--accent-color);
}

.service-item:nth-child(3) {
    border-top-color: var(--warning-color);
}

.service-item:nth-child(4) {
    border-top-color: var(--info-color);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* Seção Sobre Nós */
.about {
    padding: 60px 0;
    background-color: #f0f2f5;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--heading-color);
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: var(--text-color);
}

/* Seção Depoimentos */
.testimonials {
    padding: 60px 0;
    background-color: var(--white-color);
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--heading-color);
}

.testimonial-item {
    max-width: 700px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background: var(--white-color);
    border-left: 5px solid var(--accent-color);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.testimonial-item span {
    font-weight: bold;
    color: var(--dark-color);
}

/* Seção Contato na Home */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    color: var(--white-color);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.contact-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--white-color);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .services h2, .about h2, .testimonials h2, .contact-section h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        margin: 0 10px;
    }
}

