/* ---- CONFIGURAÇÕES GERAIS ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

/* ---- HEADER ---- */
.hero {
    position: relative;
    background: url('cercas-header.jpg') center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* ---- BOTÃO CTA ---- */
.cta-button {
    display: inline-block;
    background-color: #11249D;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #00332a;
}



/* ---- BENEFÍCIOS ---- */
.benefits {
    text-align: center;
    padding: 60px 20px;
    background: #eef5ee;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #11249D;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.benefit {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit i {
    font-size: 2.5rem;
    color: #11249D;
    margin-bottom: 10px;
}



/* ---- SERVIÇOS ---- */
.services {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #11249D;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.service-item {
    display: flex;
    align-items: center;
    background: #f3fbf3;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    transition: 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: #11249D;
    margin-right: 15px;
}

.service-text {
    text-align: left;
}

.service-text h3 {
    font-size: 1.2rem;
    color: #2E7D32;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.5;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

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


/* ---- PRODUTOS ---- */
.products {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #11249D;
}

/* ---- LAYOUT DOS PRODUTOS ---- */
.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 40px;
    gap: 20px;
}

.product-item.reverse {
    flex-direction: row-reverse;
}

/* ---- IMAGEM DOS PRODUTOS ---- */
.product-image {
    position: relative;
    width: 50%;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* ---- LEGENDAS SOBRE A IMAGEM ---- */
.product-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 1rem;
    border-radius: 5px;
}

/* ---- TEXTO DOS PRODUTOS ---- */
.product-text {
    width: 50%;
    text-align: left;
}

.product-text h3 {
    font-size: 1.5rem;
    color: #2E7D32;
}

.product-text p {
    font-size: 1rem;
    line-height: 1.5;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-item.reverse {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
    }

    .product-text {
        width: 100%;
    }
}



/* ---- QUEM É A CERCAS PARANÁ ---- */
.about {
    padding: 60px 20px;
    background: #f3fbf3;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    gap: 40px;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 2rem;
    color: #11249D;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image img {
        max-width: 100%;
    }
}



/* ---- FAQ ---- */
.faq {
    text-align: center;
    padding: 60px 20px;
    background: #eef5ee;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #11249D;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    background: #e8f5e9;
    border-radius: 8px;
}

.faq-question:hover {
    background: #d7edd9;
}

.faq-question i {
    transition: transform 0.3s ease-in-out;
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ---- RESPONSIVIDADE ---- */
@media (max-width: 768px) {
    .faq-container {
        width: 100%;
    }
}


/* ---- FOOTER ---- */
.footer {
    background: #2E3A2D; /* Verde escuro elegante */
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 1rem;
}

.footer a {
    color: #FFA500; /* Laranja/dourado para destacar */
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}
