/* ==========================================================================
   POLIBEE - Style Sheet
   Autor: GPT-4o
   ========================================================================== */

/* Paleta de Cores (Definidas como variáveis CSS para fácil acesso) */
:root {
    --dark-green: #101B15;    /* Verde Escuro, para fundo e textos principais */
    --medium-green: #142C1C;  /* Verde Médio, para destaques e ícones */
    --bright-yellow: #FFB304; /* Amarelo Vibrante, para botões, destaques e links ativos */
    --light-yellow: #FFF09B;  /* Amarelo Claro, para seções de fundo suave */
    --white: #FFFFFF;         /* Branco, para textos e fundos claros */
    --text-color-dark: #333333; /* Cor padrão para textos escuros */
    --text-color-light: #555555; /* Cor para textos mais suaves */
    --dark-green-hover: #274233; /* NOVO: Cor de hover/ativo para a nav bar */
}

/* Base e Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Garante que padding e border não aumentam o tamanho do elemento */
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--white);
    overflow-x: hidden; /* Previne barras de rolagem horizontais indesejadas por animações */
}

a {
    text-decoration: none;
    color: inherit; /* Links herdam a cor do texto pai por padrão */
}

ul {
    list-style: none; /* Remove marcadores de lista padrão */
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove o espaço extra abaixo das imagens */
}

/* Contêiner Geral (Centraliza o conteúdo e adiciona padding lateral) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NOVO: Padding para seções internas */
.section-padding {
    padding: 100px 0;
}

/* NOVO: Estilo para parágrafos dentro de seções de conteúdo */
.section-padding p {
    text-align: justify; /* Garante justificação em todos os parágrafos de conteúdo */
}


/* Títulos de Seção (Estilo padrão para h2 das seções principais) */
.section-title {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--bright-yellow);
    position: relative;
    padding-bottom: 10px;
    letter-spacing: -1px; /* Ajuste para melhor leitura em títulos grandes */
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px; /* Largura da linha */
    height: 5px;  /* Espessura da linha */
    background-color: var(--bright-yellow);
    border-radius: 2.5px; /* Bordas arredondadas para a linha */
}

/* Botões (Estilos reutilizáveis para calls to action) */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px; /* Botões com cantos arredondados */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease; /* Transição suave para hover */
    border: 2px solid transparent; /* Borda transparente para consistência no hover */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Sombra suave */
}

.primary-btn {
    background-color: var(--bright-yellow);
    color: var(--dark-green);
    border-color: var(--bright-yellow);
}

.primary-btn:hover {
    background-color: var(--dark-green);
    color: var(--bright-yellow);
    border-color: var(--dark-green);
    transform: translateY(-3px); /* Efeito de elevação */
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.secondary-btn {
    background-color: var(--dark-green);
    color: var(--white);
    border-color: var(--dark-green);
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--medium-green);
    border-color: var(--medium-green);
    font-size: 0.9em;
    padding: 10px 20px;
    box-shadow: none; /* Remove sombra para botões menores */
}

.tertiary-btn:hover {
    background-color: var(--medium-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Efeito "pulse" para um botão CTA no Hero */
.primary-btn.pulse-effect {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 179, 4, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 179, 4, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 179, 4, 0); }
}


/* ==========================================================================
   Cabeçalho e Navegação
   ========================================================================== */
.header {
    background-color: var(--bright-yellow);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.header .logo img {
    height: 55px;
    transition: transform 0.3s ease;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
}

.header .logo img:hover {
    transform: scale(1.05);
}

.navbar .nav-list {
    display: flex;
    gap: 35px;
}

.navbar .nav-list .nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1.15em;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito de Sublinhado e Mudança de Cor no Hover/Ativo */
.navbar .nav-list .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: var(--dark-green-hover);
    transition: width 0.3s ease;
    border-radius: 1.5px;
}

.navbar .nav-list .nav-link:hover {
    color: var(--dark-green-hover);
}

.navbar .nav-list .nav-link:hover::after,
.navbar .nav-list .nav-link.active::after {
    width: 100%;
}

.navbar .nav-list .nav-link.active {
    color: var(--dark-green-hover);
}

