/* ========================================
   HOME PAGE STYLES
   ======================================== */

:root {
    --primary-color: #4c8f10;
    --dark-bg: #151515;
    --white: #ffffff;
    --black: #000000;
    --font-lato: 'Lato', sans-serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

/* ========================================
   HERO SECTION (Placeholder)
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-placeholder {
    background: linear-gradient(135deg, #4c8f10 0%, #2d5509 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   SEÇÃO: DO BRASIL PARA O MUNDO
   ======================================== */
#sobre-produtos {
    background-color: #ffffff;
    padding: 80px 0;
}

.content-text {
    padding-right: 30px;
}

.section-title {
    font-family: var(--font-lato);
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.section-description {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

/* Cards de Produtos */
.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* ========================================
   SEÇÃO: DIFERENCIAIS
   ======================================== */
#diferenciais {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.diferencial-card {
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f8e8;
    border-radius: 50%;
}

.diferencial-icon .icon-img {
    width: 50px;
    height: 50px;
}

.diferencial-title {
    font-family: var(--font-lato);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.diferencial-description {
    font-family: var(--font-lato);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   SEÇÃO VERDE: LEVAMOS O MELHOR DO BRASIL
   ======================================== */
.secao-verde {
    background-color: #4c8f10;
    background-image: url('../images/secao-verde-fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: var(--white);
}

.verde-image-wrapper {
    position: relative;
}

/* Badge 10 Anos */
.badge-anos {
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.badge-icon {
    background-color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -40px;
    right: -40px;
}

.globo-icon {
    width: 50px;
    height: 50px;
}

.badge-text {
    background-color: #FFB800;
    padding: 20px 30px;
    color: var(--black);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.badge-label {
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.badge-number {
    font-family: var(--font-lato);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin: 5px 0;
}

.badge-subtitle {
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.verde-image img {
    width: 100%;
    height: auto;
}

/* Conteúdo de Texto */
.verde-title {
    font-family: var(--font-lato);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.verde-description {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
}

/* Lista de Benefícios */
.verde-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.verde-list-item {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    color: #4c8f10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Botões */
.verde-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-verde-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 32px;
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-verde-outline:hover {
    background-color: var(--white);
    color: #4c8f10;
}

.btn-verde-primary {
    background-color: var(--white);
    border: 2px solid var(--white);
    color: #4c8f10;
    padding: 12px 32px;
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-verde-primary:hover {
    background-color: transparent;
    color: var(--white);
}

/* ========================================
   DIVISOR AZUL
   ======================================== */
.divisor-azul {
    background: linear-gradient(95.3632deg, rgb(15, 33, 80) 24.578%, rgb(47, 69, 179) 99.521%);
    padding: 50px 0;
}

.divisor-texto {
    font-family: var(--font-lato);
    font-size: 42px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

/* ========================================
   CASES DE SUCESSO
   ======================================== */
#cases {
    background-color: var(--white);
}

.cases-label {
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
}

.cases-title {
    font-family: var(--font-lato);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
}

/* Cards de Cases */
.case-card {
    background-color: #f9f9f9;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 14px solid var(--primary-color);
    transition: transform 0.3s ease;
}

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

.case-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-content {
    padding: 30px 40px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-title {
    font-family: var(--font-lato);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

/* ========================================
   LOGOS DE PARCEIROS
   ======================================== */
#parceiros {
    background-color: #f8f9fa;
}

.logo-box {
    background-color: #d9d9d9;
    height: 103px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.logo-box:hover {
    background-color: #c5c5c5;
}

.logo-placeholder {
    font-family: var(--font-lato);
    font-size: 32px;
    font-weight: 800;
    color: #929292;
    text-align: center;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.46);
    z-index: 1;
}

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

/* Texto CTA */
.cta-text-wrapper {
    padding: 20px 0;
}

.cta-decoracao {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0.3;
}

.cta-decoracao-1 {
    top: -40px;
    left: -50px;
}

.cta-decoracao-2 {
    bottom: -40px;
    left: 150px;
}

.cta-title {
    font-family: var(--font-lato);
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Card CTA */
.cta-card {
    background-color: var(--white);
    padding: 60px 50px;
    border-radius: 0;
    text-align: center;
    position: relative;
}

.cta-card-title {
    font-family: var(--font-lato);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-card-text {
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: 400;
    color: #767676;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-cta {
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-lato);
    font-size: 24px;
    font-weight: 400;
    padding: 15px 40px;
    border-radius: 5px;
    border: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #2d5f2e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 127, 63, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    #sobre-produtos {
        padding: 60px 0;
    }

    .secao-verde {
        padding: 60px 0;
    }

    .verde-title {
        font-size: 28px;
    }

    .badge-anos {
        bottom: -20px;
        left: -20px;
    }

    .badge-icon {
        width: 70px;
        height: 70px;
        top: -35px;
        right: -35px;
    }

    .globo-icon {
        width: 45px;
        height: 45px;
    }

    .badge-text {
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 60px;
    }

    #diferenciais {
        padding: 60px 0;
    }

    .divisor-texto {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .product-card {
        height: 300px;
    }

    .cases-title {
        font-size: 36px;
    }

    .case-title {
        font-size: 24px;
    }

    .case-content {
        padding: 25px 30px;
    }

    .case-image {
        height: 250px;
    }

    .cta-final {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 48px;
    }

    .cta-card-title {
        font-size: 32px;
    }

    .cta-card-text {
        font-size: 20px;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-decoracao {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .hero-placeholder {
        min-height: 300px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 15px;
    }

    .product-card {
        height: 250px;
    }

    .verde-title {
        font-size: 24px;
    }

    .badge-anos {
        bottom: -15px;
        left: -15px;
    }

    .badge-icon {
        width: 60px;
        height: 60px;
        top: -30px;
        right: -30px;
    }

    .globo-icon {
        width: 35px;
        height: 35px;
    }

    .badge-text {
        padding: 12px 16px;
    }

    .badge-number {
        font-size: 48px;
    }

    .badge-label,
    .badge-subtitle {
        font-size: 12px;
    }

    .diferencial-icon {
        width: 60px;
        height: 60px;
    }

    .diferencial-icon .icon-img {
        width: 35px;
        height: 35px;
    }

    .diferencial-title {
        font-size: 18px;
    }

    .diferencial-description {
        font-size: 14px;
    }

    .divisor-texto {
        font-size: 24px;
    }

    .cases-label {
        font-size: 18px;
    }

    .cases-title {
        font-size: 28px;
    }

    .case-title {
        font-size: 20px;
    }

    .case-content {
        padding: 20px 25px;
    }

    .case-image {
        height: 200px;
    }

    .logo-placeholder {
        font-size: 24px;
    }

    .logo-box {
        height: 80px;
    }

    .cta-final {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-card-title {
        font-size: 24px;
    }

    .cta-card-text {
        font-size: 16px;
    }

    .btn-cta {
        font-size: 18px;
        padding: 12px 30px;
    }

    .cta-card {
        padding: 30px 20px;
    }

    .cta-decoracao {
        width: 100px;
    }

    .cta-decoracao-1 {
        top: -20px;
        left: -20px;
    }

    .cta-decoracao-2 {
        bottom: -20px;
        left: 80px;
    }
}
