:root {
--font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
--font-logo: "Montserrat Alternates", "Montserrat", sans-serif;
--blue: #2451a2;
--red: #a01b1e;
--dark: #222222;
--text: #444444;
--muted: #6b7280;
--light: #f5f9ff;
--white: #ffffff;
--border: #e7edf6;
--shadow: 0 14px 35px rgba(20, 35, 65, .08);
--radius: 6px;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
color: var(--text);
background: var(--white);
font-family: var(--font);
font-size: 16px;
line-height: 1.45;
}
img,
iframe {
max-width: 100%;
}
img {
display: block;
height: auto;
}
a {
color: inherit;
text-decoration: none;
transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
a:hover {
color: var(--red);
}
p,h1,h2,h3 {
margin-top: 0;
}
.container {
width: min(1120px, calc(100% - 40px));
margin-inline: auto;
}
.narrow {
width: min(900px, calc(100% - 40px));
}
.top-title{
margin-top: 15px;
}
.title-size{
font-size: 28px;
}
.page-title {
color: #ffffff;
background-color: #2451a2;
padding: 25px 0;
position: relative;
}
.page-title div {
font-size: 18px;
font-weight: 400;
color: #ffffff;
}
.page-title .breadcrumbs ol {
display: flex;
flex-wrap: wrap;
list-style: none;
padding: 0;
margin: 0;
font-size: 14px;
font-weight: 400;
}
.page-title .breadcrumbs ol li+li {
padding-left: 10px;
}
.page-title .breadcrumbs ol li+li::before {
content: "/";
display: inline-block;
padding-right: 10px;
color: #ffffff96;
}
.sobre-title {
color: var(--dark);
font-size: clamp(24px, 3vw, 33px);
line-height: 1.2;
font-weight: 800;
}
.sobre-title strong {
color: var(--blue);
}
.section {
padding: 68px 0;
}
.section-light {
background: var(--light);
}
.section-title {
margin-bottom: 34px;
text-align: center;
}
.section-title span {
display: inline-block;
margin-bottom: 10px;
padding: 6px 17px;
color: var(--blue);
background: #eaf1ff;
border-radius: 999px;
font-size: 12px;
font-weight: 800;
letter-spacing: .08em;
text-transform: uppercase;
}
.section-title h2 {
color: var(--dark);
font-size: clamp(24px, 3vw, 33px);
line-height: 1.2;
font-weight: 800;
}
.section-title h2 strong {
color: var(--blue);
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 11px 28px;
color: var(--white);
background: var(--blue);
border: 0;
border-radius: var(--radius);
box-shadow: 0 10px 24px rgba(36, 81, 162, .18);
font-family: var(--font);
font-size: 13px;
font-weight: 700;
letter-spacing: .04em;
text-transform: uppercase;
cursor: pointer;
}
.btn:hover {
color: var(--white);
background: var(--red);
}
.btn.small {
min-height: 36px;
padding: 8px 18px;
font-size: 11px;
}
.whatsapp {
position: fixed;
right: 14px;
bottom: 18px;
z-index: 40;
filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .22));
}
/* Header */
.site-header {
position: sticky;
top: 0;
z-index: 30;
background: var(--white);
box-shadow: 0 1px 16px rgba(15, 23, 42, .08);
}
.topbar {
color: var(--white);
background: var(--blue);
font-size: 13px;
}
.topbar-inner {
min-height: 45px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.topbar p {
margin: 0;
font-weight: 600;
}
.topbar a {
color: var(--white);
font-size: 16px;
font-weight: 600;
}
.header-main {
background: var(--white);
}
.header-inner {
min-height: 110px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.logo img {
width: 220px;
object-fit: contain;
}
.main-nav ul {
margin: 0;
padding: 0;
display: flex;
align-items: center;
gap: 2px;
list-style: none;
}
.main-nav a {
display: block;
padding: 12px 11px;
color: var(--dark);
font-size: 16px;
font-weight: 600;
}
.main-nav a.active,
.main-nav a:hover {
color: var(--blue);
}
.nav-check,
.nav-toggle {
display: none;
}
/* Hero */
.hero {
position: relative;
display: flex;
align-items: center;
overflow: hidden;
background: url("../img/hero-bg.jpg") center center / cover no-repeat;
padding: 50px 0;
}
.hero-overlay {
position: absolute;
inset: 0;
background: rgba(238, 242, 248, .68);
}
.hero-grid {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 1.05fr .95fr;
align-items: center;
gap: 40px;
}
.hero-text h1 {
color: var(--dark);
font-size: 46px;
line-height: 1.06;
font-weight: 800;
}
.hero-text h1 span {
color: var(--blue);
}
.hero-text p {
color: #21252b;
margin-bottom: 28px;
font-size: clamp(17px, 2.1vw, 22px);
font-weight: 500;
}
.hero-brand {
display: flex;
justify-content: flex-end;
}
.hero-brand img {
width: min(430px, 100%);
object-fit: contain;
}
/* About */
.about-grid {
display: grid;
grid-template-columns: .92fr 1.08fr;
gap: 34px;
}
.about-image {
margin: 0;
}
.about-image img {
width: 100%;
border-radius: 10px;
box-shadow: var(--shadow);
}
.about-content h3 {
color: var(--dark);
margin-bottom: 10px;
font-size: 21px;
line-height: 1.25;
font-weight: 800;
}
.about-content p {
margin-bottom: 16px;
}
/* CTA */
.cta {
position: relative;
min-height: 180px;
display: flex;
align-items: center;
overflow: hidden;
color: var(--white);
background: url("../img/testimonials-bg.jpg") center center / cover no-repeat;
text-align: center;
}
.cta-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, .66);
}
.cta-content {
position: relative;
z-index: 1;
padding: 60px 0;
}
.cta h2 {
color: var(--white);
margin-bottom: 8px;
font-size: 24px;
font-weight: 700;
}
.cta p {
width: min(880px, 100%);
margin: 0 auto 18px;
color: rgba(255, 255, 255, .92);
font-size: 15px;
}
/* Clients */
.intro-text {
width: min(980px, 100%);
margin: 0 auto 28px;
text-align: center;
}
.clients-grid {
display: grid;
grid-template-columns: repeat(7, minmax(90px, 1fr));
align-items: center;
gap: 24px;
}
.clients-grid img {
max-width: 150px;
max-height: 55px;
margin: 0 auto;
object-fit: contain;
}
/* Services */
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.service-card {
min-height: 330px;
padding: 36px 28px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
text-align: center;
background: var(--white);
border: 1px solid var(--border);
box-shadow: 0 8px 22px rgba(18, 52, 94, .04);
}
.service-card:nth-child(7) {
grid-column: 2;
}
.service-card img {
margin-bottom: 20px;
border-radius: var(--radius);
object-fit: cover;
}
.service-card h3 {
min-height: 50px;
color: var(--dark);
margin-bottom: 12px;
font-size: 18px;
line-height: 1.28;
font-weight: 800;
}
.service-card p {
margin-bottom: 22px;
font-size: 14px;
line-height: 1.55;
}
.service-card .btn {
margin-top: auto;
}
/* FAQ */
.faq-section {
padding-bottom: 72px;
}
.faq-list {
display: grid;
gap: 12px;
}
.faq-list details {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--radius);
overflow: hidden;
}
.faq-list summary {
position: relative;
padding: 18px 48px 18px 22px;
color: var(--dark);
font-size: 15px;
font-weight: 800;
cursor: pointer;
list-style: none;
}
.faq-list summary::-webkit-details-marker {
display: none;
}
.faq-list summary::after {
content: "+";
position: absolute;
right: 20px;
top: 50%;
transform: translateY(-50%);
color: var(--blue);
font-size: 22px;
font-weight: 600;
}
.faq-list details[open] summary {
color: var(--white);
background: var(--blue);
}
.faq-list details[open] summary::after {
content: "−";
color: var(--white);
}
.faq-list p {
margin: 0;
padding: 18px 22px;
font-size: 15px;
}
/* Contact */
.contact-section {
background: var(--white);
}
.contact-box {
width: min(980px, 100%);
margin: 0 auto;
padding: 28px;
background: var(--white);
box-shadow: var(--shadow);
border: 1px solid var(--border);
}
.address-row {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 22px;
}
.pin {
width: 45px;
height: 45px;
flex: 0 0 45px;
display: grid;
place-items: center;
color: var(--blue);
background: #eaf1ff;
border-radius: 50%;
font-size: 22px;
font-weight: 700;
}
.address-row h3 {
margin-bottom: 3px;
color: var(--dark);
font-size: 18px;
}
.address-row p {
margin: 0;
font-size: 14px;
}
.contact-box iframe {
display: block;
margin-bottom: 28px;
background: #f1f5f9;
}
.contact-form {
display: grid;
gap: 18px;
}
.form-row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 18px;
}
.contact-form label {
display: grid;
gap: 6px;
color: #555;
font-size: 13px;
font-weight: 500;
}
.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px 14px;
border: 1px solid #dde4ef;
border-radius: 0;
font: inherit;
font-size: 14px;
color: var(--dark);
background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus {
outline: 2px solid rgba(36, 81, 162, .18);
border-color: var(--blue);
}
.form-action {
text-align: center;
}
.contact-form button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 42px;
padding: 10px 28px;
color: var(--white);
background: var(--blue);
border: 0;
border-radius: var(--radius);
font-family: var(--font);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
cursor: pointer;
}
.contact-form button:hover {
background: var(--red);
}
/* Footer */
.div-footer {
color: var(--white);
margin-bottom: 14px;
font-size: 18px;
line-height: 1.3;
font-weight: bold;
}
.site-footer {
color: var(--white);
background: var(--blue);
font-size: 14px;
}
.footer-grid {
padding: 54px 0 34px;
display: grid;
grid-template-columns: 1.25fr .8fr 1.1fr 1fr;
gap: 38px;
}
.footer-logo {
display: inline-block;
margin-bottom: 16px;
color: var(--white);
font-family: var(--font-logo);
font-size: 34px;
font-weight: 700;
letter-spacing: .03em;
}
.site-footer h2 {
color: var(--white);
margin-bottom: 14px;
font-size: 18px;
line-height: 1.3;
}
.site-footer p {
margin-bottom: 8px;
}
.site-footer ul {
margin: 0;
padding: 0;
list-style: none;
}
.site-footer li {
margin-bottom: 9px;
}
.site-footer a {
color: var(--white);
}
.site-footer a:hover {
color: rgba(255, 255, 255, .72);
}
.social-button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 12px;
border: 1px solid rgba(255, 255, 255, .8);
border-radius: var(--radius);
font-size: 18px;
}
.footer-bottom {
padding: 22px 0 28px;
border-top: 1px solid rgba(255, 255, 255, .25);
text-align: center;
}
.footer-bottom p {
margin: 4px 0;
}
.table-responsive {
width: 100%;
overflow-x: auto;
margin: 25px 0 30px;
-webkit-overflow-scrolling: touch;
}
.table-responsive {
width: 100%;
margin: 25px 0 30px;
}
/* =========================================================
TABELA
========================================================= */
.service-table {
width: 100%;
border-collapse: collapse;
background: #ffffff;
border: 1px solid #d9e1ef;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.service-table thead {
background: #2451a2;
}
.service-table thead th {
color: #ffffff;
font-size: 16px;
font-weight: 700;
text-align: left;
padding: 16px 18px;
border-bottom: 1px solid #1d4387;
}
.service-table tbody td {
font-size: 15px;
line-height: 1.6;
color: #252525;
padding: 15px 18px;
border-bottom: 1px solid #e7edf7;
vertical-align: top;
}
.service-table tbody tr:nth-child(even) {
background: #f7faff;
}
.service-table tbody tr:hover {
background: #eef4ff;
}
.service-table tbody tr:last-child td {
border-bottom: none;
}
.service-table th:first-child,
.service-table td:first-child {
width: 30%;
font-weight: 700;
}
/* TABLET */
@media (max-width: 991px) {
.table-responsive {
margin: 22px 0 28px;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
.service-table {
min-width: 100%;
}
.service-table thead th,
.service-table tbody td {
font-size: 14px;
padding: 12px 14px;
}
.service-table th:first-child,
.service-table td:first-child {
width: 34%;
}
}
/* CELULAR */
@media (max-width: 767px) {
.table-responsive {
overflow: visible;
margin: 20px 0 25px;
}
.service-table,
.service-table thead,
.service-table tbody,
.service-table th,
.service-table td,
.service-table tr {
display: block;
width: 100%;
}
.service-table {
border: none;
box-shadow: none;
background: transparent;
}
.service-table thead {
display: none;
}
.service-table tbody tr {
background: #ffffff !important;
border: 1px solid #d9e1ef;
border-radius: 12px;
margin-bottom: 14px;
padding: 0;
overflow: hidden;
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}
.service-table tbody td {
display: block;
width: 100%;
padding: 12px 14px;
font-size: 14px;
line-height: 1.55;
border-bottom: 1px solid #e7edf7;
}
.service-table tbody td:first-child {
width: 100%;
background: #2451a2;
color: #ffffff;
font-weight: 700;
border-bottom: none;
}
.service-table tbody td:last-child {
border-bottom: none;
}
}
/* =========================================================
PORTFOLIO
========================================================= */
#portfolio {
padding: 70px 0 40px;
}
#portfolio .section-title {
text-align: center;
padding-bottom: 28px;
}
#portfolio .section-title h2 {
font-size: 13px;
letter-spacing: 1px;
font-weight: 700;
padding: 8px 20px;
margin: 0 0 14px 0;
background: rgba(36, 81, 162, 0.10);
color: #2451a2;
display: inline-block;
text-transform: uppercase;
border-radius: 50px;
font-family: "Montserrat", sans-serif;
}
#portfolio .section-title p {
margin: 0;
}
#portfolio .section-title p:not(.style4) {
font-size: 20px;
line-height: 1.4;
font-weight: 700;
color: #222222;
}
#portfolio .section-title .description-title {
color: #2451a2;
}
#portfolio .section-title .style4 {
max-width: 980px;
margin: 14px auto 0;
font-size: 19px;
line-height: 1.65;
font-weight: 400;
color: #252525;
}
.style1{
color: #0000ff;
}
/* Grid visual no mesmo estilo da referência */
#portfolio .portfolio-layout {
width: 100%;
}
#portfolio .portfolio-grid {
column-count: 3;
column-gap: 14px;
}
#portfolio .portfolio-item {
display: inline-block;
width: 100%;
margin: 0 0 14px;
break-inside: avoid;
overflow: hidden;
}
#portfolio .portfolio-item img {
width: 100%;
height: auto;
display: block;
border-radius: 15px;
transition: transform 0.35s ease;
}
#portfolio .portfolio-item:hover img {
transform: scale(1.015);
}
/* Ajuste para manter proporção semelhante à imagem enviada */
#portfolio .container {
max-width: 1140px;
}
/* Tablet */
@media (max-width: 991px) {
#portfolio {
padding: 60px 0 30px;
}
#portfolio .portfolio-grid {
column-count: 2;
column-gap: 14px;
}
#portfolio .section-title p:not(.style4) {
font-size: 18px;
}
#portfolio .section-title .style4 {
font-size: 17px;
line-height: 1.6;
}
}
/* Mobile */
@media (max-width: 767px) {
#portfolio .portfolio-grid {
column-count: 1;
column-gap: 0;
}
#portfolio .portfolio-item {
margin-bottom: 16px;
}
#portfolio .section-title {
padding-bottom: 22px;
}
#portfolio .section-title p:not(.style4) {
font-size: 16px;
line-height: 1.5;
}
#portfolio .section-title .style4 {
font-size: 16px;
line-height: 1.65;
}
}
/* Responsive */
@media (max-width: 1060px) {
.header-inner {
min-height: 82px;
}
.nav-toggle {
width: 42px;
height: 42px;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
border: 1px solid var(--border);
border-radius: var(--radius);
cursor: pointer;
}
.nav-toggle span {
width: 22px;
height: 2px;
display: block;
background: var(--dark);
}
.main-nav {
position: absolute;
top: 100%;
left: 20px;
right: 20px;
display: none;
padding: 12px;
background: var(--white);
border: 1px solid var(--border);
box-shadow: var(--shadow);
}
.main-nav ul {
display: grid;
gap: 2px;
}
.main-nav a {
padding: 12px 14px;
}
.nav-check:checked ~ .main-nav {
display: block;
}
.hero-grid,
.about-grid {
grid-template-columns: 1fr;
}
.hero {
min-height: auto;
padding: 84px 0;
}
.hero-brand {
justify-content: flex-start;
}
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.service-card:nth-child(7) {
grid-column: auto;
}
.clients-grid {
grid-template-columns: repeat(4, 1fr);
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 720px) {
body {
font-size: 15px;
}
.container,
.narrow {
width: min(100% - 28px, 1120px);
}
.topbar-inner {
justify-content: center;
text-align: center;
}
.topbar a {
display: none;
}
.logo img {
width: 150px;
}
.section {
padding: 52px 0;
}
.hero {
padding: 35px 0;
text-align: center;
}
.hero-brand {
justify-content: center;
}
.hero-brand img {
width: min(320px, 100%);
}
.about-grid {
gap: 24px;
}
.clients-grid {
grid-template-columns: repeat(2, 1fr);
gap: 22px 18px;
}
.services-grid {
grid-template-columns: 1fr;
}
.service-card {
min-height: unset;
}
.form-row {
grid-template-columns: 1fr;
}
.contact-box {
padding: 20px;
}
.address-row {
align-items: flex-start;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 26px;
}
}
@media (max-width: 420px) {
.hero-text h1 {
font-size: 31px;
}
.section-title h2 {
font-size: 24px;
}
.cta h2 {
font-size: 21px;
}
.whatsapp {
right: 10px;
bottom: 10px;
}
}