/* Botão de Hambúrguer (Escondido por padrão no desktop) */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2em;
    cursor: pointer;
    z-index: 1001;
}

/* ==========================================================================
   Menu Mobile (Overlay)
   ========================================================================== */
.mobile-menu-overlay {
    display: none; /* Oculta o menu mobile por padrão (em desktop) */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 27, 21, 0.9);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background-color: var(--dark-green);
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
    text-align: center;
}

.mobile-menu-content .close-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
}

.mobile-menu-content .mobile-nav-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-content .mobile-nav-list .nav-link {
    color: var(--white);
    font-size: 1.3em;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-content .mobile-nav-list .nav-link:hover,
.mobile-menu-content .mobile-nav-list .nav-link.active {
    color: var(--bright-yellow);
    transform: translateX(5px);
}

/* ==========================================================================
   Seção Hero (Página Inicial)
   ========================================================================== */
.hero-section {
    background: url('../img/apicultor.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero-text-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-content {
    z-index: 10;
    max-width: 100%;
    padding: 0;
}

.hero-content h1 {
    font-size: 4.2em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--bright-yellow);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    animation: fadeInDown 1.5s ease-out;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
    opacity: 0;
    color: var(--white);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animações de Abelhas Voando */
.flying-bee {
    position: absolute;
    width: 60px;
    height: auto;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    opacity: 0.9;
    z-index: 5;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

.hero-section .flying-bee.bee-1 {
    top: 15%;
    left: 10%;
    animation-name: flyBee1;
    animation-delay: 0s;
}

.hero-section .flying-bee.bee-2 {
    bottom: 10%;
    right: 15%;
    animation-name: flyBee2;
    animation-delay: 2s;
    transform: scaleX(-1);
}

.about-brief-section .flying-bee.bee-3 {
    top: 5%;
    left: 10%;
    animation-name: flyBee3;
    animation-delay: 1s;
}

.about-brief-section .flying-bee.bee-4 {
    bottom: 10%;
    right: 5%;
    animation-name: flyBee4;
    animation-delay: 3s;
    transform: scaleX(-1);
}

/* NOVO: Abelhas voando nas páginas de detalhes de abelhas */
.bee-detail-section .flying-bee.bee-5 {
    top: 10%;
    right: 5%;
    animation-name: flyBee5;
    animation-delay: 0.5s;
    width: 70px;
}
.bee-detail-section .flying-bee.bee-6 {
    bottom: 15%;
    left: 8%;
    animation-name: flyBee1; /* Reutilizando animação */
    animation-delay: 1.5s;
    width: 50px;
    transform: scaleX(-1);
}

/* Keyframes para as rotas das abelhas */
@keyframes flyBee1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(80px, -40px) rotate(15deg); }
    50% { transform: translate(160px, 0) rotate(0deg); }
    75% { transform: translate(80px, 40px) rotate(-15deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes flyBee2 {
    0% { transform: translate(0, 0) scaleX(-1) rotate(0deg); }
    25% { transform: translate(-80px, 40px) scaleX(-1) rotate(-15deg); }
    50% { transform: translate(-160px, 0) scaleX(-1) rotate(0deg); }
    75% { transform: translate(-80px, -40px) scaleX(-1) rotate(15deg); }
    100% { transform: translate(0, 0) scaleX(-1) rotate(0deg); }
}

@keyframes flyBee3 {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -30px) rotate(10deg); }
    66% { transform: translate(100px, 0) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(-10deg); }
}

@keyframes flyBee4 {
    0% { transform: translate(0, 0) scaleX(-1) rotate(0deg); }
    33% { transform: translate(-50px, 30px) scaleX(-1) rotate(-10deg); }
    66% { transform: translate(-100px, 0) scaleX(-1) rotate(0deg); }
    100% { transform: translate(0, 0) scaleX(-1) rotate(10deg); }
}

@keyframes flyBee5 {
    0% { transform: translate(0, 0) rotate(0deg); }
    20% { transform: translate(30px, -15px) rotate(5deg); }
    40% { transform: translate(60px, 0) rotate(0deg); }
    60% { transform: translate(30px, 15px) rotate(-5deg); }
    80% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(0, -15px) rotate(5deg); }
}

/* ==========================================================================
   Seção Breve "Quem Somos" (Página Inicial)
   ========================================================================== */
.about-brief-section {
    padding: 100px 0;
    background-color: var(--light-yellow);
    position: relative;
    overflow: hidden;
}

.about-brief-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: url('../img/favo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.1;
    transform: rotate(45deg);
    pointer-events: none;
}

.about-brief-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-brief-content .text-content {
    flex: 1;
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--text-color-light);
}

