:root { --primary: #2563eb; --primary-dark: #1d4ed8; --bg: #f8fafc; --text: #1e293b; --text-muted: #64748b; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, sans-serif; background: white; color: var(--text); line-height: 1.6; } header, section, footer { padding: 60px 20px; max-width: 800px; margin: auto; } h1, h2, h3 { line-height: 1.2; margin-bottom: 20px; } h1 { font-size: 2.5em; color: var(--text); } h2 { font-size: 1.8em; color: var(--primary); } h3 { display: flex; align-items: center; font-size: 1.2em; margin-bottom: 12px; } h3 svg { margin-right: 8px; stroke: var(--primary); } p { font-size: 1.1em; color: var(--text-muted); margin-bottom: 20px; } .btn { display: inline-flex; align-items: center; background: var(--primary); color: white; padding: 12px 24px; border-radius: 999px; text-decoration: none; font-weight: 600; transition: background 0.2s ease; } .btn svg { margin-left: 8px; } .btn:hover { background: var(--primary-dark); } .button-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 20px; } .btn-outline { display: inline-flex; align-items: center; padding: 12px 24px; border: 2px solid var(--primary); border-radius: 999px; text-decoration: none; font-weight: 600; color: var(--primary); background: transparent; transition: background 0.2s ease; } .btn-outline svg { margin-left: 8px; } .btn-outline:hover { background-color: #eff6ff; } .section-light { background-color: var(--bg); } .features { display: grid; gap: 24px; margin-top: 32px; } @media (min-width: 600px) { .features { grid-template-columns: 1fr 1fr; } } .feature-card { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; } .audience-grid { display: grid; gap: 20px; margin-top: 20px; } @media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } } .audience-card { background: var(--bg); border-radius: 12px; padding: 18px; border: 2px solid transparent; transition: border-color 0.2s ease; } .audience-card:hover { border-color: var(--primary); } .audience-card h3 { margin-bottom: 8px; font-size: 1.1em; } .audience-card p { font-size: 0.95em; margin: 0; } .training-format { display: grid; gap: 16px; margin-top: 32px; } @media (min-width: 600px) { .training-format { grid-template-columns: 1fr 1fr; gap: 24px; } } .format-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; padding: 20px; display: flex; align-items: flex-start; gap: 16px; } .format-item svg { flex-shrink: 0; stroke: var(--primary); } .format-item-content h4 { margin: 0 0 8px 0; font-size: 1em; color: var(--text); } .format-item-content p { margin: 0; font-size: 0.9em; } ul { padding-left: 20px; color: var(--text-muted); } li { margin-bottom: 10px; position: relative; padding-left: 24px; } li::before { content: ''; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; background: no-repeat center/contain; mask: url('https://unpkg.com/feather-icons/dist/icons/check.svg') no-repeat center; background-color: var(--primary); mask-size: contain; -webkit-mask: url('https://unpkg.com/feather-icons/dist/icons/check.svg') no-repeat center; -webkit-mask-size: contain; } footer { font-size: 0.9em; text-align: center; color: var(--text-muted); } .cta { text-align: center; margin-top: 40px; } .consultancy-services { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 24px; margin-top: 24px; } .service-card { flex-direction: column; /* Empilha ícone e texto verticalmente */ justify-content: center; text-align: center; display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: white; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 1px 3px rgb(0 0 0 / 0.05); min-height: 140px; } .service-icon { stroke: var(--primary); stroke-width: 2; width: 22px; height: 22px; flex-shrink: 0; } .service-card p { margin: 0; font-size: 1.05em; line-height: 1.4; color: var(--text-muted); } .consultancy-details { display: flex; gap: 40px; margin-top: 32px; flex-wrap: wrap; } .time-distribution, .package-includes { flex: 1 1 300px; background: var(--bg); border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; } .time-distribution h3, .package-includes h3 { color: var(--primary); margin-bottom: 16px; } .time-item { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; } .time-hours { font-size: 1.8em; font-weight: 700; color: var(--primary); min-width: 48px; text-align: right; } .time-desc { font-size: 1em; color: var(--text-muted); } .package-includes ul { list-style: disc inside; color: var(--text-muted); padding-left: 0; } .package-includes li { list-style: none; margin-bottom: 10px; } /* Responsivo - no mobile, as colunas empilham */ @media (max-width: 600px) { .consultancy-details { flex-direction: column; } } .about-with-photo { display: flex; gap: 40px; align-items: flex-start; } .profile-photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 4px solid white; box-shadow: 0 8px 32px rgba(37, 99, 235, 0.15); } .about-content { flex: 1; } /* Link no texto "Sobre mim" */ .about-content a { color: var(--primary); text-decoration: none; font-weight: 600; border-bottom: 1px solid transparent; transition: border-bottom-color 0.2s ease; } .about-content a:hover { border-bottom-color: var(--primary); } /* Responsivo */ @media (max-width: 768px) { .about-with-photo { flex-direction: column; align-items: center; text-align: center; } .profile-photo { width: 150px; height: 150px; } .about-content { text-align: left; } }