/* Esconde menu mobile e hamburger no desktop */
@media (min-width: 769px) {
    .mobile-nav,
    .hamburger {
        display: none !important;
    }
}
/* FIX OVAL E SUBMENU MOBILE - SEMPRE NO FINAL DO CSS */
@media (max-width: 768px) {
    .mobile-nav ul li a {
        display: inline-block;
        padding: 14px 22px 16px 22px;
        border: 2px solid var(--primary-color);
        border-radius: 100px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.02rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: visible;
        transition: color 0.3s ease, background 0.3s;
        background: transparent;
        margin: 0;
        border-bottom: none;
        line-height: 1.5;
        box-sizing: border-box;
        vertical-align: middle;
        min-height: 48px;
    }
    .mobile-nav .submenu li a {
        font-size: 0.98rem;
        color: var(--text-color);
        border: 2px solid var(--primary-color);
        border-radius: 100px;
        padding: 14px 22px 16px 22px;
        margin: 6px 0 6px 10px;
        background: transparent;
        font-weight: 600;
        text-transform: uppercase;
        transition: color 0.3s, background 0.3s;
        line-height: 1.5;
        box-sizing: border-box;
        vertical-align: middle;
        min-height: 48px;
    }
    .mobile-nav .submenu {
        display: none;
        position: static;
        background: none;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
        padding: 0 0 0 10px;
        margin-top: 0;
    }
    .mobile-nav .dropdown.open .submenu {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .mobile-nav .dropdown:hover > .submenu,
    .mobile-nav .dropdown:focus-within > .submenu {
        display: none !important;
    }
}
/* Reset e Estilos Globais */
:root {
    --primary-color: #55aa41;
    --primary-color-light: #b2ef49;
    --primary-color-dark: #105700;
    --secondary-color: #041869;
    --background-color: #F9F9F9;
    --text-color: #333;
    --text-light: #f0f0f0;
    --bg-dark: #2C3E50;
    --1: #94c73c;
    --2: #00fefe;
    --3: #025cbd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 255, 87, 0.349);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    color: var(--primary-color);
    padding-bottom: 10px;
}

/* Bolinhas centralizadas (3 cores) */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px; /* Tamanho da bolinha do meio */
    height: 12px;
    border-radius: 50%;
    background: var(--2); /* Cor do meio */
    box-shadow: 
        -25px 0 0 0 var(--1), /* Bolinha vermelha (esquerda) */
        25px 0 0 0 var(--3);  /* Bolinha verde (direita) */
}

/* Header */
header {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 15px rgba(0, 18, 87, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

/* Logo */
.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}


/* Menu Principal */
.desktop-nav ul {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Itens Ovalados */
.desktop-nav ul li a {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 100px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  z-index: 1;
}

/* Efeito de Preenchimento */
.desktop-nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}

/* Estados Ativo/Hover */
.desktop-nav ul li a:hover::before,
.desktop-nav ul li a.active::before {
  transform: translateX(100%);
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  color: white; /* Texto branco quando preenchido */
}


/* Dropdown */
.dropdown { position: relative; }
.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 20px;
    min-width: 180px;
    padding: 10px 0;
    z-index: 1000;
}
.dropdown:hover > .submenu,
.dropdown:focus-within > .submenu {
    display: block !important;
}
.submenu li a {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 100px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, background 0.3s;
    margin: 4px 10px;
    background: transparent;
}
.submenu li a:hover,
.submenu li a.active {
    background: var(--primary-color);
    color: white;
}

/* Responsivo */
@media (max-width: 768px) {
  .desktop-nav ul {
    flex-direction: column;
    gap: 8px;
  }
  
    .submenu {
        position: static;
        box-shadow: none;
        /* display: none;  Removido para evitar conflito com JS */
    }




    .mobile-nav .dropdown > a {
        position: relative;
        padding-right: 40px !important; /* Espaço para a seta */
    }

    .mobile-nav .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s;
    }

    .mobile-nav .dropdown.open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .mobile-nav .submenu {
        display: none; /* Escondido por padrão */
        padding-left: 20px;
        margin-top: 8px;
    }

    .mobile-nav .dropdown.open .submenu {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
    }

}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(132, 255, 142, 0.616), rgba(44, 62, 80, 0.8)), url('img/banner-inicio.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
}

.hero.servicos-fundo {
    position: relative;
    background: url("https://assets-blog.pagseguro.uol.com.br/wp-content/2022/01/Entenda-o-que-e-um-Contrato-de-Prestacao-de-Servicos.jpg") no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero.servicos-fundo .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* escurece a imagem */
    z-index: 1;
    border-radius: inherit;
}

