/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

div.box {
    width: 150px;
    display: inline-block;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.container2 {
  display: flex; /* Torna o contêiner um flex container */
  flex-direction: row; /* Alinha os itens em linha (lado a lado) */
  align-items: center; /* Opcional: Alinha verticalmente os itens ao centro */
  gap: 20px; /* Espaço entre a imagem e a descrição */
}
.imagem-container2 {
  /* Estilos para a div da imagem, se necessário */
  width: 20%; /* Define a largura para o container da imagem */
}

.imagem-container2 img {
  max-width: 100%; /* Garante que a imagem não ultrapasse a div */
  height: auto; /* Mantém a proporção da imagem */
  display: block; /* Remove espaço extra abaixo da imagem */
}

.texto-container2 {
  width: 80%; /* Define a largura para o container do texto */
}
/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap; /* Permite que os itens quebrem a linha */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-toggle {
    display: none; /* Oculta o botão de menu em telas grandes */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #2d5a27;
    cursor: pointer;
    margin-left: 1rem;
}

/* Estilos para o menu mobile (inicialmente oculto) */
.nav-menu-mobile {
    position: absolute;
    top: 100%; /* Abaixo do header */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%); /* Inicialmente fora da tela */
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    z-index: 999;
}

.nav-menu-mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-menu-mobile li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.nav-menu-mobile li:last-child a {
    border-bottom: none;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.nav-menu li:last-child a {
    border-bottom: none;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2d5a27;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2322c55e" stop-opacity="0.1"/><stop offset="100%" stop-color="%2322c55e" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Seções */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mentorias */
.mentorias {
    background: #f9fafb;
}

.mentorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mentoria-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.mentoria-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1rem;
}

.mentoria-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.mentoria-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.mentoria-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.mentoria-card li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.mentoria-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.mentoria-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 8px;
}

.duration {
    font-weight: 600;
    color: #2d5a27;
}

.format {
    color: #6b7280;
    font-size: 0.9rem;
}

.btn-mentoria {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-mentoria:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.btn-mentoria1 {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-mentoria1:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.btn-mentoria2 {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-mentoria2:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.btn-mentoria3 {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-mentoria3:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
.btn-mentoria4 {
    width: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-mentoria4:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}
/* Depoimentos */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.depoimento-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.depoimento-card p {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cliente-info strong {
    color: #2d5a27;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.cliente-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background: #f9fafb;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d5a27;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}
/*whatsapp*/
.whatsapp-button {
  display: inline-flex; /* Permite alinhar ícone e texto, se houver */
  align-items: center;
  padding: 10px 20px; /* Espaçamento interno */
  background-color: #25D366; /* Cor verde do WhatsApp */
  color: white; /* Cor do texto */
  text-decoration: none; /* Remove o sublinhado do link */
  border-radius: 5px; /* Cantos arredondados */
  font-family: Arial, sans-serif; /* Fonte */
  font-size: 16px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2); /* Sombra */
}

.whatsapp-button img {
  width: 20px; /* Tamanho do ícone */
  height: 20px;
  margin-right: 10px; /* Espaço entre o ícone e o texto */
  vertical-align: middle; /* Alinha o ícone com o texto */
}

/* Opcional: Animação ao passar o mouse */
.whatsapp-button:hover {
  background-color: #128C7E;
}
/* CTA */
.cta {
    background: linear-gradient(135deg, #2d5a27, #22c55e);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #2d5a27;
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Oculta o menu em telas pequenas por padrão */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 20px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex; /* Mostra o menu quando a classe 'active' é adicionada */
    }

    .menu-toggle {
        display: block; /* Mostra o botão de menu em telas pequenas */
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav-menu li a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-brand h2 {
        font-size: 1.5rem;
    }

    .nav {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .nav-menu {
        gap: 0;
    }

    .btn-secondary {
        display: none; /* Oculta o botão "Agendar Conversa" no header em mobile para dar espaço */
    }
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Oculta o menu desktop em telas pequenas */
    }

    .menu-toggle {
        display: block; /* Mostra o botão de menu em telas pequenas */
        order: 2;
    }

    .nav {
        padding: 0 20px;
    }

    .nav-brand {
        order: 1;
    }

    .btn-secondary {
        order: 3;
    }

    .nav-menu-mobile {
        display: flex; /* Mostra o menu mobile em telas pequenas */
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: all;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        flex-basis: 100%;
    }

    .nav-menu-mobile li a {
        border-bottom: 1px solid #eee;
    }

    .nav-menu-mobile li:last-child a {
        border-bottom: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .mentorias-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .mentoria-card,
    .depoimento-card {
        padding: 1.5rem;
    }
}

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

.mentoria-card,
.depoimento-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

