/* Reset e Estilos Gerais */
:root {
    --primary-color: #1c6d33;
    --primary-light: #2a8b45;
    --primary-dark: #145626;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #e0e0e0;
    --dark-gray: #777777;
    --text-color: #333333;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Botões */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-primary-light {
    background-color: #4CAF50; /* Verde claro */
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary-light:hover {
    background-color: #5BC75F; /* Verde claro mais brilhante no hover */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-destaque {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
}

.full-width {
    width: 100%;
}

/* Header */
header {
    background-color: #1c6d3363;
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--light-gray);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28, 109, 51, 0.85), rgba(20, 86, 38, 0.92));
    z-index: 1;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-card {
    flex: 0 0 350px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    color: var(--text-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.hero-card p {
    margin-bottom: 25px;
    text-shadow: none;
}

/* Estilos para a opção de vídeo de fundo na seção hero */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28, 109, 51, 0.7), rgba(20, 86, 38, 0.9));
    z-index: 1;
}

/* Cursos Section */
.cursos {
    padding: 80px 0;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 20px;
    background-color: var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.tab i {
    margin-right: 8px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tab-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.curso-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.curso-imagem img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.curso-info {
    padding: 20px;
}

.curso-info h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.curso-info p {
    margin-bottom: 20px;
}

.curso-detalhes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: 500;
}

.preco {
    color: var(--primary-color);
    font-weight: 700;
}

.ver-todos {
    text-align: center;
    margin-top: 30px;
}

/* Modalidades */
.modalidades {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.modalidade-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

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

.modalidade-icon {
    background-color: var(--primary-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modalidade-icon i {
    font-size: 30px;
    color: var(--white);
}

.modalidade-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--light-gray);
    padding: 60px 0;
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 109, 51, 0.05);
    z-index: 0;
}

.depoimentos .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.depoimentos-content {
    flex: 1;
    min-width: 300px;
}

.depoimentos-content .section-title {
    text-align: left;
}

.depoimentos-content p {
    margin-bottom: 30px;
    font-size: 18px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 80px);
    grid-template-rows: repeat(3, 80px);
    gap: 15px;
}

.depoimento-avatar {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    transition: all 0.3s ease;
}

.depoimento-avatar:hover {
    transform: scale(1.1);
}

.depoimento-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Formulário de Contato */
.contato {
    padding: 80px 0;
    background-color: rgb(243, 242, 241);
}

.contato-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.form-contato {
    flex: 1;
    min-width: 300px;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-disclaimer {
    font-size: 14px;
    color: var(--dark-gray);
    text-align: center;
    margin-top: 15px;
}

.contato-info {
    flex: 1;
    min-width: 300px;
}

.contato-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.beneficios {
    margin-bottom: 30px;
}

.beneficios li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.beneficios li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 20px;
}

.contato-botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

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

.footer-column ul li a:hover {
    color: var(--gray);
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--primary-light);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: var(--primary-color);
}

.redes-sociais {
    display: flex;
    gap: 15px;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.redes-sociais a:hover {
    background-color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-card {
        width: 100%;
    }
    
    .cursos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(3, 60px);
        grid-template-rows: repeat(3, 60px);
    }
}

@media (max-width: 576px) {
    .depoimentos .container {
        flex-direction: column;
    }
    
    .depoimentos-grid {
        justify-self: center;
    }
}

/* Corpo Docente */
.corpo-docente {
    padding: 80px 0;
    background-color: var(--white);
}

.facilitadores-destaque {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.facilitador-card {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.facilitador-img {
    flex: 0 0 200px;
    overflow: hidden;
}

.facilitador-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facilitador-card:hover .facilitador-img img {
    transform: scale(1.05);
}

.facilitador-info {
    flex: 1;
    padding: 25px;
}

.facilitador-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.facilitador-info h4 {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.facilitador-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.facilitador-especialidades {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.facilitador-especialidades span {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.facilitadores-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.diferencial-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.diferencial-icon i {
    font-size: 28px;
    color: var(--white);
}

.diferencial-item h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.facilitadores-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--light-gray);
    border-radius: 10px;
    margin-top: 40px;
}

.facilitadores-cta h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.facilitadores-cta p {
    max-width: 700px;
    margin: 0 auto 25px;
    font-size: 18px;
}

/* Responsividade para Corpo Docente */
@media (max-width: 992px) {
    .facilitador-card {
        flex-direction: column;
    }
    
    .facilitador-img {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .facilitadores-diferenciais {
        grid-template-columns: 1fr;
    }
    
    .facilitador-info h3 {
        font-size: 22px;
    }
    
    .facilitador-info h4 {
        font-size: 16px;
    }
}

/* Estilos para a paginação dos facilitadores */
.facilitadores-paginacao {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.paginacao-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.paginacao-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #4CAF50;
    background: transparent;
    color: #4CAF50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginacao-btn:hover {
    background: #e8f5e9;
    border-color: #2E7D32;
    color: #2E7D32;
}

.paginacao-btn.active {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .paginacao-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .paginacao-container {
        gap: 0.3rem;
    }
}

@media (max-width: 480px) {
    .paginacao-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Estilos para o texto expandível */
.texto-expandivel {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.texto-oculto {
    display: none;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    animation: fadeIn 0.5s ease-in-out;
}

.texto-oculto.mostrar {
    display: block;
}

.btn-exibir-mais {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.btn-exibir-mais:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-exibir-mais i {
    transition: transform 0.3s ease;
}

.btn-exibir-mais.ativo i {
    transform: rotate(180deg);
}

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