/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #5C606B;
    background-color: #FFFFFF;
}

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

/* Cores da paleta */
:root {
    --primary-color: #50A186;
    --secondary-color: #5C606B;
    --accent-color: #97E1BC;
    --white: #FFFFFF;
    --light-bg: rgba(151, 225, 188, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Utilitários */
.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-block;
    background: rgba(151, 225, 188, 0.3);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(80, 161, 134, 0.3);
}

.badge.light {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.badge.small {
    padding: 4px 12px;
    font-size: 12px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: rgba(80, 161, 134, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: rgba(151, 225, 188, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Cards */
.card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(80, 161, 134, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.brand-subtitle {
    font-size: 12px;
    color: var(--secondary-color);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-btn {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(151, 225, 188, 0.2), rgba(255, 255, 255, 1), rgba(80, 161, 134, 0.1));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 24px 0;
    color: var(--secondary-color);
}

.hero-description {
    font-size: 20px;
    margin: 24px 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin: 32px 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.section-title.light {
    color: white;
}

.section-description {
    font-size: 20px;
    color: var(--secondary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Sobre Section */
.sobre {
    padding: 96px 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.sobre-description {
    margin: 24px 0;
}

.sobre-description p {
    margin-bottom: 16px;
}

.qualifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(151, 225, 188, 0.2);
    border-radius: 8px;
}

.qualification-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.mission-vision {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.mission-card {
    background: linear-gradient(135deg, rgba(151, 225, 188, 0.2), rgba(80, 161, 134, 0.1));
}

.vision-card {
    background: linear-gradient(135deg, rgba(80, 161, 134, 0.1), rgba(151, 225, 188, 0.2));
}

.mission-card h3,
.vision-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.mission-card i,
.vision-card i {
    color: var(--primary-color);
}

.sobre-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.formations-card {
    background: linear-gradient(135deg, rgba(151, 225, 188, 0.2), rgba(80, 161, 134, 0.1));
}

.formations-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.formations-card i {
    color: var(--primary-color);
}

.formations-card ul {
    list-style: none;
    line-height: 1.8;
}

.cv-card {
    background: linear-gradient(135deg, rgba(80, 161, 134, 0.1), rgba(151, 225, 188, 0.2));
}

.cv-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cv-icon {
    width: 48px;
    height: 48px;
    background: rgba(80, 161, 134, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cv-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.cv-text h3 {
    margin-bottom: 4px;
    color: var(--secondary-color);
}

.cv-text p {
    font-size: 14px;
    color: var(--secondary-color);
    margin: 0;
}

/* ODS Section */
.ods {
    padding: 96px 0;
    background: linear-gradient(135deg, rgba(151, 225, 188, 0.2), rgba(80, 161, 134, 0.1));
}

.ods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.ods-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.ods-card:hover {
    transform: translateY(-8px);
}

.ods-icon {
    width: 64px;
    height: 64px;
    background: rgba(80, 161, 134, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ods-icon i {
    color: var(--primary-color);
    font-size: 32px;
}

.ods-card h3 {
    margin-bottom: 12px;
    color: var(--secondary-color);
}

/* Impacto Section */
.impacto {
    padding: 96px 0;
    background: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.impacto::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

.impacto-card {
    background: linear-gradient(135deg, rgba(80, 161, 134, 0.2), rgba(151, 225, 188, 0.1));
    border: 1px solid rgba(80, 161, 134, 0.3);
    text-align: center;
    color: white;
}

.impacto-icon {
    width: 64px;
    height: 64px;
    background: rgba(80, 161, 134, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.impacto-icon i {
    color: var(--accent-color);
    font-size: 32px;
}

.impacto-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.impacto-card h3 {
    margin-bottom: 12px;
}

.impacto-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Serviços Section */
.servicos {
    padding: 96px 0;
    background: linear-gradient(135deg, #f9fafb, rgba(151, 225, 188, 0.2));
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.servico-card {
    background: linear-gradient(135deg, white, rgba(151, 225, 188, 0.2));
    transition: transform 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-8px);
}

.servico-header {
    text-align: center;
    margin-bottom: 24px;
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: rgba(80, 161, 134, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.servico-icon i {
    color: var(--primary-color);
    font-size: 32px;
}

.servico-header h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.servico-header p {
    color: var(--secondary-color);
}

.servico-features {
    list-style: none;
    margin-bottom: 24px;
}

.servico-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.servico-features i {
    color: var(--primary-color);
    font-size: 16px;
}

/* Galeria Section */
.galeria {
    padding: 96px 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(92, 96, 107, 0.8));
    color: white;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay p {
    margin: 0;
    font-weight: 600;
}

/* Depoimentos Section */
.depoimentos {
    padding: 96px 0;
    background: linear-gradient(135deg, rgba(151, 225, 188, 0.2), rgba(80, 161, 134, 0.1));
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.depoimento-card {
    border: 1px solid rgba(80, 161, 134, 0.3);
}

.depoimento-icon {
    width: 48px;
    height: 48px;
    background: rgba(80, 161, 134, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.depoimento-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.depoimento-content p {
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.depoimento-author strong {
    color: var(--secondary-color);
    display: block;
}

.depoimento-author span {
    color: rgba(92, 96, 107, 0.7);
    font-size: 14px;
}

/* Contato Section */
.contato {
    padding: 96px 0;
    background: linear-gradient(135deg, rgba(151, 225, 188, 0.2), rgba(80, 161, 134, 0.1));
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contato-description {
    font-size: 18px;
    margin: 24px 0;
    line-height: 1.6;
}

.contato-items {
    margin: 48px 0;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid rgba(80, 161, 134, 0.2);
}

.contato-icon {
    width: 48px;
    height: 48px;
    background: rgba(80, 161, 134, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.contato-text strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 4px;
}

.contato-text p {
    color: var(--secondary-color);
    margin: 0;
}

.social-media {
    margin-top: 32px;
}

.social-media p {
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--secondary-color);
}

.contato-form-container .card {
    box-shadow: var(--shadow-lg);
}

.card-header {
    margin-bottom: 32px;
}

.card-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.card-header p {
    color: var(--secondary-color);
    margin: 0;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid rgba(80, 161, 134, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-disclaimer {
    font-size: 12px;
    color: rgba(92, 96, 107, 0.7);
    text-align: center;
    margin-top: 16px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: var(--primary-color);
    color: white;
    border: none;
}

.footer-badges .badge:nth-child(2) {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.footer-links h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-btn {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .qualifications {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .servicos-grid,
    .galeria-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .ods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impacto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .ods-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float a {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .whatsapp-float,
    .header,
    .footer {
        display: none;
    }
    
    .hero,
    .sobre,
    .servicos {
        page-break-inside: avoid;
    }
}