/* hero.css */
/* hero.css */

.hero {
    /* background: radial-gradient(circle at top bottom, #1e293b 0%, #0f1729 100%); */
    min-height: calc(100vh - 100px);
    box-sizing: border-box;

    scroll-margin-top: 0px;
    padding: 3.5rem 2rem;

    background: linear-gradient(
        180deg,
        #0f1729 0%,
        #0f1729 10%,
        #0f1729 20%,
        #0f1729 93%,
        #1e293b 95%,
        #0f1729 100%
    );

    color: #fff;
    text-align: left;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

section:not(#home) {
    scroll-margin-top: 100px;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Título principal */
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, #6c63ff, #4fa3ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Texto descritivo */
.hero p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    max-width: 1200px;
}


/* =====================================================
   BOTÕES
   ===================================================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}


/* Configuração comum dos 3 botões */
.hero-buttons a {
    width: 220px;
    min-height: 52px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0.9rem 1.8rem;

    border-radius: 10px;

    color: #fff;
    font-weight: 600;

    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition: all 0.3s ease;
}


/* =====================================================
   BOTÕES PRINCIPAIS
   "Entre em Contato"
   "Baixar Catálogo"
   ===================================================== */

/* .hero-buttons .primary {
    background: #7872f0;
    border: 1px solid #7872f0;
    color: #fff;
}

.hero-buttons .primary:hover {
    background: #5a52d6;
    color: #fff;

    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(108, 99, 255, .45);
    filter: brightness(1.08);

    text-decoration: none !important;
} */


/* =====================================================
   BOTÃO SECUNDÁRIO
   "Conheça os Produtos"
   ===================================================== */

/* .hero-buttons .secondary {
    background: transparent;
    border: 1px solid #6c63ff;
    color: #fff;
}

.hero-buttons .secondary:hover {
    background: #6c63ff;
    color: #fff;

    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(108, 99, 255, .45);

    text-decoration: none !important;
} */


/* =====================================================
   ESTADOS DOS LINKS
   Remove sublinhado em qualquer situação
   ===================================================== */

.hero-buttons a:link,
.hero-buttons a:visited,
.hero-buttons a:hover,
.hero-buttons a:focus,
.hero-buttons a:active {
    text-decoration: none !important;
    color: #fff;
}


/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 768px) {

    .hero {
        text-align: center;
        align-items: center;
        padding: 4rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 320px;
    }
}
/* .hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0b0d1a, #111);
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .primary {
  background: #6c63ff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.hero-buttons .secondary {
  background: transparent;
  border: 1px solid #6c63ff;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  color: #6c63ff;
  cursor: pointer;
}
 */
