/* Tipografia limpa */
body {
    font-family: Arial, Helvetica, sans-serif;
}
/* Compensação global */
body {
  padding-top: 70px; /* desktop */
}

@media (max-width: 991px) {
  body {
    padding-top: 50px; /* mobile */
  }
}

/* Botões amarelos */
.btn-warning {
    background-color: #FFC107;
    border: none;
}

.btn-warning:hover {
    background-color: #e0a800;
}

/* Destaques */
.text-warning {
    color: #FFC107 !important;
}

/* Títulos */
h1, h2, h3 {
    font-weight: 700;
}

/* Links */
a {
    text-decoration: none;
}

/*Pagina contactos*/
.contact-bg {
    position: relative;
    background-color: #f8f9fa; 
    min-height: 100vh;
    padding-top: 0;
    overflow: hidden;
}

/* imagem transparente no fundo */
.contact-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/static/image/chamada.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1150px;
    opacity: 0.12; 
    z-index: 1;
}
/* conteúdo acima */
.contact-bg .container {
    position: relative;
    z-index: 2;
}
.email-link {
    color: #000000;         
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.email-link:hover {
    text-decoration: underline;
}

.img-servico {
    max-width: 240px;  
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Ajuste para mobile */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        font-size: 1.1rem;
    }
}

.form-transparente {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-destaque {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    color: #000;
}

.card-destaque:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    color: #FFC107;
}

/* ===============================
   BLOCO PROBLEMAS MAIS COMUNS
   =============================== */
.card-problemas {
    border-left: 6px solid #ffc107; /* amarelo da marca */
    border-radius: 10px;
    background-color: #ffffff;
}
/* Lista */
.problemas-lista {
    list-style: none;
    padding-left: 0;
    max-width: 600px;
}
.problemas-lista li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Imagem do bloco de problemas */
.problemas-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-problemas .card-body {
    padding: 30px;
}

@media (max-width: 768px) {
    .problemas-img {
        max-height: 220px;
        margin-top: 20px;
    }
}

