/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIÁVEIS */
:root {
  --blue: #0d1b2a;
  --blue-light: #1b263b;
  --gold: #c59d5f;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--blue);
}

/* TIPOGRAFIA */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(13,27,42,0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  color: var(--gold);
  font-weight: bold;
  font-size: 20px;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  color: white;
  font-size: 25px;
  cursor: pointer;
}

/* MOBILE */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--blue);
  padding: 20px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
}

.hero {
  height: 100vh;
  background: url(./assets/bg-hero.jpeg) center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.overlay {
  /* background: rgba(13,27,42,0.7); */
  padding: 40px 30px;
  text-align: center;
  border-radius: 10px;
  max-width: 800px;
}

/* TEXTO AJUSTADO */
.overlay h1 {
  font-size: 60px;
  margin-bottom: 2px;
  color: white;
}

.subtitle {
  font-size: 12px;
  margin-bottom: 15px;
  color: white;
}

.description {
  font-size: 30px;
  margin-bottom: 25px;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* BOTÃO */
.btn.primary {
  font-size: 16px;
  padding: 12px 24px;
}

/* BOTÃO */
.btn.primary {
  font-size: 18px;
  padding: 14px 30px;
  background: var(--gold);
  color: white;
  border-radius: 6px;
  display: inline-block;
}
/* BOTÕES */
.btn {
  padding: 12px 25px;
  margin: 5px;
  text-decoration: none;
  display: inline-block;
  border-radius: 5px;
}

.primary {
  background: var(--gold);
  color: white;
}

.outline {
  border: 1px solid white;
  color: white;
}

.sobre {
  padding: 100px 20px;
  background: #f8f8f8;
}

    .container {
  max-width: 1100px;
  margin: auto;
  gap: 50px;
  align-items: center;
}

.sobre .container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* TEXTO MAIOR */
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.sobre .texto {
  text-align: left;
}

.sobre .texto h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.sobre .texto p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* IMAGEM */
.sobre .imagem {
  display: flex;
  justify-content: center;
}

.sobre .imagem img {
  width: 100%;
  max-width: 350px; /* CONTROLA TAMANHO */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sobre .texto h2 {
  font-size: 38px;
  color: var(--blue);
  position: relative;
}

.sobre .texto h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 10px;
}

/* SERVIÇOS */
.servicos {
  padding: 100px 20px;
  background: #f4f4f4;
}

/* BLOCO DE SERVIÇO */
.servico-bloco {
  max-width: 900px;
  margin: 60px auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

/* TÍTULO */
.servico-bloco h3 {
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 15px;
}

/* TEXTO */
.servico-bloco p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* LISTA */
.servico-bloco ul {
  margin-top: 10px;
  padding-left: 20px;
}

.servico-bloco li {
  margin-bottom: 8px;
  font-size: 17px;
}

/* REMOVE LINHA DO ÚLTIMO */
.servico-bloco:last-child {
  border-bottom: none;
}

/* BENEFÍCIOS */

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.beneficio {
  position: relative;
  padding: 40px 25px;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, #1b263b, #0d1b2a);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* ÍCONE */
.beneficio::before {
  font-size: 28px;
  display: block;
  margin-bottom: 15px;
}

/* TEXTO */
.beneficio {
  font-size: 18px;
  line-height: 1.4;
}

/* HOVER */
.beneficio:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* BRILHO SUTIL */
.beneficio::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 60%);
  opacity: 0;
  transition: 0.5s;
}

.beneficio:hover::after {
  opacity: 1;
}

.beneficio .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 15px;
}

/* EVENTOS */
.eventos {
  padding: 100px 20px;
  text-align: center;
}

.sub {
  margin-bottom: 30px;
  color: #666;
}

/* WRAPPER */
.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

/* CAROUSEL */
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

/* REMOVE SCROLL BAR */
.carousel::-webkit-scrollbar {
  display: none;
}

/* IMAGENS */
.carousel img {
  min-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.carousel img:hover {
  transform: scale(1.05);
}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.8;
}

.carousel-btn:hover {
  opacity: 1;
}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}

/* CTA */
.cta {
  background: var(--gold);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

/* FOOTER */
footer {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 20px;
}

/* ANIMAÇÃO */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-size: 38px;
  color: var(--blue);
  position: relative;
  margin-bottom: 30px;
   text-align: left;    
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-top: 10px;
}

.text-main {
    font-weight: 600;
}

.text-service {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px!important;
}

/* RESPONSIVO */
@media(max-width:768px) {
  .menu { display: none; }
  .hamburger { display: block; }

  .mobile-menu.active {
    display: flex;
  }

  .sobre .container {
    flex-direction: column;
  }
}

@media(max-width:768px) {
  .sobre .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre .imagem img {
    max-width: 280px;
  }
}

.justify {
    text-align: justify;
}


/* ===== REDES SOCIAIS ===== */

.redes{
    margin-top:60px;
    text-align:center;
}

.redes h3{
    margin-bottom:25px;
    font-size:22px;
    color:#0f3b2e;
}

.redes-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
    gap:20px;
}

.rede-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    border-radius:10px;
    background:#fff;
    text-decoration:none;
    color:#333;
    transition:.3s;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.rede-item span{
    font-size:26px;
}

.rede-item strong{
    display:block;
    font-size:16px;
}

.rede-item p{
    font-size:13px;
    color:#666;
}

/* hover */
.rede-item:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* cores por rede */

.rede-item.whatsapp:hover{
    background:#25d366;
    color:#fff;
}

.rede-item.instagram:hover{
    background:linear-gradient(45deg,#fd1d1d,#e1306c,#f77737);
    color:#fff;
}

.rede-item.linkedin:hover{
    background:#0a66c2;
    color:#fff;
}

.rede-item.email:hover{
    background:#0f3b2e;
    color:#fff;
}

/* modo dark */

.section.dark .redes h3{
    color:#fff;
}

.section.dark .rede-item{
    background:#1c4b3b;
    color:#fff;
}

.section.dark .rede-item p{
    color:#ccc;
}


.color-white {
    color: white!important;

}


.text-center {
    text-align: center;
}

.mb {
    margin-bottom: 40px;
}


footer {
    padding: 50px 0;
}