.hero.servicos-fundo .container {
    position: relative;
    z-index: 2;
}

.hero.servicos-fundo h2,
.hero.servicos-fundo p {
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* About Section */

.about {
    padding: 100px 0;
      background: #f8f9fa;

}


.about .container {
        display: flex;
        align-items: center;
        gap: 50px;
        
}

@media (max-width: 900px) {
    .about .container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .about-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .about-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 0;
    }
    .about-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 30px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .about {
        padding: 60px 0 40px 0;
    }
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 4px #d4af37;
}


/* =================================
   TESTIMONIALS V2 - GERAL
   ================================= */
.testimonials-v2 {
    background-color:#1a1a1d;
    padding: 10px 0;
    overflow-x: hidden;
    position: relative;
}

.testimonials-v2 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding:  0px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-header .section-title {
    margin-bottom: 10px;
    color: var(--primary-color-light, #ffc107);
}

.testimonials-header .section-subtitle {
    color: var(--text-light, #f4f4f4);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-header .highlight {
    color: #ffffff;
}

/* =================================
   CARROSSEL - MOBILE FIRST
   ================================= */

/* Wrapper que contém os botões e o carrossel */
.testimonial-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Viewport do Carrossel */
.testimonial-carousel {
    overflow: hidden;
    width: 100%;
}

/* Track que move os cards */
.testimonial-track {
    display: flex;
    gap: 20px; 
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 15px 0px 
}

/* Card de Depoimento - Estilo Mobile */
.testimonial-card {
    flex: 0 0 100%; 
    background: rgba(9, 138, 4, 0.068);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Transição suave para o efeito de escala */
    transform: scale(0.95);
    opacity: 0.7;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

/* Card Ativo - Destaque central */
.testimonial-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 1px 7px 7px rgba(0, 0, 0, 0.3);
}

/* Conteúdo do Card */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color, #ffc107);
}

.author-info h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
}

.stars {
    color: #FFD700; /* Dourado mais vibrante */
    font-size: 0.9rem;
    margin-top: 5px;
    text-shadow: 
        0 0 1px rgba(255, 215, 0, 0.8), /* Brilho suave */
        0 0 3px rgba(212, 175, 55, 0.5), /* Aurora dourada */
        0 0 6px rgba(212, 175, 55, 0.3); /* Profundidade */
    transition: all 0.3s ease;
}


