/* AgroLifeBrazil — Theme Styles (Bootstrap 5 companion)
   Paleta: #485923 (primária), #F4D03F (accent), #FFFFFF, #F7F7F7
   Tipografia: Poppins / Montserrat
*/

/* Root tokens and Bootstrap variable overrides */
:root {
    --primary: #485923;
    --primary-rgb: 72, 89, 35;
    --accent: #F4D03F;
    --white: #FFFFFF;
    --light-bg: #F7F7F7;
    --text: #2b2b2b;
    --muted: #6c757d;
    --radius: 16px;
    --shadow-sm: 0 6px 16px rgba(0,0,0,.08);
    --shadow-md: 0 12px 28px rgba(0,0,0,.12);

    /* Bootstrap 5 tokens */
    --bs-primary: var(--primary);
    --bs-primary-rgb: var(--primary-rgb);
    --bs-link-color: var(--primary);
    --bs-link-hover-color: #3b4c1f;
    --bs-body-font-family: 'Poppins', 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
}

/* Base */
html { scroll-behavior: smooth; }
body {
    color: var(--text);
    background-color: #fff;
    font-family: var(--bs-body-font-family);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', var(--bs-body-font-family);
    font-weight: 700;
    color: #222;
}
.lead { color: #e9ecef; }
.text-muted { color: var(--muted) !important; }
.text-success {
    color: #485923;
}
/* Brand bits */
.navbar.bg-primary { background-color: var(--primary) !important; }
.brand-accent { color: var(--accent); }

/* Navbar */
.navbar {
    backdrop-filter: saturate(180%) blur(6px);
}
.navbar .nav-link {
    color: #e9ecef;
    font-weight: 500;
    transition: color .2s ease, opacity .2s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
    opacity: 1;
}
.navbar .btn.btn-accent {
    margin-left: .25rem;
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: .625rem 1.2rem;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-lg { padding: .8rem 1.5rem; }
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: #3b4c1f;
    border-color: #3b4c1f;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.btn-accent {
    background-color: var(--accent);
    color: #1b1b1b;
    border: 1px solid #e3c63a;
}
.btn-accent:hover {
    background-color: #e3c63a;
    color: #1b1b1b;
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

/* Sections & spacing */
.section { padding: 90px 0; }
@media (max-width: 992px) { .section { padding: 80px 0; } }
@media (max-width: 576px) { .section { padding: 60px 0; } }
.bg-light { background-color: var(--light-bg) !important; }

/* Hero Moderno - fundo com imagem */
.hero-modern {
    position: relative;
    min-height: 100vh;
    margin-top: 56px; /* compensa a navbar fixa */
    background:
        radial-gradient(circle at top right, #F4D03F20, #485923cc),
        url('../img/1.jpg') center/cover no-repeat; /* caminho corrigido */
    overflow: hidden;
}

/* Glass Overlay */
.hero-bg {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #F4D03F33;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 9s infinite ease-in-out alternate;
}

.shape-1 { top: 10%; left: -5%; }
.shape-2 { bottom: 5%; right: -5%; animation-delay: 2s; }

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-40px) scale(1.2); }
}

/* Highlight do título */
.highlight {
    color: #F4D03F;
    text-shadow: 0 0 14px #F4D03F55;
}

/* Botões modernos */
.btn-cta {
    background: #F4D03F;
    color: #485923;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cta:hover {
    background: #d8b232;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px #0003;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    transition: .3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: #485923;
    transform: translateY(-3px);
}

/* Indicadores modernos */
.indicator-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    max-width: 240px;
}

.indicator-modern:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F4D03F;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #485923;
    font-size: 26px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.indicator-modern:hover .icon-circle {
    transform: scale(1.1);
}

/* Ilustração */
.hero-img-modern {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    animation: float 8s infinite ease-in-out alternate;
}

/* Page header */
.page-header {
    padding: 120px 0 40px;
    margin-top: 56px; /* compensate fixed navbar */
    background: var(--text)
}

.page-header h1 {
    color: #fff;
}


