/* ============================
   FONTES
============================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* ============================
   BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F4F4F4;
    color: #222;
    font-family: 'Inter', sans-serif;
}

/* ============================
   TIPOGRAFIA
============================ */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #111;
}

/* ============================
   CONTAINER
============================ */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ============================
   HEADER
============================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #DDD;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #111;
}

/* MENU */
.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #333 !important;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover,
.nav .active {
    color: #005BBB !important;
}

/* LÍNGUAS */
.lang a {
    color: #333 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* ============================
   HERO LIMPO
============================ */
.hero-clean {
    background: #E9ECEF;
    padding: 140px 0 90px;
    text-align: center;
    border-bottom: 1px solid #DDD;
}

.hero-clean-content h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-clean-content .sub {
    font-size: 20px;
    opacity: 0.8;
}

/* ============================
   SECÇÕES INTERNAS
============================ */
.pagina {
    padding: 80px 0;
}

.texto-pagina {
    max-width: 900px;
    margin: 0 auto;
}

.texto-pagina h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #111;
}

.texto-pagina p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* ============================
   CARTÕES MODERNOS
============================ */
.card-info {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #DDD;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin: 25px 0;
}

.card-info h3 {
    color: #005BBB;
    margin-bottom: 10px;
}

/* GRID DE 3 CARTÕES */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

/* LISTA MODERNA */
.lista-moderna li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    color: #333;
}

.lista-moderna li::before {
    content: "•";
    color: #005BBB;
    position: absolute;
    left: 0;
}
/* ============================
   LAYOUT A — MINIMALISTA PREMIUM
============================ */

/* HERO CLARO */
.hero-light {
    background: #FFFFFF;
    border-bottom: 1px solid #EEE;
}

.hero-light h1 {
    color: #111;
}

.hero-light .sub {
    color: #555;
}

/* TÍTULOS DE SECÇÃO */
.sec-title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #111;
}

/* CARTÕES CLAROS */
.card-light {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid #E5E5E5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.card-light h3 {
    color: #005BBB;
    margin-bottom: 12px;
}

/* GRID 2 */
.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* GRID 3 */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* BOTÃO CLARO */
.btn-light {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #005BBB;
    color: #FFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-light:hover {
    background: #004999;
}
/* ============================
   LAYOUT B — DARK PREMIUM
============================ */

/* HERO ESCURO */
.hero-dark {
    background: #0A0A0A;
    padding: 140px 0 90px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-dark-content h1 {
    font-size: 52px;
    font-weight: 900;
    color: #FFFFFF;
}

.hero-dark-content .sub {
    font-size: 20px;
    color: #CCCCCC;
}

/* TÍTULOS ESCUROS */
.sec-title-dark {
    color: #111;
}
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #FFFFFF;
}

/* CARTÕES ESCUROS */
.card-dark {
    background: #151515;
    padding: 35px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.card-dark h3 {
    color: #E1B12C;
    margin-bottom: 12px;
}

.card-dark p {
    color: #CCCCCC;
    line-height: 1.7;
}

/* GRID 3 ESCURO */
.card-grid-3-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* GRID 2 ESCURO */
.card-grid-2-dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
/* Fundo escuro para a página de serviços */
.servicos-dark {
    background: #0A0A0A;
    padding: 80px 0;
}
.sec-title-dark {
    text-align: center;
}
.showroom-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}
.cert-img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}
.logo img {
    height: 180px;   /* aumenta aqui o tamanho */
    width: auto;
    display: block;
}

.header .container {
    align-items: center;
    padding: 20px 0;
}
.nav {
    margin-left: 20px;
}
.logo img {
    height: 85px;   /* tamanho grande mas equilibrado */
    width: auto;
}
.header .container {
    padding: 10px 0;   /* antes devia estar 0 ou muito baixo */
    align-items: center;
}
.nav {
    margin-left: 20px;
}
.hero-clean {
    margin-top: 20px;   /* evita que o título fique tapado */
}
.logo img {
    height: 130px;   /* tamanho grande e visível */
    width: auto;
}
.header .container {
    padding: 20px 0;   /* aumenta o espaço vertical */
    align-items: center;
}
.hero-clean {
    margin-top: 40px;
}
.nav {
    margin-left: 25px;
}
.logo img {
    height: 160px;   /* tamanho grande e bem visível */
    width: auto;
}
.header .container {
    padding: 25px 0;
    align-items: center;
}
.hero-clean {
    margin-top: 60px;
}
.nav {
    margin-left: 30px;
}
.hero-clean {
    margin-top: 120px;   /* aumenta até o título ficar perfeito */
}
.header .container {
    padding-left: 10px;   /* antes devia estar 20px ou 30px */
}
.header .container {
    padding-left: 0;
}
.logo img {
    height: 160px;   /* ou 180px se quiseres ainda maior */
    width: auto;
    display: block;
}
.header .container {
    align-items: center;
}
.nav {
    margin-left: 40px;
}
.header .container {
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
}
.header {
    padding-top: 0;
}
.header .container {
    padding-left: 0;
}
.header .container {
    padding-left: 10px;
}
.logo img {
    margin-top: -10px;   /* ajusta entre -5px e -20px conforme o visual */
}
/* Logótipo maior */
.logo img {
    height: 160px;     /* ajusta para 170 ou 180 se quiseres ainda maior */
    width: auto;
    margin-top: -10px; /* sobe ligeiramente o logo */
}

/* Encostar o logótipo à esquerda e reduzir espaço vertical */
.header .container {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
}

/* Afastar o menu do logótipo */
.nav {
    margin-left: 35px;
}
.hero-clean {
    margin-top: 130px;   /* ajusta entre 120 e 160 conforme o visual */
}