.card-body {
    font-style: italic;
    color: var(--text-light, #f4f4f4);
    margin: 0 0 25px 0;
    padding: 0;
    line-height: 1.7;
    flex-grow: 1; /* Faz o corpo do texto ocupar o espaço disponível */
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: auto; /* Garante que o footer fique na base */
}

.card-footer a {
    color: var(--primary-color-light, #ffc107);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.card-footer a:hover {
    color: #ffffff;
}

.carousel-btn {
    display: none; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color, #ffc107);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 0;
}

.carousel-indicators div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.carousel-indicators div.active {
    background: var(--primary-color, #ffc107);
    transform: scale(1.3);
    width: 25px;
    border-radius: 5px;
}

/* CTA Button */
.testimonials-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-cta-google {
    background: #db4a39;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta-google:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

/* =================================
   RESPONSIVIDADE - TABLET & DESKTOP
   ================================= */

/* Tablet (768px+) - Mostra 2 a 3 cards */
@media (min-width: 768px) {
    .testimonials-v2 .container {
        padding: 0 40px; /* Aumenta o padding lateral */
    }

    /* Mostra os botões de navegação */
    .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Ajusta o tamanho dos cards para mostrar 2 */
    .testimonial-card {
        flex-basis: calc(50% - 10px); /* 50% - metade do gap */
    }
}

/* Desktop (1024px+) - Mostra 3 cards */
@media (min-width: 1024px) {
    /* Ajusta o tamanho dos cards para mostrar 3 */
    .testimonial-card {
        flex-basis: calc(33.333% - 14px); /* 33.33% - 2/3 do gap */
    }

    .carousel-btn.prev { left: -30px; }
    .carousel-btn.next { right: -30px; }
}


/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: #F1F1F1;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1d, #0f0f11);
    color: #f5f5f5;
    padding: 70px 0 0;
    font-family: "Inter", sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

/* Títulos das seções com contorno */
.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 6px 14px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* Lista */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

/* Ícones sociais */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Rodapé inferior */
.footer-bottom {
    background: #101010;
    padding: 22px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Força 5 colunas no desktop */
@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(5, 1fr);
    }
}





/* FAQ Section  */
.faq-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  align-items: start;
}

.faq-square {
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  overflow: hidden;
}


.faq-question {
    padding: 20px;
    width: 100%;
    background: transparent;
    border: none;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question .faq-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question .faq-text {
    margin: 0 auto;
    text-align: center;
    flex: 1;
}

.faq-question .fa-chevron-down {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question:hover {
    background-color: #f1f3f5;
}


.faq-question .fa-chevron-down {
  transition: transform 0.3s ease;
}

.faq-question.active .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  border-top: 1px solid #e9ecef;
}

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

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.faq-answer li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}

/* Versão Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 -25px;
  }
}

@media (min-width: 769px) {
    .faq-answer {
        display: block !important;
    }
    .faq-question .fa-chevron-down {
        display: none !important;
    }
    .faq-question {
        cursor: default !important;
    }
    .faq-question .faq-icon {
        left: 30px;
    }
    .faq-question .fa-chevron-down {
        right: 30px;
    }
}

/* Seção de Benefícios - Versão Simplificada */
.benefits-section {
  padding: 3rem 1rem;
  background-color: var(--background-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon-container {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover .benefit-icon-container {
  transform: scale(1.1);
  background: var(--primary-color-dark);
}

.benefit-content h3 {
  color: var(--primary-color-dark);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.benefit-content p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Botão CTA Simplificado */
.benefits-cta {
  text-align: center;
  margin: 3rem 0 2rem;
  padding: 0 1rem;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  box-shadow: 0 3px 8px rgba(85, 170, 65, 0.3);
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(85, 170, 65, 0.4);
}

.btn-gradient i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-gradient:hover i {
  transform: translateX(3px);
}

/* Responsividade */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: -20px;
  }
  
  .benefit-card {
    padding: 1rem 1rem;
  }
  
  .benefits-cta {
    margin: 2rem 0 1.5rem;
  }
}

/* MENU MOBILE */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 4px 0;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .mobile-nav {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 75vw;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 16px rgba(0,0,0,0.08);
        z-index: 1050;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.65,0,0.35,1);
        padding: 80px 30px 30px 30px;
    }
    .mobile-nav.open {
        transform: translateX(0);
    }
    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .mobile-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        min-height: 50px;
        border: 2px solid var(--primary-color);
        border-radius: 100px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        text-align: center;
        transition: color 0.3s ease, background 0.3s;
        background: transparent;
        position: relative; /* Necessário para o pseudo-elemento ::after */
    }

    /* Adiciona a seta para itens de dropdown */
    .mobile-nav .dropdown > a::after {
        content: '▼';
        font-size: 0.7em;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    /* Gira a seta quando o menu está aberto */
    .mobile-nav .dropdown.open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .mobile-nav .submenu {
        display: none; /* Escondido por padrão */
        list-style: none;
        padding: 10px 0 0 0;
        margin: 0;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-nav .dropdown.open > .submenu {
        display: flex; /* Mostra como flex container quando aberto */
    }

    .mobile-nav .submenu li {
        margin-bottom: 0; /* Removido para usar gap */
    }

    .mobile-nav .submenu li a {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 46px;
        width: 100%;
    }

    
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
}
    
.history-image img {
    width: 100%;
    height: auto;
    display: block;
}


/* Seção Fundador */
.founder-section {
    background: #f9f9f9;
    padding: 60px 0;
}

.founder-content {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.founder-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: var(--primary-color-light);
    border-radius: 50%;
    z-index: 1;
    filter: blur(12px);
    opacity: 0.7;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
}

.founder-bio {
    flex: 2;
}

.founder-bio h3 {
    color: var(--1);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.founder-bio h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color-light);
    border-radius: 2px;
}

.founder-bio p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.founder-quote {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-left: 4px solid var(--1);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.founder-quote blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.founder-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color-light);
    line-height: 1;
    margin-right: 10px;
    vertical-align: -0.3em;
}

/* Responsivo */
@media (max-width: 768px) {
    .founder-content {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        margin-bottom: 30px;
    }
    
    .founder-bio h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .founder-image::before {
        width: 105%;
        height: 105%;
    }
    
    .founder-image img {
        max-width: 250px;
    }
}

/* Galeria */
.gallery-section {
    padding: 60px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Responsivo */
@media (max-width: 768px) {
    .history-content,
    .founder-content {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Estilos específicos para a página de Contato */
        .contato-hero {
            position: relative;
            background: linear-gradient(rgba(132, 255, 142, 0.616), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1568992687947-868a62a9f521?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center / cover;
            color: white;
            padding: 150px 20px;
            text-align: center;
            overflow: hidden;
        }

        .contato-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .contato-hero h1,
        .contato-hero p {
            position: relative;
            z-index: 2;
        }

        .contato-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .contato-hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Seção de Informações de Contato */
        .contact-info-section {
            padding: 60px 0;
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .contact-card {
            background: #f9f9f9;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            border-left: 4px solid var(--primary-color);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(85, 170, 65, 0.15);
        }

        .contact-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .contact-card h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .contact-card p {
            margin-bottom: 15px;
            line-height: 1.6;
            color: var(--text-color);
        }

        .reference {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
            margin-top: 10px;
        }

        .btn-map {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .btn-map:hover {
            background: var(--primary-color-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(93, 255, 87, 0.349);
        }

        .contact-card p strong {
            color: var(--primary-color);
            font-weight: 600;
        }

        .social-contacts {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--primary-color-dark);
            transform: scale(1.1);
        }

        /* Seção do Mapa */
        .map-section {
            padding: 60px 0;
            background: #f5f5f5;
        }

        .map-container {
            margin-top: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            
            .contato-hero h1 {
                font-size: 2.2rem;
            }
        }

/* ANIMAÇÃO */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* GALERIA  */
.gallery-section {
    width: 100%;
    padding: 20px 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 7px;
    padding: 0 1px;
}

.gallery-image {
    width: 100%;
    height: 180px; /* Altura fixa para uniformidade */
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.section-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block; /* Alterado para block para centralização */
    width: fit-content; /* Ajusta ao conteúdo */
    padding: 8px 25px;
    margin: 15px auto; /* Centraliza horizontalmente */
    text-align: center;
    border: 1px solid var(--primary-color-light);
    border-radius: 30px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden; /* Para o efeito de brilho */
}

/* Efeito de brilho sofisticado */
.section-subtitle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 45%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0) 55%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section-subtitle:hover {
    letter-spacing: 2px;
    box-shadow: 
        0 0 0 1px var(--primary-color),
        0 0 15px rgba(var(--primary-color-rgb), 0.3); /* Brilho externo */
}


@keyframes shine {
    0% { transform: rotate(30deg) translate(-30%, -30%); }
    100% { transform: rotate(30deg) translate(30%, 30%); }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox.show {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;

    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    padding: 0;

    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.15) translateY(-2px);
    background-color: var(--primary-color-light);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35), 0 0 8px rgba(255, 255, 255, 0.6);
}


/* RESPONSIVIDADE - TELAS MAIORES */
@media (min-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas em tablets */
        gap: 20px;
        padding: 0 20px;
    }
    
    .gallery-image {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas em desktops */
    }
    
    .gallery-image {
        height: 220px;
    }
}

@media (min-width: 1200px) {
    .gallery-container {
        grid-template-columns: repeat(5, 1fr); /* 5 colunas em telas grandes */
    }
}

/* Botões flutuantes */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  align-items: flex-end;
}

.floating-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
  border: none;
}

/* Efeito de pulo */
@keyframes jump {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-8px); }
}