/* Fundo de header com cores da marca */
.bg-hero-brand {
    background:
        radial-gradient(1000px 600px at 12% 12%, rgba(244,208,63,.22), rgba(244,208,63,0) 60%),
        radial-gradient(800px 500px at 88% 25%, rgba(72,89,35,.12), rgba(72,89,35,0) 65%),
        var(--light-bg);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

/* Feature cards (Por Que Escolher) */
.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
}
.feature-card i {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: .5rem;
}
.feature-card h5 { margin-bottom: .35rem; }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(72,89,35,0.12);
  border-color: rgba(244,208,63,0.6);
}
/* Commodity cards */
.commodity-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    height: 100%;
}
.commodity-card .commodity-img {
    width: 88px; height: 88px;
    object-fit: contain;
    margin-bottom: .75rem;
}
.commodity-card h5 { margin-bottom: .25rem; }
.commodity-card p { color: var(--muted); }
.commodity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #e6e6e6;
}

/* Seção */
.news-modern {
    padding: 90px 0;
}

/* Badge */
.badge-modern {
    background: #F4D03F;
    color: #485923;
    font-weight: 600;
    border-radius: 50px;
}

/* Botão “Ver mais” */
.btn-modern-outline {
    padding: 10px 20px;
    border-radius: 40px;
    border: 2px solid #485923;
    color: #485923;
    font-weight: 600;
    transition: .3s ease;
}

.btn-modern-outline:hover {
    background: #485923;
    color: #fff;
    transform: translateY(-3px);
}

/* Card modernão */
.news-card-modern {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.07);
    transition: .35s ease;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 35px rgba(0,0,0,0.12);
}

/* Imagem */
.news-card-modern .img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.news-card-modern:hover img {
    transform: scale(1.15);
}

/* Overlay gradiente */
/* Evita que o overlay bloqueie cliques */
.news-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    pointer-events: none;
}

/* Data */
.news-date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.85);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #485923;
}

/* Conteúdo */
.news-content {
    padding: 22px;
}

.news-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.news-content p {
    color: #6e6e6e;
    font-size: 15px;
    margin-bottom: 18px;
}

/* Botão interno */
.btn-news {
    color: #485923;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: .3s ease;
}

.btn-news:hover {
    color: #2c3618;
    transform: translateX(4px);
}

/* Seta animada */
.arrow-anim {
    transition: .3s ease;
}

.btn-news:hover .arrow-anim {
    transform: translateX(6px);
}

/* Stats pills (Quem Somos) */
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--light-bg);
    border: 1px solid #eee;
    border-radius: 999px;
    padding: .5rem .9rem;
    font-weight: 600;
    color: #333;
}
.stat-pill i { color: var(--primary); }

/* Badges */
.badge.bg-accent {
    background-color: var(--accent) !important;
    color: #1b1b1b !important;
    border: 1px solid #e3c63a;
    border-radius: 999px;
    font-weight: 600;
}

