/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Seção Hero */
.hero {
    background: url('https://futurecellcampinas.com.br/images/fotos/atualizada.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: rgb(0, 0, 0);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-top: 10vh;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    animation: fadeInDown 1.5s ease;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease;
}

.hero a {
    background-color: #25D366;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.hero a:hover {
    background-color: #1ebd50;
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Seção de Serviços */
.services {
    background: url('https://futurecellcampinas.com.br/images/fotos/fundo.jpg') no-repeat center center/cover;
    padding: 60px 0;
}

.services h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #ffffff;
}

.service-item {
    width: 30%;
    display: inline-block;
    margin: 1.5%;
    padding: 20px;
    background-color: #f4f4f4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-item h4 {
    font-size: 1.5em;
    margin: 15px 0;
}

.service-item p {
    font-size: 1.1em;
    color: #666;
}

/* Avaliações */
.reviews {
    padding: 60px 0;
    background-color: #000000;
    color: rgb(255, 255, 255);
    text-align: center;
}

.reviews h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.review-item {
    margin-bottom: 20px;
    font-size: 1.6m;
}

.review-item i {
    color: #f1c40f;
    margin-right: 5px;
}

/* Seção de Informações */
.company-info {
    background-color: #ffffff;
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.company-info .info {
    width: 50%;
}

.company-info .map {
    width: 45%;
    height: 300px;
    border: 1px solid #ddd;
}

.company-info h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #000000;
}

.company-info p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

footer {
    background: #059e00cc;
    color: #fff;
    padding: 20px 0;
    text-align: start;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 100%;
    height: 300px;
}

.slideshow img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slideshow img.active {
    opacity: 1;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .hero a {
        font-size: 1em;
        padding: 10px 20px;
    }

    .service-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .services h3 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

    .hero a {
        font-size: 0.9em;
        padding: 8px 15px;
    }

    .service-item {
        width: 100%;
    }
}