/* Efeito de vibração */
@keyframes vibrate {
  0%, 20%, 40%, 60%, 80% { transform: translateX(0) rotate(0); }
  10% { transform: translateX(-2px) rotate(-2deg); }
  30% { transform: translateX(2px) rotate(2deg); }
  50% { transform: translateX(-2px) rotate(-2deg); }
  70% { transform: translateX(2px) rotate(2deg); }
}

.portal-btn {
  background: linear-gradient(135deg, #092bf0, #0712af);
  color: white;
  animation: jump 3s ease-in-out infinite;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 36px;
  animation: vibrate 2s ease-in-out infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
}

/* OPÇÕES DO PORTAL - ESTILO SIMPLES E FUNCIONAL */
.portal-options {
  position: absolute;
  bottom: 85px;
  right: 0;
  background: white;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  width: 220px;
  display: none; /* IMPORTANTE: inicialmente escondido */
  flex-direction: column;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;

}

/* CLASSE PARA MOSTRAR - SIMPLES E DIRETA */
.portal-options.show {
  display: flex !important;
}

.portal-option {
  padding: 16px 20px;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  align-items: center;
  gap: 12px;
}

.portal-option:last-child {
  border-bottom: none;
}

.portal-option:hover {
  background: #f8f9ff;
  color: #092bf0;
}

/* Responsivo */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 20px;
    right: 15px;
  }
  
  .floating-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .whatsapp-btn {
    font-size: 32px;
  }
  
  .portal-options {
    bottom: 70px;
    width: 200px;
  }
}

/* Seção Parceiros */
.parceiros-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    position: relative;
    overflow: hidden;
}

.parceiros-carrossel {
    position: relative;
    width: 100%;
    padding: 30px 0;
    overflow: hidden;
    cursor: grab;
}

