/* ===== ROOT & RESET ===== */
:root {
    --primary-dark: #020270;
    --primary-blue: #1a3a70;
    --secondary-blue: #0d47a1;
    --accent-color: #00a8e8;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-light: #888888;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #0f1419;
    --shadow-sm: 0 2px 8px rgba(10, 30, 77, 0.08);
    --shadow-md: 0 8px 24px rgba(10, 30, 77, 0.12);
    --shadow-lg: 0 20px 48px rgba(10, 30, 77, 0.16);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--bg-white) 0%, #f8fafb 100%);
    border-bottom: 1px solid rgba(10, 30, 77, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

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

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}


.company-info h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.company-info p {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.seal-section {
    display: flex;
    align-items: center;
}

.seal {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(10, 30, 77, 0.15));
    transition: transform 0.3s ease;
}

.seal:hover {
    transform: scale(1.05);
}

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    padding: 0;
    position: sticky;
    top: 111px;
    z-index: 998;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
}

.nav-link {
    display: block;
    padding: 18px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00d4ff);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-banner .fotorama {
    height: 500px !important;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fotorama__wrap {
    background: var(--bg-dark);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.about-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 30, 77, 0.05);
}

.about-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.card-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 30, 77, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover .image-wrapper img {
    transform: scale(1.08);
}

.about-card:hover .image-overlay {
    opacity: 1;
}

.card-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.card-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits li {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== CONCEPTS SECTION ===== */
.concepts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
}

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

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

.concept-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.concept-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.concept-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.concept-card:hover .concept-image img {
    transform: scale(1.1);
}

.concept-info {
    padding: 30px 25px;
    text-align: center;
}

.concept-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.concept-info p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.concept-label {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Concept Link Styles */
.concept-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.concept-link:hover {
    color: inherit;
}

.concept-link-icon {
    font-size: 16px;
    margin-top: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translate(-5px, 0);
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
}

.concept-link:hover .concept-link-icon {
    opacity: 1;
    transform: translate(5px, 0);
}

/* ===== TECH SECTION ===== */
.tech-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header.light h2 {
    color: var(--primary-dark);
}

.section-header.light p {
    color: var(--text-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 60px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.tech-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 30, 77, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.tech-logo {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(13, 71, 161, 0.1));
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.tech-card:hover .tech-logo {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.2), rgba(13, 71, 161, 0.2));
    transform: scale(1.1);
}

.tech-logo img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 14px;
    color: var(--text-light);
    flex: 1;
}

/* ===== TECH LINK STYLES ===== */
.tech-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tech-link:hover {
    color: inherit;
}

.tech-link-icon {
    font-size: 16px;
    margin-top: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translate(-5px, -5px);
}