/*Zonas de Intervenção */
.zonas-intervencao {
    position: relative;
    background-image: url("/static/image/localizacao.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}
.zonas-intervencao::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1 ;
}
.zonas-intervencao .container {
    position: relative;
    z-index: 2;
}
.zona-card {
    border: none;
    background-color: #ffffff;
    transition: 
        transform 0.3s ease, 
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

/* Hover amarelo claro */
.zona-card:hover {
    background-color: #ffc107; /* amarelo claro */
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Garantir texto preto */
.zona-card,
.zona-card h3,
.zona-card p {
    color: #000;
}

/* Navbar fixa */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    z-index: 1000;
}
.navbar-nav .nav-link {
    font-size: 1.15rem; /* ajuste fino */
    font-weight: 700;
}
.navbar .btn {
    font-size: 1.05rem;
    padding: 8px 16px;
}
.logo-navbar {
    height: 70px;
    width: auto;
}

/* Página Sobre Nós */
.sobre-bg {
    text-align: justify;
    position: relative;
    background-color: f8f9fa;
    padding-top: 0;
    overflow: hidden;
}

.sobre-bg h1 {
    margin-top: 0;
}
.sobre-conteudo {
    display: flex;
    align-items: center;     
    gap: 32px;                
}

/* Texto ocupa mais espaço */
.texto-sobre {
    flex: 1;
}

/* Imagem controlada */
.img-sobre {
    max-width: 400px;
    height: auto;
    flex-shrink: 0;           
}

@media (max-width: 768px) {
    .sobre-conteudo {
        flex-direction: column;
        text-align: justify;
    }

    .img-sobre {
        max-width: 200px;
    }
}

/* Card do formulário transparente */
.form-transparente {
    background-color: rgba(255, 255, 255, 0.144); 
    backdrop-filter: blur(2px); 
}

/* CONTAINER DOS CARDS */
.cards {
    display: flex;
    gap: 30px;
    align-items: stretch; /* todos com a mesma altura */
}

/* CARD BASE */
.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);

    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* TÍTULO */
.info-card h3 {
    margin-bottom: 12px;
}

/* TEXTO */
.info-card p {
    margin-bottom: 20px;
    text-align: center;
}

/* ÁREA DO ÍCONE (SEMPRE EM BAIXO) */
.card-icon {
    margin-top: auto;            /* empurra para o fundo */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGEM */
.card-icon img {
    max-width: 180px;
    width: 100%;
    opacity: 0.95;
}

/* ANIMAÇÃO */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER */
.info-card:hover {
    color: #FFC107;
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 767px) {
    .cards {
        flex-direction: column;
    }

    .info-card {
        padding: 25px 18px;
    }
}

.cta-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.cta-card p {
    font-size: 1.05rem;
}

.servicos-section {
    padding: 15px 0;
}

.servico-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.servico-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servico-body {
    padding: 24px;
}

.servico-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.servico-body p {
    font-size: 0.95rem;
    color: #3a3939;
    margin-bottom: 0;
}

/* HOVER MINIMALISTA */
.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* =========================
   REDES SOCIAIS — DESKTOP
========================= */

.social-nav {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.social-nav a {
    font-size: 1.6rem;
    margin-left: 18px;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Facebook */
.social-nav .facebook {
    color: #1877F2;
}

/* WhatsApp */
.social-nav .whatsapp {
    color: #25D366;
}

/* Instagram (gradiente oficial) */
.social-nav .instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fd5949 45%,
        #d6249f 60%,
        #285AEB 90%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover discreto */
.social-nav a:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* Esconde redes desktop no mobile */
@media (max-width: 991px) {
    .social-nav {
        display: none;
    }
}

/* =========================
   REDES SOCIAIS — MENU MOBILE
========================= */

@media (max-width: 991px) {

    /* ícones maiores no mobile */
    .navbar-nav .d-flex.gap-3 a {
        font-size: 2rem;
        line-height: 1;
        text-decoration: none;
    }

    /* Facebook */
    .navbar-nav .facebook {
        color: #1877F2;
    }

    /* WhatsApp */
    .navbar-nav .whatsapp {
        color: #25D366;
    }

    /* Instagram (gradiente oficial) */
    .navbar-nav .instagram {
        background: radial-gradient(
            circle at 30% 107%,
            #fdf497 0%,
            #fd5949 45%,
            #d6249f 60%,
            #285AEB 90%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* espaçamento confortável */
    .navbar-nav .d-flex.gap-3 {
        gap: 28px;
        margin-top: 25px;
        justify-content: center;
    }
}

/* =====================
   HERO
===================== */

.hero {
    padding: 30px 0;
}

/* Título */
.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span {
    color: #ffc107;
}

/* Texto */
.hero .lead {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Checks */
.hero-checks {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #555;
}

.hero-checks li {
    margin-bottom: 6px;
}

/* Imagem */
.hero-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 991px) {

    .hero {
        padding-top: 5px;
        padding-bottom: 10px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-checks {
        text-align: center;
    }
}

/* Porque escolher */
.porque-nos p {
    max-width: 900px;
}

/* Chamada final */
.chamada-final .cta-box {
    background: #1f2428;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
}

.chamada-final p {
    color: #e0e0e0;
}

.chamada-final .btn-warning {
    padding: 14px 28px;
}

/* Animação base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Quando aparece */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

sup {
    font-size: 0.45em;
    vertical-align: super;
}

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1f2428;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#cookie-banner a {
    color: #ffc107;
    text-decoration: underline;
}

#cookie-banner button {
    background: #ffc107;
    border: none;
    padding: 8px 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
}

.footer-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* =========================
   PÁGINAS LEGAIS
========================= */

.pagina-legal {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.pagina-legal .legal-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: auto;
}

.pagina-legal h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pagina-legal h2 {
    font-size: 1.3rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pagina-legal p,
.pagina-legal li {
    color: #333;
    line-height: 1.7;
}

.pagina-legal ul {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .pagina-legal .legal-card {
        padding: 25px;
    }
}

/* Páginas legais: Privacidade & Cookies */
.legal-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.legal-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 6px solid #ffc107; /* identidade SOS */
}

.legal-card h1 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-card h2 {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-card p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-card ul li {
    margin-bottom: 8px;
}

.legal-intro {
    font-weight: 500;
    color: #444;
}

/* Responsivo */
@media (max-width: 768px) {
    .legal-card {
        padding: 30px 20px;
    }
}

/* =========================
   PÁGINA OPS - FULLSCREEN
========================= */

.ops-hero {
    position: relative;
    min-height: 100vh;
    background-image: url("/static/image/ops-porta.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}

/* Overlay para contraste */
.ops-overlay {
    position: absolute;
    inset: 0;
    background: rgba(124, 118, 118, 0.55);
}

/* Conteúdo */
.ops-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

/* Texto */
.ops-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.ops-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.ops-content p {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

/* Botões */
.ops-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Responsivo */
@media (max-width: 768px) {
    .ops-title {
        font-size: 3rem;
    }

    .ops-subtitle {
        font-size: 1.4rem;
    }

    .ops-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.img-protegida {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.zonas-intervencao a {
  color: #000; /* preto profissional */
  text-decoration: none;
  font-weight: 600;
}

.zonas-intervencao a:hover {
  color: #ffc107; /* amarelo da marca */
  text-decoration: underline;
}
.marcas {
  background-color: #f8f8f8;
}

.marcas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.marcas-grid img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.marcas-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


@media (max-width: 991px) {

  .navbar-collapse {
    position: fixed;
    top: 70px; /* altura da navbar */
    left: 0;

    width: 100%;
    height: calc(100vh - 70px);

    background: #fff;
    padding: 25px;

    overflow-y: auto;
    z-index: 9999;
  }

  body.nav-open {
    overflow: hidden;
  }

  .navbar-nav {
    align-items: flex-start !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .navbar-nav .btn {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .navbar-nav .d-flex.gap-3 {
    justify-content: center;
    margin-top: 25px;
  }
}