.parceiros-carrossel.grabbing {
    cursor: grabbing;
}

.parceiros-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    user-select: none;
    touch-action: pan-y;
}

.parceiro-item {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.parceiro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.parceiro-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.parceiro-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.parceiro-nome {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Responsivo */
@media (max-width: 768px) {
    .parceiro-item {
        flex: 0 0 150px;
        padding: 15px;
    }
    
    .parceiro-logo {
        height: 60px;
        margin-bottom: 10px;
    }
    
    .parceiro-nome {
        font-size: 0.9rem;
    }
    
    .parceiros-track {
        gap: 20px;
    }
}


/* Seção Missão, Visão e Valores */
.mvv-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4e73df, #224abe);
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4e73df, #224abe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.mvv-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Card de Valores */

.valores-card {
    grid-column: span 1;
    text-align: center;
}

.valores-card .mvv-icon {
    margin: 0 auto 25px;
}

.valores-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.valor-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.valor-item:hover {
    background: #eef1ff;
    transform: translateX(5px);
}

.valor-icon {
    color: #4e73df;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

.valor-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
}

/* Responsivo */
@media (max-width: 768px) {
    .mvv-section {
        padding: 60px 0;
        margin: -25px;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .mvv-card {
        padding: 30px 20px;
    }
    
    .mvv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .mvv-card h3 {
        font-size: 1.3rem;
    }
    
    .mvv-card p {
        font-size: 1rem;
    }
    
    .valor-item {
        padding: 10px;
    }
    
    .valor-text {
        font-size: 0.95rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mvv-card {
    animation: fadeInUp 0.6s ease forwards;
}

.mvv-card:nth-child(1) { animation-delay: 0.1s; }
.mvv-card:nth-child(2) { animation-delay: 0.2s; }
.mvv-card:nth-child(3) { animation-delay: 0.3s; }


/* Seção de Vídeo */
.video-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Container para vídeo no formato stories (vertical) */
.video-container-stories {
    max-width: 300px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #000;
    position: relative;
    cursor: pointer;
}

/* Player de vídeo no formato vertical (stories) */
.video-player-stories {
    width: 100%;
    display: block;
    aspect-ratio: 9/16;
    object-fit: cover;
    /* Remover controles nativos */
    pointer-events: none;
}

/* Overlay do player verde */
.green-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 5;
}

.video-container-stories.playing .green-player-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Ícone do player verde */
.green-player-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(85, 170, 65, 0.5);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
    pointer-events: auto;
}

.green-player-icon:hover {
    transform: scale(1.1);
    background: var(--primary-color-dark);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(85, 170, 65, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(85, 170, 65, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(85, 170, 65, 0);
    }
}

/* Barra de progresso VERDE */
.progress-container {
    position: absolute;
    bottom: 70px;
    left: 15px;
    right: 15px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-container-stories:hover .progress-container {
    opacity: 1;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    width: 0%;
    transition: width 0.2s ease;
    box-shadow: 0 0 5px rgba(85, 170, 65, 0.5);
}

/* Display de tempo VERDE */
.time-display {
    position: absolute;
    bottom: 80px;
    right: 15px;
    color: white;
    font-size: 0.8rem;
    background: var(--primary-color);
    padding: 3px 8px;
    border-radius: 12px;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

.video-container-stories:hover .time-display {
    opacity: 1;
}

/* Controles customizados VERDES */
.custom-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-container-stories:hover .custom-controls {
    opacity: 1;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 3px 8px rgba(85, 170, 65, 0.4);
}




.video-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-section {
        padding: 3rem 1rem;
    }
    
    .video-container-stories {
        max-width: 280px;
        border-radius: 12px;
    }
    
    .green-player-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .control-btn {
        width: 36px;
        height: 36px;
    }
    
    .progress-container {
        bottom: 60px;
        left: 10px;
        right: 10px;
    }
    
    .time-display {
        bottom: 70px;
        right: 10px;
        font-size: 0.75rem;
        padding: 2px 6px;
    }
}

/* Estilos para modo de tela cheia */
.video-container-stories:fullscreen {
    max-width: none;
    width: 100%;
    border-radius: 0;
}

.video-container-stories:fullscreen .video-player-stories {
    object-fit: contain;
    height: 100%;
}

.video-container-stories:fullscreen .progress-container {
    bottom: 80px;
    left: 20px;
    right: 20px;
}

.video-container-stories:fullscreen .time-display {
    bottom: 90px;
    right: 20px;
    font-size: 1rem;
}

.video-container-stories:fullscreen .custom-controls {
    bottom: 20px;
    right: 20px;
}

.video-container-stories:fullscreen .control-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}