.about-brief-content .text-content p {
    margin-bottom: 25px;
}

.about-brief-content .image-content {
    flex: 1;
    text-align: center;
    position: relative;
}

.about-brief-content .image-content .animated-colmeia {
    max-width: 450px;
    animation: bounceColmeia 3.5s ease-in-out infinite alternate;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.2));
}

@keyframes bounceColmeia {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}


/* ==========================================================================
   Seção Breve "Benefícios" (Página Inicial)
   ========================================================================== */
.benefits-brief-section {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.benefit-item {
    flex: 0 0 calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
    min-width: 280px;

    background-color: var(--light-yellow);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
    background-color: var(--bright-yellow);
    color: var(--dark-green);
}

.benefit-item:hover h3 {
    color: var(--dark-green);
}

.benefit-item img {
    height: 90px;
    margin: 0 auto 25px;
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.15));
    transition: filter 0.3s ease;
}

.benefit-item:hover img {
    filter: brightness(0.8) drop-shadow(3px 3px 5px rgba(0,0,0,0.2));
}

.benefit-item h3 {
    color: var(--medium-green);
    font-size: 1.5em;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.benefit-item:hover h3 {
    color: var(--dark-green);
}

.benefit-item p {
    font-size: 1em;
    color: var(--text-color-light);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.benefit-item:hover p {
    color: var(--dark-green);
}


/* ==========================================================================
   Seção de Chamada para Ação Final (Página Inicial)
   ========================================================================== */
.call-to-action {
    background-color: var(--bright-yellow);
    padding: 70px 0;
    text-align: center;
    color: var(--dark-green);
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.1);
}

.call-to-action p {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Rodapé
   ========================================================================== */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 70px 0;
    font-size: 0.95em;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3));
}

.footer-nav h3, .footer-contact h3 {
    color: var(--bright-yellow);
    margin-bottom: 20px;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--bright-yellow);
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact .footer-icon {
    margin-right: 10px;
    color: var(--bright-yellow);
    font-size: 1.1em;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-icons img {
    height: 40px;
    width: 40px;
    transition: transform 0.3s ease;
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

.social-icons img:hover {
    transform: scale(1.15) rotate(5deg);
}


/* ==========================================================================
   Páginas Internas (Ex: Nossas Agentes, Quem Somos, Detalhes Abelhas)
   ========================================================================== */
.page-hero {
    background: linear-gradient(rgba(16, 27, 21, 0.75), rgba(16, 27, 21, 0.75));
    background-size: cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 -5px 15px rgba(0,0,0,0.1);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/favo_cima.png') no-repeat bottom right;
    background-size: 400px;
    opacity: 0.08;
    pointer-events: none;
    animation: rotateHoneyComb 40s linear infinite;
}

@keyframes rotateHoneyComb {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(360deg) scale(1.05); }
}


.page-hero h1 {
    font-size: 3.5em;
    margin-bottom: 25px;
    color: var(--bright-yellow);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==========================================================================
   Página "Quem Somos"
   ========================================================================== */
.who-we-are-section .text-content {
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--text-color-light);
    max-width: 900px;
    margin: 0 auto;
}

.who-we-are-section .text-content p {
    margin-bottom: 25px;
}

.who-we-are-section .values-content {
    background-color: var(--white);
    padding: 70px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.who-we-are-section .values-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.who-we-are-section .values-text ul li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    font-size: 1.1em;
    color: var(--dark-green);
    font-weight: 600;
}

.who-we-are-section .values-text ul li .icon-green {
    color: var(--bright-yellow); /* Ícones dos valores em amarelo */
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.4em;
}

/* NOVO: Estilo para a logo como ilustração na seção "Quem Somos" */
.who-we-are-section .logo-as-illustration {
    max-width: 350px; /* Tamanho da logo como ilustração */
    height: auto;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.who-we-are-section .logo-as-illustration:hover {
    transform: scale(1.05);
}

/* NOVO: Estilo para o vídeo comercial */
/* NOVO: Estilo para o vídeo comercial */
.commercial-video-section {
    background-color: var(--dark-green);
    padding: 80px 0;
    text-align: center;
}

.commercial-video-section .video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* --- NOVO BLOCO DE CSS AQUI --- */
.commercial-video-section .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que o vídeo cubra toda a área, cortando se necessário */
}
/* --- FIM DO NOVO BLOCO DE CSS --- */

.commercial-video-section p {
    margin-top: 30px;
    color: var(--white);
    font-style: italic;
    font-size: 1.1em;
}


/* ==========================================================================
   Página "Nossas Agentes"
   ========================================================================== */
.agents-carousel-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.agents-carousel .agent-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    margin: 0 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.agents-carousel .agent-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: var(--bright-yellow);
    color: var(--dark-green);
}

