/* Reset e Configurações Básicas */
:root {
    --primary-dark: #0d3a22;
    /* Fundo hero e footer */
    --primary-main: #145c36;
    /* Fundo header e botoes verdes */
    --primary-light: #e5f5ed;
    /* Circulos e icones claros */
    --accent-yellow: #d6e921;
    /* Botões e destaques amarelos */
    --text-dark: #222222;
    --text-body: #555555;
    --bg-gray: #f9faf9;
    /* Fundo seções cinza */
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
strong {
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
.text-yellow {
    color: var(--accent-yellow);
}

.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-main);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bg-gray {
    background-color: var(--bg-gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background-color: #c5d81e;
    transform: translateY(-2px);
}

.btn-primary-green {
    background-color: var(--primary-main);
    color: white;
}

.btn-primary-green:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
}

.btn-whatsapp:hover {
    background-color: white;
    color: var(--primary-dark);
}

.btn-dark-green {
    background-color: var(--primary-dark);
    color: white;
}

.btn-dark-green:hover {
    background-color: #082917;
}

/* Header */
.main-header {
    background-color: var(--primary-main);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Ajuste a altura conforme necessário */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 85vh;
}

.swiper {
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

.hero {
    position: relative;
    color: white;
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-1 {
    background-image: linear-gradient(90deg, rgba(8, 38, 20, 0.95) 0%, rgba(13, 58, 34, 0.8) 50%, rgba(13, 58, 34, 0.3) 100%),
        url('https://images.unsplash.com/photo-1531834685032-c34bf0d84c77?auto=format&fit=crop&q=80');
}

.slide-2 {
    background-image: linear-gradient(90deg, rgba(8, 38, 20, 0.95) 0%, rgba(13, 58, 34, 0.8) 50%, rgba(13, 58, 34, 0.3) 100%),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&q=80');
}

.slide-3 {
    background-image: linear-gradient(90deg, rgba(8, 38, 20, 0.95) 0%, rgba(13, 58, 34, 0.8) 50%, rgba(13, 58, 34, 0.3) 100%),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&q=80');
}

/* Custom Swiper Styles */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-yellow) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-yellow) !important;
}

.hero-content {
    max-width: 600px;
}

.yellow-badge {
    background-color: rgba(214, 233, 33, 0.15);
    color: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-credentials {
    display: flex;
    gap: 30px;
}

.credential-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.credential-box i {
    font-size: 24px;
}

.credential-box div {
    display: flex;
    flex-direction: column;
}

.credential-box strong {
    font-size: 0.95rem;
}

.credential-box span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #1ebc5a;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
}

.expertise-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.expertise-image-card {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expertise-image-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 600px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    padding: 40px 30px 30px;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.image-overlay span {
    color: var(--accent-yellow);
    font-weight: 500;
    font-size: 0.9rem;
}

.expertise-content {
    flex: 1;
}

.expertise-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.expertise-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.expertise-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.list-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.list-item span {
    font-size: 0.95rem;
}

/* Documents Section */
.documents {
    padding: 100px 0;
}

.documents h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-main);
}

.icon-green {
    font-size: 40px;
    color: var(--primary-main);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.card span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* Yellow Banner */
.yellow-banner {
    background-color: var(--accent-yellow);
    padding: 30px 0;
}

.banner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 25px;
}

.banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--primary-dark);
}

.banner-text i {
    font-size: 48px;
}

.banner-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
}

.solutions-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solutions-content {
    flex: 1;
}

.solutions-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.solutions-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sol-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sol-item i {
    font-size: 28px;
    color: var(--primary-main);
    margin-top: 2px;
}

.sol-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.solutions-images {
    flex: 1;
    position: relative;
    height: 500px;
}

.solutions-images img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.img-top {
    width: 65%;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-bottom {
    width: 70%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

/* Trainings Section */
.trainings {
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}

.trainings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.trainings h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    max-width: 500px;
}

.link-plataforma {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-main);
    font-weight: 600;
    border-bottom: 1px solid var(--primary-main);
    padding-bottom: 2px;
}

.link-plataforma:hover {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.trainings>p {
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.training-badge {
    background-color: var(--bg-gray);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 130px;
    text-align: center;
    transition: all 0.3s ease;
}

.training-badge:hover {
    background-color: white;
    border-color: var(--primary-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.training-badge strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-main);
    margin-bottom: 5px;
}

.training-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-form-card,
.contact-info-card {
    border-radius: 16px;
    padding: 50px;
}

.contact-form-card {
    flex: 1.5;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-form-card p {
    margin-bottom: 30px;
    color: #666;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-gray);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-main);
    background-color: white;
}

.contact-info-card {
    flex: 1;
    background-color: var(--primary-main);
    color: white;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-yellow);
}

.info-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 0.95rem;
    opacity: 0.9;
}

.social-links {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links strong {
    display: block;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

.social-icons a:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsiveness */
@media (max-width: 992px) {

    .nav-links,
    .btn-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-credentials {
        flex-direction: column;
        gap: 15px;
    }

    .expertise-container,
    .solutions-container,
    .contact-container,
    .banner-container {
        flex-direction: column;
    }

    .grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-images {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .solutions-images img {
        position: relative;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .grid-cards {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .trainings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}