/* --- RESET E ESTILOS GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
    /* Evita a barra de rolagem horizontal */
}

/* --- BARRA DE NAVEGAÇÃO (HEADER) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo img {
    height: 60px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flag-icon {
    font-size: 24px;
}

.search-box {
    background-color: #e8e8e8;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-box i {
    font-size: 18px;
    color: #333;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #bba35b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-link:hover {
    background-color: #a08c4a;
    transform: translateY(-2px);
    color: white;
}

.login-link i {
    font-size: 16px;
}

/* --- SEÇÃO PRINCIPAL (HERO) --- */
.hero {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100vh;
    width: 100%;
    position: relative;
}

/* --- LADO ESQUERDO DA HERO --- */
.hero-left {
    background-image: url('https://i.imgur.com/vHqj5jY.png');
    /* Imagem de fundo sutil */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 5%;
    position: relative;
    /* Linha ondulada no fundo */
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,202.7C960,224,1056,224,1152,197.3C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
        url('https://i.imgur.com/vHqj5jY.png');
    background-repeat: no-repeat, no-repeat;
    background-position: bottom, center;
    background-size: cover, cover;
}


.hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: #4a4a4a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #4a4a4a;
    border: 2px solid #bba35b;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #bba35b;
    color: #ffffff;
}

/* --- LADO DIREITO DA HERO --- */
.hero-right {
    background-color: #ffb901;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20rem;
    /* Tamanho gigante */
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    z-index: 1;
    user-select: none;
    /* Impede que o texto seja selecionado */
}

.fruits-image {
    position: absolute;
    width: 100vw;
    max-width: none;
    left: 0;
    right: 0;
    top: 50%;
    height: 100vh;
    object-fit: cover;
    transform: translateY(-50%);
    z-index: 5;
}

/* --- SEÇÃO DE PRODUTOS --- */
.products-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: #c7a13c;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 1.1rem;
}