.agents-carousel .agent-card img {
    height: 220px;
    object-fit: contain;
    margin: 0 auto 25px;
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.3));
    transition: filter 0.3s ease;
}

.agents-carousel .agent-card:hover img {
    filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
}

.agents-carousel .agent-card h3 {
    color: var(--dark-green);
    font-size: 2em;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.agents-carousel .agent-card:hover h3 {
    color: var(--dark-green);
}

.agents-carousel .agent-card .scientific-name {
    font-size: 0.95em;
    color: var(--medium-green);
    margin-bottom: 18px;
    display: block;
    transition: color 0.3s ease;
}
.agents-carousel .agent-card:hover .scientific-name {
    color: var(--dark-green);
}

.agents-carousel .agent-card p {
    font-size: 1.05em;
    margin-bottom: 30px;
    flex-grow: 1;
    color: var(--text-color-light);
    transition: color 0.3s ease;
}
.agents-carousel .agent-card:hover p {
    color: var(--dark-green);
}


/* Customizações do Slick Carousel (Setas e Pontos) */
.slick-prev:before, .slick-next:before {
    color: var(--bright-yellow) !important;
    font-size: 45px !important;
    opacity: 0.8 !important;
    transition: opacity 0.3s ease;
}
.slick-prev:hover:before, .slick-next:hover:before {
    opacity: 1 !important;
}


.slick-dots {
    bottom: -50px !important;
}

.slick-dots li button:before {
    color: var(--medium-green) !important;
    font-size: 14px !important;
    opacity: 0.6 !important;
    transition: opacity 0.3s ease;
}

.slick-dots li.slick-active button:before {
    color: var(--bright-yellow) !important;
    opacity: 1 !important;
}


/* Seção "Por Que Nossas Abelhas Nativas?" (Na página de Agentes e também nas páginas de detalhes de abelhas) */
.why-native-bees {
    padding: 100px 0;
    background-color: var(--white);
}

.why-native-bees .content-wrapper {
    display: flex;
    gap: 70px;
    align-items: center;
}

.why-native-bees .text-content {
    flex: 1;
    font-size: 1.15em;
    line-height: 1.8;
    color: var(--text-color-light);
    text-align: justify;
}

.why-native-bees .text-content ul {
    margin-top: 30px;
}

.why-native-bees .text-content ul li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.why-native-bees .text-content ul li .icon-green {
    color: var(--medium-green);
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.4em;
}

.why-native-bees .image-content {
    flex: 1;
    text-align: center;
}

.why-native-bees .image-content .illustration-image {
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.why-native-bees .image-content .illustration-image:hover {
    transform: scale(1.03);
}

/* ==========================================================================
   Páginas de Detalhes de Abelhas (Ex: jatai.html, mandacaia.html)
   ========================================================================== */
.bee-detail-section .content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Para quebrar em mobile */
    gap: 70px;
    align-items: center;
}

.bee-detail-section .image-content {
    flex: 1;
    text-align: center;
    min-width: 280px; /* Garante que a imagem não fique muito pequena */
}

.bee-detail-section .image-content .illustration-image {
    height: 250px; /* ALTURA FIXA para todas as imagens de abelhas nos detalhes */
    width: auto; /* Largura automática para manter proporção */
    max-width: 100%; /* Garante que não transborde */
    object-fit: contain; /* Redimensiona a imagem para caber na caixa mantendo a proporção */
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25); /* Sombra mais destacada */
    border: 3px solid var(--bright-yellow); /* Borda amarela para destaque */
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.bee-detail-section .image-content .illustration-image:hover {
    transform: scale(1.05); /* Pequeno zoom no hover */
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); /* Sombra ainda mais intensa */
    border-color: var(--dark-green); /* Borda muda de cor no hover */
}