.tech-link:hover .tech-link-icon {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.client-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.client-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.client-card:hover img {
    transform: scale(1.12);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00a8e8 0%, #0d47a1 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-info p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact p,
.footer-social p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.8;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-content > div:last-child {
    text-align: right;
}

.container > .footer-content > div:nth-child(2) {
    text-align: center;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo-section {
        flex-direction: column;
        justify-content: center;
    }

    .company-info h1 {
        font-size: 20px;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 13px;
        border-right: 3px solid transparent;
        border-bottom: none;
    }

    .nav-link::after {
        right: 0;
        width: 3px;
        height: 0;
        bottom: auto;
    }

    .nav-link:hover::after {
        width: 3px;
        height: 100%;
    }

    .hero-banner {
        height: 350px;
    }

    .hero-banner .fotorama {
        height: 350px !important;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-grid {
        gap: 30px;
        margin-top: 30px;
    }

    .card-visual {
        height: 200px;
    }

    .card-content {
        padding: 30px 20px;
    }

    .card-content h2 {
        font-size: 22px;
    }

    .concepts-section,
    .tech-section,
    .clients-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .concepts-grid,
    .tech-grid,
    .clients-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .footer-content {
        text-align: center;
        gap: 30px;
    }

    .footer-content > div:last-child {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 15px;
    }

    .logo {
        height: 50px;
    }

    .seal {
        height: 60px;
    }

    .company-info h1 {
        font-size: 18px;
    }

    .company-info p {
        font-size: 11px;
    }

    .hero-banner {
        height: 250px;
    }

    .hero-banner .fotorama {
        height: 250px !important;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-visual {
        height: 180px;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-content h2 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .concepts-grid,
    .tech-grid,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .concept-card,
    .tech-card,
    .client-card {
        padding: 25px 20px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ===== SOLUTIONS SECTION ===== */
.solutions-section {
    padding: 80px 0;
    background: white;
    border-top: 1px solid rgba(10, 30, 77, 0.08);
}

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

.solutions-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.solutions-section .section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-blue);
}

.solution-icon {
    font-size: 2.8em;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Poppins', sans-serif;
}

.solution-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.solution-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.solution-tags li {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1) 0%, rgba(13, 71, 161, 0.1) 100%);
    color: var(--secondary-blue);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.solutions-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, rgba(13, 71, 161, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 232, 0.2);
}

.solutions-link-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-blue) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-family: 'Poppins', sans-serif;
}

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

@media (max-width: 900px) {
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-section .section-header h2 {
        font-size: 32px;
    }

    .solutions-grid {
        gap: 25px;
    }

    .solution-card {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .solutions-section {
        padding: 40px 0;
    }

    .solutions-section .section-header h2 {
        font-size: 26px;
    }

    .solutions-section .section-header p {
        font-size: 15px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        padding: 20px;
    }

    .solution-icon {
        font-size: 2.2em;
    }

    .solution-card h3 {
        font-size: 18px;
    }

    .solution-card p {
        font-size: 14px;
    }

    .solutions-cta {
        padding: 25px;
    }

    .solutions-link-button {
        padding: 13px 30px;
        font-size: 15px;
    }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8fafb 100%);
    border-top: 1px solid rgba(10, 30, 77, 0.08);
}

.founder-header {
    text-align: center;
    margin-bottom: 60px;
}

.founder-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.founder-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.founder-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.founder-badge {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-badge svg {
    width: 100%;
    height: 100%;
}

.founder-info-quick {
    text-align: center;
    width: 100%;
}

.founder-info-quick h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.title-founder {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.founder-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.founder-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.highlight-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, rgba(13, 71, 161, 0.08) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    text-align: center;
}

.highlight-item strong {
    display: block;
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.highlight-item span {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
}

.founder-expertise {
    background: linear-gradient(135deg, #f5f7fa 0%, #f8fafb 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.founder-expertise h4 {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.founder-expertise ul {
    list-style: none;
}

.founder-expertise li {
    color: var(--text-secondary);
    font-size: 15px;
    padding: 8px 0;
    line-height: 1.6;
}

.founder-link-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-blue) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.founder-link-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.nav-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-blue) 100%);
    color: white !important;
    border-radius: 6px;
    padding: 8px 20px !important;
    transition: var(--transition);
}

.nav-highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
    .founder-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 25px;
    }

    .founder-header h2 {
        font-size: 32px;
    }

    .founder-content h3 {
        font-size: 22px;
    }

    .founder-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .founder-section {
        padding: 50px 0;
    }

    .founder-header h2 {
        font-size: 26px;
    }

    .founder-header p {
        font-size: 15px;
    }

    .founder-container {
        padding: 25px;
    }

    .founder-badge {
        width: 200px;
        height: 200px;
    }

    .founder-info-quick h3 {
        font-size: 22px;
    }

    .founder-content h3 {
        font-size: 20px;
    }

    .founder-content > p {
        font-size: 15px;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .skills-badges {
        gap: 8px;
    }

    .skill-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== UTILITIES ===== */
::selection {
    background-color: var(--accent-color);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}
