/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MinhaFonte', sans-serif; /* sem vírgula solta */
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #fffefe;
}

@font-face {
    font-family: 'MinhaFonte';
    src: url('fonts/MyriadPro-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

#logo-nav{
    width: 90%;
    height: 7vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
}

/* Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;   /* remove os pontinhos */
    gap: 30px;
    flex: 1;
}

.nav-link {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px; /* aumenta área clicável */
    display: inline-block;
}

.nav-link:hover {
    color: #4CAF50;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {    
    position: relative; /* importante para que o absolute da logo funcione */
    margin-top: 60px;
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 60px;
    background: url("imagens/Banner-2.png") no-repeat center center/cover;   
}

.hero #logo-2 { 
    top: -170px;   /* sobe para o topo */
    right: 150px;
    height: 150px;
    left: 480px;
}

.hero-content {
    position: static;
    z-index: 2; /* garante que fique acima da imagem */
    max-width: 600px;
}

.hero-title {
    margin-top: -135px;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #86868b;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: #4CAF50;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 21px;
    color: #86868b;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 10px;   /* espaço entre o <p> e o botão */
    padding: 10px 16px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-whatsapp:hover { background-color: #1ebe5b; }

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    height: 35%;
    width: 35%;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
}
.btn-primary:hover {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}
.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.btn-catalogo {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 16px;
    background-color: #007bff; /* azul */
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-catalogo:hover { background-color: #0056b3; }

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* Section Titles */
.section-title {
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

#posts .section-title { color: #020202; /* branco */ }

.section-subtitle {
    font-size: 21px;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f5f5f7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
.service-icon i { font-size: 32px; color: white; }

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.service-card p {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
}

/* Posts Section */
.posts {
    padding: 100px 0;
    background: white; 
    margin-top: 60px;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* joga conteúdo para a esquerda */
    padding: 80px 60px;
    position: relative;
    /* Imagem de fundo segunda */
    background: url("imagens/fundo-1.png") no-repeat center center/cover;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.post-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 97%;
}
.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-card img {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: flex;
    justify-content: center;
}

.post-content { padding: 30px; }

.post-content h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
    text-align: center;
    font-weight: bold;
}

.post-content p {
    font-size: 15px;
    color: #000000;
    text-align: justify;
    line-height: 1.8; 
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #f5f5f7;
}

.post-card #ultra-3 {
    width: 90%;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.p product-price  { 
    color: #000000;
    font-size: 15px;
}

#contato { color: #000000; }

@media (min-width: 992px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 30px;
    text-align: center;
}

.product-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.product-price {
    font-size: 19px;
    color: #a8a8a8;
    font-weight: 500;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 60%;
    margin: 0 auto;
    text-transform: none;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-item a {
    color: #1d1d1f;       /* cor padrão (preto/cinza escuro) */
    text-decoration: none; /* remove o sublinhado */
    font-weight: 500;      /* deixa um pouco mais forte */
    transition: color 0.3s ease;
}
.contact-item a:hover { color: #05a139; /* cor oficial do Instagram no hover */ }

.contact {
    padding: 100px 0;
    background: url("imagens/fundo-3.png") no-repeat center center/cover;
    position: relative;
}
.contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* overlay para contraste */
    z-index: 1;
}
.contact .container {
    position: relative;
    z-index: 2; /* conteúdo acima da imagem */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 12px;
}

.contact-item i {
    font-size: 24px;
    color: #4CAF50;
    width: 40px;
}

.contact-item h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1d1d1f;
}

.contact-item p {
    font-size: 17px;
    color: #86868b;
}

.contact-map {
    border-radius: 18px;
    overflow: hidden;
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }

.footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section ul li a:hover { color: #4CAF50; }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    color: #86868b;
    font-size: 24px;
    transition: color 0.3s ease;
}
.social-links a:hover { color: #4CAF50; }

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 20px;
    text-align: center;
    color: #86868b;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}
.whatsapp-float a {
    color: white;           /* cor do ícone */
    text-decoration: none;  /* remove sublinhado do link */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Banner Section */
.banner-section {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}
.banner-section img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
}

/* ===== RESPONSIVIDADE E AJUSTES FINAIS ===== */

/* >=768px: banner mais alto */
@media (min-width: 768px) {
    .banner-section img { height: 60vh; }
}
  
/* <=991px: correções de nave e hero (MOBILE/TABLET) */
@media (max-width: 991px) {
    /* NAV */
    .nav-container { position: relative; height: 66px; }
    .hamburger { display: flex; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); }

    .nav-logo {
        position: absolute; 
        left: 16px;                /* em vez de 50% */
        top: 50%; 
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;    /* permite subtítulo embaixo */
        align-items: flex-start;
        line-height: 1;
    }
  
    #logo-nav{
        position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
        display: flex; flex-direction: column; align-items: flex-start; line-height: 1;
    }

    #logo-nav { width: 120px; height: auto; }
    .nav-logo small { margin-top: 2px; font-size: 11px; color: #6b6b6b; letter-spacing: .2px; }

    /* MENU MOBILE */
    .nav-menu{
        position: fixed; left: -100%; top: 66px; width: 100%;
        flex-direction: column; background-color: rgba(255,255,255,.95);
        backdrop-filter: blur(20px); text-align: center; padding: 20px 0;
        gap: 0; transition: .3s;
    }
    .nav-menu.active { left: 0; }
    .nav-item { margin: 15px 0; }
  
    /* HERO */
    .hero{
        margin-top: 66px;
        min-height: calc(100vh - 66px);
        padding: 10px 16px 120px;
        background-image: url("imagens/Banner-2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 82% 8%;   /* ajuste fino do foco */
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    #logo-2 { display: none !important; }
     
    .hero-buttons{
        justify-content: center;
        gap: 14px;
        margin-top: 28px;               /* desce os botões */
    }
    .btn-primary, .btn-secondary, .btn-whatsapp, .btn-catalogo{
        width: 50%;
        max-width: 320px;
    }
    
    /* HERO – TEXTOS */
    .hero-content{
        width: 100%;
        margin-top: 0;                /* garante que não desça */
        text-align: center;
    }

    .hero-title{ margin: 6px 0 10px; }  /* encosta um pouco no topo */
    .hero-subtitle{ font-size: 18px; margin-bottom: 10px; }
    .hero-description{ font-size: 16px; line-height: 1.5; margin-bottom: 16px; }
    .hero-buttons{ justify-content: center; gap: 14px; margin-top: 28px; }
  
    /* Grids em 1 coluna */
    .services-grid, .posts-grid, .products-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }

    /* HERO – BOTÕES */
    .btn-primary, .btn-secondary, .btn-whatsapp, .btn-catalogo{
        width: 100%; max-width: 320px;
    }
}

/* <=480px: ajustes finos */
@media (max-width: 480px) {
    .hero { background-position: 70% top; }
    .hero-title { font-size: 26px; }
    .section-title { font-size: 28px; }
    .btn-primary, .btn-secondary { width: 100%; margin-bottom: 10px; }
  
    /* Botão flutuante mais compacto */
    .whatsapp-float {
        width: 50px; height: 50px; font-size: 24px;
        bottom: 20px; right: 20px;
    }
}

/* Ícone do botão flutuante sempre branco (evita azul de link) */
.whatsapp-float a { color: #fff; text-decoration: none; display: flex; align-items: center; justify-content: center; }

/* Link do Instagram no contato: clicável, sem azul nem sublinhado */
.contact-item a { color: #1d1d1f; text-decoration: none; font-weight: 500; transition: color .3s ease; }
.contact-item a:hover { color: #E1306C; }

/* Centralizar o 4º card na seção de serviços (desktop largo) */
@media (min-width: 992px) {
    .services-grid .service-card:nth-child(4) { grid-column: 2; }
}

/* POSTS (SEÇÃO NOVIDADES) Mobile ajustes */
@media (max-width: 768px) {
    .posts { padding: 48px 12px; background-position: center top; background-size: cover; }

    .post-card{
        max-width: 94vw; margin: 0 auto; border-radius: 22px;
        box-shadow: 0 12px 32px rgba(0,0,0,.08); overflow: hidden; background: #fff;
    }

    .post-card img{
        display: block; width: 100%;
        height: auto !important;          /* sobrescreve o height:50% global */
        aspect-ratio: 4 / 5;              /* 3/4 se quiser mais alto; 5/6 se quiser mais baixo */
        object-fit: cover;
    }

    .post-content{ padding: 20px 16px 24px; }
    .post-content h3{ font-size: 22px; line-height: 1.25; margin-bottom: 8px; text-align: center; }
    .post-content p{ font-size: 16px; line-height: 1.6; text-align: left; hyphens: auto; text-wrap: pretty; }
}

/* ===== HERO • Ajuste de enquadramento no MOBILE ===== */
@media (max-width: 991px) {
    .home .hero{
        background-size: cover !important;
        background-position: 75% center !important; /* ajuste fino: 72–82% */
    }
}
/* Ultra-mobile (larguras muito estreitas) */
@media (max-width: 390px) {
    .home .hero{ background-position: 80% center !important; }
}
/* Se cortar no topo/baixo (telas baixas) */
@media (max-width: 991px) and (max-height: 750px) {
    .home .hero{ background-position: 75% 10% !important; /* ajuste vertical se precisar */ }
}

/* Botões menores (se usados) */
@media (max-width: 991px) {
    .home .btn-agendar,
    .home .btn-produtos{
        max-width: 220px;     /* menor que 240px */
        width: 100%;
        padding: 9px 14px;
        font-size: 12.5px;
        border-radius: 22px;
    }
    .home .hero-buttons{ gap: 10px; margin-top: 20px; }
}

/* =======================
   RESET DESKTOP (≥992px)
   — restaura layout aprovado e evita vazamento do mobile
   ======================= */
@media (min-width: 992px) {
    /* Se estiver usando <picture> no hero, esconda no desktop */
    .hero .hero-bg{ display: none !important; }

    /* Hero como aprovado no desktop */
    .hero{
        position: relative;
        margin-top: 60px;
        height: 110vh;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 60px;
        background: url("imagens/Banner-2.png") no-repeat center center / cover !important;
    }
    .hero-content{
        position: static !important;
        z-index: 2;
        max-width: 600px;
        text-align: left !important;
        margin-top: 0 !important;
    }
    .hero-title{
        margin-top: -135px;
        font-size: 40px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #86868b;
    }
    .hero-subtitle{
        font-size: 28px;
        font-weight: 400;
        color: #4CAF50;
        margin-bottom: 20px;
    }
    .hero-description{
        font-size: 21px;
        color: #86868b;
        margin-bottom: 40px;
        line-height: 1.4;
    }
    .hero-buttons{
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    .btn-primary, .btn-secondary{
        padding: 12px 24px;
        border-radius: 980px;
        font-size: 14px;
        font-weight: 400;
        height: auto;
        width: 35%;
    }

    /* Grids como aprovados no desktop */
    .services-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }
    .posts-grid{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }
    .products-grid{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 60px;
    }
}

/* ===== POSICIONAR A LOGO #logo-2 NO DESKTOP ===== */
@media (min-width: 992px) {
    .hero { position: relative; }
  
    #logo-2{
      position: absolute !important;
      z-index: 3;
      top: -10px !important;   /* mais pra cima: diminua (-60px, -80px...) */
      right: 320px !important;   /* mais pra direita: aumente (100px, 140px...) */
      width: 30% !important; /* ajuste de tamanho opcional */
      height: auto;
    }
  }

  /* ===== MOBILE (≤991px) — trocar fundo do HERO e ocultar a #logo-2 ===== */
@media (max-width: 991px) {
    /* 1) Troca apenas a imagem de fundo do banner inicial */
    .home .hero{
      background: url("imagens/banner-mobile-2.png") no-repeat center top / cover !important;
    }
  
    /* 2) Some só a logo extra do hero (#logo-2).
          A logo da navbar (#logo-nav) continua aparecendo normalmente. */
    #logo-2{
      display: none !important;
    }
  
    /* (garantia) mantém a logo da navbar visível no mobile */
    .nav-logo, #logo-nav{
      display: block !important;
    }
  }


/* ===== MOBILE (≤991px) — esconder logo do HERO e botões ===== */
@media (max-width: 991px) {
    /* Mantém a logo da navbar visível */
    .nav-logo, #logo-nav { display: block !important; }
  
    /* Some somente a logo extra do HERO (img dentro do hero-content) */
    .home #logo-2,
    .home .hero-content > #logo-2,
    img#logo-2 {
      display: none !important;
      visibility: hidden !important;
    }
  
    /* Esconde os botões do HERO (agendar e conhecer serviços) */
    .home .hero-buttons .btn-primary,
    .home .hero-buttons .btn-secondary {
      display: none !important;
    }
  
    /* Zera o espaço do contêiner dos botões para não empurrar nada */
    .home .hero-buttons {
      margin-top: 0 !important;
      padding: 0 !important;
      gap: 0 !important;
      min-height: 0 !important;
    }
  }
    
  /* ==== MOBILE (≤991px) — Descer o texto e ocultar img quebrada do hero ==== */
@media (max-width: 991px) {
    /* 1) Garante que a imagem de fundo siga a versão mobile */
    .home .hero{
      background: url("imagens/banner-mobile-2.png") no-repeat center top / cover !important;
    }
  
    /* 2) Some com QUALQUER <img>/<picture> dentro do HERO (evita o "Banner iPhone 17 Pro") */
    .home .hero picture,
    .home .hero source,
    .home .hero > img {
      display: none !important;
      visibility: hidden !important;
      width: 0 !important;
      height: 0 !important;
    }
  
    /* 3) Desce os textos do hero */
    /* ==== MOBILE (≤991px) — Descer o texto e ocultar img quebrada do hero ==== */
@media (max-width: 991px) {
    /* 1) Garante que a imagem de fundo siga a versão mobile */
    .home .hero{
      background: url("imagens/banner-mobile-2.png") no-repeat center top / cover !important;
    }
  
    /* 2) Some com QUALQUER <img>/<picture> dentro do HERO (evita o "Banner iPhone 17 Pro") */
    .home .hero picture,
    .home .hero source,
    .home .hero > img {
      display: none !important;
      visibility: hidden !important;
      width: 0 !important;
      height: 0 !important;
    }
  
    /* 3) Desce os textos do hero */
    .home .hero-content{
        position: absolute !important;
        top: -100px !important;   /* valor negativo faz o texto subir */
        left: 50% !important;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        text-align: center;
    }
    
  
  /* Afinamento para telas bem estreitas */
  @media (max-width: 480px) {
    .home .hero-content{
      top: 140px !important;            /* desce um pouco mais em aparelhos menores */
    }
  }
  
  
  /* Afinamento para telas bem estreitas */
  @media (max-width: 480px) {
    .home .hero-content{
      top: 140px !important;            /* desce um pouco mais em aparelhos menores */
    }
  }
  
  /* ===== MOBILE (≤991px) — subir texto do HERO de forma garantida ===== */
@media (max-width: 991px) {
    /* o hero precisa ser referência para posicionamento */
    .home .hero{
      position: relative !important;
      /* se o topo estiver “apertado”, pode reduzir esse padding */
      padding-top: 8px !important;
    }
  
    /* bloco de texto do hero */
    .home .hero-content{
      position: absolute !important;
      left: 50% !important;
      transform: translateX(-50%) translateY(-40px) !important; /* ← sobe 40px */
      top: 100px !important;  /* ponto base; ajuste junto com o translateY */
      width: calc(100% - 32px) !important;
      z-index: 2;
      text-align: center;
    }
  
    /* elimina qualquer “empurrão” dos próprios elementos */
    .home .hero-title{ margin-top: 0 !important; }
    .home .hero-subtitle{ margin-top: 0 !important; }
    .home .hero-description{ margin-top: 0 !important; }
  }
  