.bee-detail-section .text-content {
    flex: 2; /* Texto ocupa mais espaço */
    min-width: 300px;
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--text-color-dark);
}
.bee-detail-section .text-content p {
    margin-bottom: 20px;
}


/* ==========================================================================
   Novas Seções para "Nosso App" (nosso-app.html)
   ========================================================================== */
.app-video-section .video-mockup {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--dark-green);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    text-align: center;
}
.app-video-section .video-mockup video {
    width: 100%;
    height: auto;
    display: block;
}
.app-video-section .video-mockup .video-caption {
    color: var(--white);
    padding: 20px;
    font-size: 1.1em;
}

.app-features-section .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.app-features-section .feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex: 0 0 calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
    min-width: 280px;
}
.app-features-section .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: var(--light-yellow);
}
.app-features-section .feature-item img {
    height:400px;
    margin: 0 auto 20px;
    filter: drop-shadow(3px 3px 5px rgba(0,0,0,0.15));
}
.app-features-section .feature-item h3 {
    color: var(--dark-green);
    font-size: 1.6em;
    margin-bottom: 10px;
}
.app-features-section .feature-item p {
    color: var(--text-color-light);
}

.premium-plan-section {
    background: linear-gradient(rgba(16, 27, 21, 0.9), rgba(16, 27, 21, 0.9)), url('../img/honeycomb-pattern.png');
    background-size: cover;
    color: var(--white);
    text-align: center;
}
.premium-plan-section .plan-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.premium-plan-section .plan-content img {
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    flex-shrink: 0;
}
.premium-plan-section .plan-text {
    flex: 1;
    text-align: left;
    min-width: 300px;
}
.premium-plan-section .plan-text p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: var(--light-yellow);
}
.premium-plan-section .plan-text ul {
    list-style: none;
    margin-bottom: 30px;
}
.premium-plan-section .plan-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1em;
    color: var(--white);
}
.premium-plan-section .plan-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--bright-yellow);
    position: absolute;
    left: 0;
    top: 0;
}

/* ==========================================================================
   Novas Seções para "Benefícios" (beneficios.html)
   ========================================================================== */
.benefits-detail-section .benefit-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.benefits-detail-section .benefit-point {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits-detail-section .benefit-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background-color: var(--light-yellow);
}
.benefits-detail-section .benefit-point .icon-green {
    font-size: 2.5em;
    color: var(--medium-green);
    margin-bottom: 15px;
}
.benefits-detail-section .benefit-point h3 {
    color: var(--dark-green);
    font-size: 1.8em;
    margin-bottom: 10px;
}
.benefits-detail-section .benefit-point p {
    color: var(--text-color-light);
    line-height: 1.7;
    text-align: justify;
}

.how-app-helps-section .app-collaboration-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.how-app-helps-section .app-collaboration-content .text-content {
    flex: 1;
    min-width: 300px;
    text-align: justify;
}
.how-app-helps-section .app-collaboration-content .text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-color-light);
}
.how-app-helps-section .app-collaboration-content .text-content ul li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05em;
    color: var(--text-color-dark);
}
.how-app-helps-section .app-collaboration-content .text-content ul li .icon-green {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1.2em;
}
.how-app-helps-section .app-collaboration-content .image-content {
    flex: 1;
    max-width: 500px;
}
.how-app-helps-section .app-collaboration-content .image-content img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Novas Seções para "Contato" (contato.html)
   ========================================================================== */