/* --- GRID DE PRODUTOS --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- CARD DE PRODUTO INDIVIDUAL --- */
.product-card {
    background-color: #fffbf2;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 150px;
    margin-bottom: 20px;
    object-fit: contain;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.color-bar {
    width: 80%;
    height: 8px;
    border-radius: 5px;
    margin-top: auto; /* Empurra a barra para o fundo */
}

/* --- CORES ESPECÍFICAS PARA CADA FRUTA --- */
.color-bar.pineapple { background-color: #f9d74a; }
.color-bar.plum { background-color: #5d283c; }
.color-bar.peach { background-color: #f5a666; }
.color-bar.guava { background-color: #d15266; }
.color-bar.mango { background-color: #f7d046; }
.color-bar.passion-fruit { background-color: #d4a24a; }
.color-bar.strawberry { background-color: #ef233c; }
.color-bar.dragon-fruit { background-color: #c0007a; }


/* --- SEÇÃO DE SEGMENTOS DE NEGÓCIO --- */
.segments-section {
    padding: 100px 0;
    background-color: #fffdf7;
    position: relative;
    overflow: hidden; /* Importante para a imagem decorativa não criar scroll */
}

.decorative-strawberries {
    position: absolute;
    top: 60px;
    left: 2%;
    width: 200px;
    opacity: 0.9;
    transform: rotate(-15deg);
}

.segments-section .section-header {
    /* Centraliza o cabeçalho desta seção específica */
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.segments-section .section-header h2 .highlight {
    color: #c7a13c; /* Cor dourada para a primeira palavra */
}

/* --- LISTA DE SEGMENTOS --- */
.segments-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de tamanho igual */
    gap: 25px 50px; /* Espaçamento vertical e horizontal */
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.segment-item {
    display: flex;
    align-items: center;
    gap: 20px; /* Espaço entre o ícone e o texto */
}

.icon-container {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Garante que o ícone não encolha */
    border: 2px dashed #d4a24a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container i {
    color: #d4a24a;
    font-size: 24px;
}

.segment-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #4a4a4a;
    font-size: 1.1rem;
}

/* --- SEÇÃO DE PROCESSOS --- */
.processes-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.processes-section .section-header {
    text-align: center; /* Centraliza o cabeçalho desta seção */
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- GRID DE PROCESSOS --- */
.processes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas */
    gap: 40px;
}

.process-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden; /* Garante que a imagem e a barra de cor fiquem dentro das bordas arredondadas */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    display: flex;
    flex-direction: column; /* Organiza os itens em coluna */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-image {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
}

.process-content {
    padding: 30px 25px;
    flex-grow: 1; /* Faz esta área crescer para empurrar a barra de cor para baixo */
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #4a4a4a;
    line-height: 1.3;
}

.process-color-bar {
    width: 100%;
    height: 12px;
}

/* Cores específicas para as barras */
.process-bar-1 { background-color: #a43f4c; }
.process-bar-2 { background-color: #e6b12e; }

/* --- SEÇÃO SOCIOAMBIENTAL --- */
.socio-section {
    padding: 100px 0;
    background-color: #fdfaf5;
}

.socio-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 60px;
}

.socio-seal {
    width: 120px;
    margin-bottom: -40px; /* Efeito de sobreposição */
    margin-left: -20px;
    position: relative;
    z-index: 1;
}

.socio-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.socio-content h2 .highlight {
    color: #c7a13c;
}

.socio-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #c7a13c;
    border-radius: 50px 50px 50px 20px; /* Simula a forma orgânica */
    color: #4a4a4a;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #c7a13c;
    color: #fff;
}

.socio-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a4a4a;
}

.value-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Cores dos ícones */
.value-icon.sustainability { background: linear-gradient(135deg, #f7d046, #f9c02d); }
.value-icon.quality { background: linear-gradient(135deg, #f7b82a, #f5a666); }
.value-icon.healthiness { background: linear-gradient(135deg, #f5a666, #f08a5d); }
.value-icon.respect { background: linear-gradient(135deg, #f08a5d, #e96d71); }
.value-icon.safety { background: linear-gradient(135deg, #e96d71, #d15266); }


/* --- RODAPÉ --- */
.site-footer {
    position: relative;
}

.footer-main {
    background-color: #ffb901;
    padding: 50px 0;
    color: #4a4a4a;
    background-image: url('https://www.transparenttextures.com/patterns/simple-dashed.png'); /* Textura sutil */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #4a4a4a;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #333;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 30px;
    border-left: 1px solid rgba(74, 74, 74, 0.2);
}

.footer-col:first-child {
    border-left: none; /* Remove a borda da primeira coluna */
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info strong {
    font-weight: 700;
}

.footer-bottom {
    background-color: #4a4a4a;
    color: #f0f0f0;
    padding: 15px 0;
    font-size: 0.9rem;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #4a4a4a;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* --- RESPONSIVIDADE FINAL --- */
@media (max-width: 900px) {
    .socio-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .socio-content p {
        margin: 0 auto 30px auto;
    }
    .socio-seal {
        margin: 0 auto -40px auto;
    }
    .socio-values {
        margin-top: 40px;
    }
    .value-item {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col {
        border-left: none;
        align-items: center;
    }
}
@media (max-width: 500px) {
    .bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    .back-to-top {
        bottom: 15px;
        right: 15px;
    }
}



/* --- RESPONSIVIDADE PARA A SEÇÃO DE PROCESSOS --- */
@media (max-width: 768px) {
    .processes-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
    }

    .process-title {
        font-size: 1.5rem;
    }
}


/* --- RESPONSIVIDADE PARA A SEÇÃO DE SEGMENTOS --- */
@media (max-width: 900px) {
    .decorative-strawberries {
        /* Esconde a imagem em telas menores para não atrapalhar o layout */
        display: none;
    }

    .segments-section .container {
        width: 90%;
    }
}

@media (max-width: 600px) {
    .segments-list {
        /* Transforma o grid em uma única coluna */
        grid-template-columns: 1fr;
    }

    .segment-item span {
        font-size: 1rem;
    }
}

/* --- RESPONSIVIDADE PARA A SEÇÃO DE PRODUTOS --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* --- RESPONSIVIDADE PARA TABLETS --- */
@media (max-width: 1024px) {
    .fruits-image {
        width: 100%;
        left: 0;
        height: 90vh;
    }
}

/* --- RESPONSIVIDADE PARA DISPOSITIVOS MÓVEIS --- */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        /* Coluna única */
        height: auto;
    }

    .hero-left {
        height: 60vh;
        padding: 100px 5% 20px 5%;
        text-align: center;
        background-position: bottom, -150px center;
        /* Ajusta fundo */
    }

    .hero-left h1 {
        font-size: 4rem;
    }

    .hero-right {
        height: 40vh;
        min-height: 300px;
    }

    .fruits-image {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }

    .background-text {
        font-size: 10rem;
    }
}