/* Tables (Ficha Técnica) */
.table-specs {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.table-specs th {
    width: 36%;
    background: #fbfbfb;
    color: #333;
}
.table-specs tbody tr:hover {
    background-color: #fcfcfc;
}

/* Carousel tweaks */
.carousel { border-radius: var(--radius); }
.carousel-caption h5 { font-weight: 700; }
.carousel-caption p { font-weight: 500; }

/* Images */
img.rounded-4 { border-radius: var(--radius) !important; }
img.shadow { box-shadow: var(--shadow-sm) !important; }

/* Footer */
.footer  {
    background: var(--text);
}
.footer h5, .footer h6 { color: #fff; }
.footer .text-white-50 { color: rgba(255,255,255,.75) !important; }
.footer a.text-white-50:hover { color: #fff !important; }

/* Links */
a { text-decoration: none; }
a:hover { text-decoration: none; }

/* Utilities */
.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}


.about-modern {
    padding: 90px 0;
    position: relative;
}

.highlight-text {
    color: #F4D03F;
}

.text-success {
    color: #485923;
}

.image-wrap {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #485923;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-badge i {
    font-size: 20px;
    color: #F4D03F;
}

/* Botão */
.btn-cta-primary {
    background: #485923;
    color: #fff;
    border-radius: 40px;
    padding: 12px 32px;
    transition: 0.3s ease;
}

.btn-cta-primary:hover {
    background: #3a471d;
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* Cards */
.feature-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 34px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #F4D03F;
    color: #485923;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 12px;


}


.btn-modern {
    background: linear-gradient(135deg, #485923, #3a4c1d);
    color: #fff;
    padding: 12px 34px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
    border: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.btn-modern:hover {
    background: linear-gradient(135deg, #5a682c, #485923);
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

/* Ícone de seta com animação suave */
.btn-modern .arrow-anim {
    transition: transform 0.35s ease;
    font-size: 18px;
}

.btn-modern:hover .arrow-anim {
    transform: translateX(6px);
}


/* Área geral */
.commodities-modern {
    padding: 80px 0;
}

/* Habilita cliques na seção de commodities mesmo com bg-shape-gradient */
.commodities-modern.bg-shape-gradient {
    pointer-events: auto;
}

/* Botão "Ver Todas" */
.btn-modern-outline {
    padding: 10px 20px;
    border-radius: 40px;
    border: 2px solid #485923;
    color: #485923;
    font-weight: 600;
    transition: .3s ease;
}

.btn-modern-outline:hover {
    background: #485923;
    color: #fff;
    transform: translateY(-3px);
}

/* Card moderno */
.commodity-card-modern {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    position: relative;
}

.commodity-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

/* Imagem */
.commodity-card-modern .img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    pointer-events: none;
}

.commodity-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    transform: scale(1.05);
}

.commodity-card-modern:hover img {
    transform: scale(1.13);
}

/* Gradiente elegante */
.overlay-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

/* Correções para links clicáveis nos cards */
.commodity-card-modern .overlay-gradient {
    pointer-events: none;
}

/* Conteúdo */
.commodity-card-modern .content {
    position: relative;
    z-index: 2;
    padding: 25px;
    pointer-events: auto;
}

.commodity-card-modern h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.commodity-card-modern p {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 18px;
}

/* Botão interno */
.btn-modern {
    background: #485923;
    color: #fff;
    padding: 10px 26px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: .3s ease;
}

.btn-modern:hover {
    background: #3e4b1f;
    transform: translateY(-3px);
}

/* Seta animada */
.arrow-anim {
    transition: transform 0.25s ease;
}

.btn-modern:hover .arrow-anim {
    transform: translateX(6px);
}

/* Geral */
.why-modern {
    padding: 90px 0;
}

/* Badge moderna */
.badge-modern {
    background: #F4D03F;
    border-radius: 50px;
    font-weight: 600;
    color: #485923;
}

/* Highlight da marca */
.highlight {
    color: #F4D03F;
}

/* Cards */
.why-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 25px rgba(0,0,0,0.06);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.1);
}

/* Moldura do ícone */
.icon-frame {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #F4D03F, #cfae35);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #485923;
    font-size: 28px;
    box-shadow: 0 6px 12px rgba(244, 208, 63, 0.4);
    transition: .3s ease;
}

.why-card:hover .icon-frame {
    transform: scale(1.12);
    box-shadow: 0 8px 18px rgba(244, 208, 63, 0.55);
}

/* Títulos e textos */
.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: #6e6e6e;
    font-size: 15px;
    margin: 0;
}


/* Seção */
.global-map-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Badge */
.badge-modern {
    background: #F4D03F;
    color: #485923;
    border-radius: 50px;
    font-weight: 600;
}

/* Mapa */
.map-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.world-map {
    width: 100%;
    opacity: 0.95;
}

/* Pontos marcados */
.map-point {
    width: 16px;
    height: 16px;
    background: #F4D03F;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 15px #F4D03F;
    cursor: pointer;
    animation: pulse 2s infinite ease-in-out;
}

/* Tooltip básica */
.map-point::after {
    content: attr(data-country);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #485923;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
}

.map-point:hover::after {
    opacity: 1;
    top: -38px;
}

/* Animação pulse */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px #F4D03F; }
    50% { transform: scale(1.25); box-shadow: 0 0 20px #F4D03F; }
    100% { transform: scale(1); box-shadow: 0 0 10px #F4D03F; }
}

/* POSIÇÕES DOS PONTOS – ajuste fino conforme seu mapa */
.point-usa { top: 38%; left: 28%; }
.point-brazil { top: 62%; left: 34%; }
.point-europe { top: 32%; left: 54%; }
.point-china { top: 42%; left: 66%; }
.point-india { top: 50%; left: 61%; }
.point-uae { top: 48%; left: 57%; }



/* CTA Moderna */
.cta-modern {
    padding: 90px 0;
    background: linear-gradient(135deg, #485923, #3b4a1b);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

/* Shapes animados para profundidade */
.cta-modern::before,
.cta-modern::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #F4D03F33;
    filter: blur(60px);
    animation: float 8s infinite ease-in-out alternate;
}

.cta-modern::before {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -80px;
}

.cta-modern::after {
    width: 240px;
    height: 240px;
    bottom: -60px;
    right: -40px;
    animation-delay: 2s;
}

/* Texto */
.cta-subtitle {
    font-size: 17px;
}

/* Botão 1 (principal) */
.btn-cta-main {
    background: #F4D03F;
    color: #485923;
    padding: 12px 32px;
    font-weight: 700;
    border-radius: 40px;
    transition: .3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-cta-main:hover {
    background: #e0be33;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.22);
}

/* Botão 2 (outline WhatsApp) */
.btn-cta-outline {
    border: 2px solid #fff;
    padding: 12px 32px;
    border-radius: 40px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: .3s ease;
}

.btn-cta-outline:hover {
    background:#fff;
    color: #485923;
    transform: translateY(-4px);
}

/* Animação de fundo */
@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-30px) scale(1.15); }
}


.mv-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(72, 89, 35, 0.1);
}
.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(72, 89, 35, 0.15);
}
.icon-wrap {
  background: rgba(244, 208, 63, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: background 0.3s ease;

}
.icon-wrap i {
  color: #485923;
}
.mv-card:hover .icon-wrap {
  background: rgba(244, 208, 63, 0.2);
}
.bg-gradient {
  pointer-events: none;
}

.story-modern {
  background-color: #f8f9fa;
}
.bg-gradient-overlay {
  background: radial-gradient(circle at 20% 40%, rgba(72, 89, 35, 0.08), transparent 70%),
              linear-gradient(135deg, rgba(244, 208, 63, 0.08), transparent 60%);
  z-index: 0;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}
.image-frame img {
  transition: transform 0.5s ease;
}
.image-frame:hover img {
  transform: scale(1.05);
}
.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(72, 89, 35, 0.9);
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-badge i {
  font-size: 1.1rem;
  color: #f4d03f;
}

.stat-pill-modern {
  background: #fff;
  border: 1px solid rgba(72, 89, 35, 0.2);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 0.9rem;
  color: #485923;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.stat-pill-modern i {
  font-size: 1rem;
  color: #485923;
}
.stat-pill-modern:hover {
  background: #f4d03f;
  color: #1a1a1a;
  border-color: #f4d03f;
  transform: translateY(-3px);
}

.btn-modern {
  background-color: #485923;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(72, 89, 35, 0.3);
}
.btn-modern:hover {
  background-color: #f4d03f;
  color: #1a1a1a;
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.3);
}


.features-modern {
  background-color: #f9f9f7;
  position: relative;
}

.bg-shape-gradient {
  background: radial-gradient(circle at 15% 25%, rgba(244,208,63,0.15), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(72,89,35,0.12), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
/* Permitir cliques quando .bg-shape-gradient for aplicada a uma seção/contêiner */
.section.bg-shape-gradient {
  pointer-events: auto;
}

.feature-card-modern {
  position: relative;
  background: #fff;
  border: 1px solid rgba(72,89,35,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(72,89,35,0.05);
  transition: all 0.4s ease;
  z-index: 1;
}
.feature-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(72,89,35,0.12);
  border-color: rgba(244,208,63,0.6);
}

.feature-card-modern h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.feature-card-modern p {
  color: #6c757d;
  font-size: 0.95rem;
}

/* Ícones redondos (mantém seu estilo) */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #F4D03F;
  color: #485923;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 15px;
  box-shadow: 0 4px 15px rgba(244,208,63,0.3);
  transition: all 0.4s ease;
}
.feature-card-modern:hover .icon-box {
  background: #485923;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(72,89,35,0.3);
}

/* Responsividade */
@media (max-width: 991px) {
  .feature-card-modern {
    padding: 1.8rem;
  }
}