.contact-hero {
    background: linear-gradient(rgba(16, 27, 21, 0.8), rgba(16, 27, 21, 0.8)), url('../img/por-que-nativas.png') no-repeat center center;
    background-size: cover;
}

.contact-form-section .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.contact-form-section .contact-form {
    flex: 2;
    min-width: 350px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--light-yellow);
}
.contact-form .form-group {
    margin-bottom: 25px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-green);
    font-size: 1.1em;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-green);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: var(--text-color-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--bright-yellow);
    box-shadow: 0 0 0 3px rgba(255, 179, 4, 0.3);
    outline: none;
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .primary-btn {
    width: 100%;
    font-size: 1.1em;
    padding: 15px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-info h3 {
    color: var(--bright-yellow);
    margin-bottom: 25px;
    font-size: 1.6em;
    text-align: center;
}
.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05em;
    color: var(--light-yellow);
}
.contact-info .icon-green {
    font-size: 1.3em;
    color: var(--bright-yellow);
    flex-shrink: 0;
}
.contact-info .working-hours {
    font-style: italic;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-info .social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.contact-info .social-icons-contact img {
    height: 45px;
    width: 45px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.4));
}
.contact-info .social-icons-contact img:hover {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(1px 1px 5px rgba(0,0,0,0.6));
}

.contact-info .map-container {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--bright-yellow);
}
.contact-info .map-container iframe {
    display: block;
}


/* ==========================================================================
   Responsividade (Media Queries)
   ========================================================================== */

/* Telas Grandes e Médias (Desktops até 1200px) - Ajustes Finos */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    .hero-content h1 {
        font-size: 3.8em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    .section-title {
        font-size: 2.5em;
    }
    .page-hero h1 {
        font-size: 3em;
    }
}

/* Tablets e Pequenos Laptops (Max 992px) */
@media (max-width: 992px) {
    .header {
        padding: 15px 25px;
    }
    .navbar .nav-list {
        gap: 25px;
    }

    .hero-section {
        padding: 90px 0;
    }
    .hero-text-container {
        padding: 40px;
    }
    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content p {
        font-size: 1.1em;
    }

    .about-brief-content,
    .why-native-bees .content-wrapper,
    .bee-detail-section .content-wrapper { /* Adicionado para pages de abelhas */
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .about-brief-content .text-content,
    .why-native-bees .text-content,
    .bee-detail-section .text-content { /* Adicionado para pages de abelhas */
        order: 2;
    }
    .about-brief-content .image-content,
    .why-native-bees .image-content,
    .bee-detail-section .image-content { /* Adicionado para pages de abelhas */
        order: 1;
        margin-bottom: 20px;
    }

    /* Ajuste para grids que usam flexbox */
    .benefits-grid .benefit-item,
    .app-features-section .feature-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    .benefits-detail-section .benefit-points-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }


    .call-to-action p {
        font-size: 1.5em;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .footer-nav, .footer-contact {
        margin-top: 0;
    }
    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }
    .footer-contact p {
        justify-content: center;
    }

    .page-hero {
        padding: 80px 0;
    }
    .page-hero h1 {
        font-size: 2.5em;
    }
    .page-hero p {
        font-size: 1.1em;
    }

    .agents-carousel .agent-card {
        margin: 0 18px;
    }
    .agents-carousel .agent-card img {
        height: 180px;
    }

    /* Ajustes para Quem Somos */
    .who-we-are-section .values-content {
        flex-direction: column;
        padding: 50px;
    }
    .who-we-are-section .values-text {
        text-align: center;
    }
    .who-we-are-section .values-text ul li {
        padding-left: 0;
        text-align: left;
        display: flex;
        align-items: flex-start;
        justify-content: center; /* Centraliza a caixa de li */
    }
    .who-we-are-section .values-text ul li .icon-green {
        position: static; /* Remove position absolute para flex */
        margin-right: 10px;
    }

    /* Novos ajustes para Nosso App */
    .premium-plan-section .plan-content {
        flex-direction: column;
    }
    .premium-plan-section .plan-content img {
        order: 1;
        margin-bottom: 30px;
    }
    .premium-plan-section .plan-text {
        order: 2;
        text-align: center;
    }
    .premium-plan-section .plan-text ul li {
        padding-left: 0;
    }
    .premium-plan-section .plan-text ul li::before {
        position: static;
        margin-right: 10px;
    }

    /* Novos ajustes para Benefícios */
    .how-app-helps-section .app-collaboration-content {
        flex-direction: column;
    }
    .how-app-helps-section .app-collaboration-content .image-content {
        order: 1;
        margin-bottom: 30px;
    }
    .how-app-helps-section .app-collaboration-content .text-content {
        order: 2;
    }

    /* Novos ajustes para Contato */
    .contact-form-section .contact-content {
        flex-direction: column;
    }
    .contact-form-section .contact-form,
    .contact-form-section .contact-info {
        flex: auto;
        width: 100%;
        min-width: unset;
    }
    .contact-info h3 {
        text-align: left;
    }
    .contact-info .social-icons-contact {
        justify-content: flex-start;
    }
}

