/* Variáveis de Cores e Estilos Globais */
:root {
    --primary-color: #0b2522; /* Verde escuro institucional */
    --secondary-color: #164e43;
    --accent-color: #2dd4bf;
    --text-color: #1e293b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

/* Adicionado para justificar todos os textos de parágrafo como no Word */
p {
    text-align: justify;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-mark {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-text {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.btn-linkedin {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0b2522 0%, #164e43 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: rgba(45, 212, 191, 0.15);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--accent-color);
    color: #042f2c;
    padding: 0.8rem 1.75rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--white);
}

/* Sections General */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto 1rem auto;
    border-radius: 2px;
}

.section-header p {
    color: #64748b;
    font-size: 1rem;
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-desc {
    font-size: 1.05rem;
    color: #475569;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Pillars Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(11, 37, 34, 0.08);
}

.pillar-number {
    font-size: 2rem;
    font-weight: 800;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Founder Section (Com Foto Ajustada e Proporcional) */
.founder-section {
    background: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-image-container {
    text-align: center;
}

.founder-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    box-shadow: 0 8px 20px rgba(11, 37, 34, 0.12);
}

.founder-bio {
    grid-column: 2;
}

.founder-bio h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.founder-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.founder-bio p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.founder-highlights {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Store Section */
.store-section {
    background: var(--bg-light);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.store-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -10px rgba(11, 37, 34, 0.1);
}

.featured-card {
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(45, 212, 191, 0.2);
}

[class*="badge-"] {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.badge-free {
    background: #e2e8f0;
    color: #475569;
}

.badge-featured {
    background: var(--accent-color);
    color: #042f2c;
}

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

.store-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.store-card p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.store-features {
    list-style: none;
    margin-bottom: 2rem;
}

.store-features li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.6rem;
}

.btn-store-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

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

.btn-store-primary {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

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

.btn-store-dark {
    background: #1e293b;
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

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

/* Footer */
.site-footer {
    background: #061816;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.site-footer p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.footer-location, .footer-support {
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsivo para Telemóveis */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-photo {
        width: 160px;
        height: 160px;
        margin: 0 auto 1.5rem auto;
    }

    .founder-bio {
        grid-column: 1;
    }

    .founder-highlights {
        grid-column: 1;
    }

    .highlight-item {
        text-align: left;
    }
}
