/* ===========================
   RESET E VARIÁVEIS GLOBAIS
   =========================== */

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

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #f0f4ff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

/* ===========================
   CONTAINER
   =========================== */

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

/* ===========================
   NAVEGAÇÃO
   =========================== */

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-logo a:hover {
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===========================
   BOTÕES
   =========================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===========================
   SEÇÕES GENÉRICAS
   =========================== */

section {
    padding: 80px 20px;
}

section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
}

section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* ===========================
   DIFERENCIAIS
   =========================== */

.diferenciais {
    background-color: var(--secondary-color);
}

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

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

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

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

.diferencial-card h3 {
    margin-bottom: 10px;
}

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

/* ===========================
   MODELOS DE ATUAÇÃO
   =========================== */

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

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

.modelo-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.modelo-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.modelo-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modelo-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===========================
   TECNOLOGIAS
   =========================== */

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

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.tech-item {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tech-item:hover {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: var(--shadow);
}

/* ===========================
   CTA FINAL
   =========================== */

.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* ===========================
   SERVIÇOS DETALHADOS
   =========================== */

.servicos-detalhados {
    background-color: var(--white);
}

.servico-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.servico-numero {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
}

.servico-conteudo h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.servico-conteudo p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.servico-lista {
    list-style: none;
    margin-top: 15px;
}

.servico-lista li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.servico-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* ===========================
   ESPECIALIDADES
   =========================== */

.especialidades {
    background-color: var(--secondary-color);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.especialidade-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.especialidade-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 18px;
}

.especialidade-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===========================
   PROCESSO
   =========================== */

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

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

.step {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===========================
   SOBRE EMPRESA
   =========================== */

.sobre-empresa {
    background-color: var(--secondary-color);
    text-align: center;
}

.sobre-empresa h2 {
    margin-bottom: 30px;
}

.sobre-empresa p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* ===========================
   EQUIPE
   =========================== */

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

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

.membro-card {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.membro-foto {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.membro-foto img {
    width: 100%;
    height: 100%;
    display: block;
		object-fit: cover;
		object-position: top;
}

.foto-placeholder {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.membro-card h3 {
    padding: 20px 20px 5px;
    margin: 0;
    color: var(--text-dark);
}

.cargo {
    padding: 0 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.membro-bio {
    padding: 20px;
}

.membro-bio p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.skill-tag {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ===========================
   VALORES
   =========================== */

.valores {
    background-color: var(--secondary-color);
}

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

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

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color);
}

.valor-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

/* ===========================
   CONTATO
   =========================== */

.contato-section {
    background-color: var(--white);
}

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

.contato-form h2,
.contato-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: left;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

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

.form-message {
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.info-item p {
    color: var(--text-light);
    font-size: 14px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-dark);
}

.info-box {
    background: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 20px;
    text-align: center;
    color: #999999;
    font-size: 14px;
}

/* ===========================
   RESPONSIVIDADE
   =========================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 20px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        padding: 50px 20px;
    }

    section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .servico-numero {
        font-size: 32px;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        height: 60px;
    }

    .navbar-logo a {
        font-size: 22px;
    }

    .hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    section h3 {
        font-size: 18px;
    }

    .diferenciais-grid,
    .modelos-grid,
    .tech-grid,
    .especialidades-grid,
    .valores-grid {
        grid-template-columns: 1fr;
    }

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

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 24px;
    }

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