/* Dispositivos Móveis (Tablets Verticais e Smartphones - Max 768px) */
@media (max-width: 768px) {
    /* Esconde a nav-list do desktop no mobile */
    .navbar .nav-list {
        display: none;
    }
    /* Mostra o botão hambúrguer no mobile */
    .hamburger-menu {
        display: block;
    }

    .hero-section {
        padding: 80px 0 40px;
    }
    .hero-text-container {
        padding: 30px;
    }
    .hero-content h1 {
        font-size: 2.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .flying-bee {
        width: 45px;
    }

    .section-title {
        font-size: 2.2em;
        margin-bottom: 50px;
    }

    .about-brief-section, .benefits-brief-section, .why-native-bees, .agents-carousel-section,
    .section-padding {
        padding: 80px 0;
    }

    /* Ajuste para grids que usam flexbox */
    .benefits-grid .benefit-item,
    .app-features-section .feature-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .benefits-detail-section .benefit-points-grid {
        grid-template-columns: 1fr;
    }


    .btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }

    .call-to-action p {
        font-size: 1.3em;
    }

    .page-hero h1 {
        font-size: 2em;
    }
    .page-hero p {
        font-size: 1em;
    }

    .agents-carousel .agent-card {
        margin: 0 10px;
    }
}

/* Smartphones (Max 480px) */
@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }
    .header .logo img {
        height: 45px;
    }
    .hamburger-menu {
        font-size: 1.6em;
    }

    .hero-section {
        padding: 60px 0 30px;
    }
    .hero-text-container {
        padding: 20px;
        border-radius: 10px;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content p {
        font-size: 0.9em;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .about-brief-content .image-content .animated-colmeia {
        max-width: 90%;
    }

    .benefit-item {
        padding: 25px;
    }
    .benefit-item img {
        height: 70px;
    }
    .benefit-item h3 {
        font-size: 1.3em;
    }

    .call-to-action p {
        font-size: 1.1em;
    }

    .footer {
        padding: 50px 0;
    }
    .footer-logo img {
        height: 50px;
    }

    .page-hero {
        padding: 60px 0;
    }
    .page-hero h1 {
        font-size: 1.8em;
    }

    .agents-carousel .agent-card img {
        height: 150px;
    }
    .agents-carousel .agent-card h3 {
        font-size: 1.6em;
    }
    .agents-carousel .agent-card p {
        font-size: 0.9em;
    }

    /* Novos ajustes para Contato */
    .contact-form-section .contact-form,
    .contact-form-section .contact-info {
        padding: 30px;
        border-radius: 15px;
    }
    .contact-form label {
        font-size: 1em;
    }
    .contact-form input, .contact-form textarea {
        padding: 10px;
    }
    .contact-form .primary-btn {
        font-size: 1em;
        padding: 12px;
    }
    .contact-info p {
        font-size: 1em;
    }
    .contact-info h3 {
        font-size: 1.4em;
    }
}