@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  color: #333;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #000000, #333333);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 70px;
  width: 75px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1001;
}

.nav-links li a {
  text-decoration: none;
  color: #ffd700;
  font-family: "Merienda", cursive;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #00c6ff;
  background: rgba(156, 39, 176, 1);
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateX(0); /* Prevent horizontal movement */
}

/* ===== MENU HAMBÚRGUER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  padding: 5px;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffd700;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

/* ===== SEÇÃO HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  text-align: center;
  padding: 8rem 2rem 2rem;
}

/* ===== BOLHAS ===== */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  filter: blur(5px);
  animation: rise 10s infinite ease-in;
  opacity: 1;
  z-index: 1;
}

.bubble:nth-child(1) {
  background: rgba(224, 191, 5, 1);
  width: 120px;
  height: 120px;
  animation-duration: 12s;
}

.bubble:nth-child(2) {
  background: rgba(255, 87, 34, 1);
  width: 140px;
  height: 140px;
  animation-duration: 14s;
}

.bubble:nth-child(3) {
  background: rgba(33, 150, 243, 1);
  width: 130px;
  height: 130px;
  animation-duration: 16s;
}

.bubble:nth-child(4) {
  background: rgba(76, 175, 80, 1);
  width: 150px;
  height: 150px;
  animation-duration: 18s;
}

.bubble:nth-child(5) {
  background: rgba(255, 193, 7, 1);
  width: 160px;
  height: 160px;
  animation-duration: 20s;
}

.bubble:nth-child(6) {
  background: rgba(156, 39, 176, 1);
  width: 140px;
  height: 140px;
  animation-duration: 13s;
}

.bubble:nth-child(7) {
  background: rgba(233, 30, 99, 1);
  width: 150px;
  height: 150px;
  animation-duration: 17s;
}

@keyframes rise {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}

/* Variações de tamanho, posição e tempo */
.bubble:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 25%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  width: 30px;
  height: 30px;
  left: 40%;
  animation-duration: 10s;
  animation-delay: 4s;
}

.bubble:nth-child(4) {
  width: 80px;
  height: 80px;
  left: 55%;
  animation-duration: 20s;
  animation-delay: 1s;
}

.bubble:nth-child(5) {
  width: 50px;
  height: 50px;
  left: 70%;
  animation-duration: 14s;
  animation-delay: 3s;
}

.bubble:nth-child(6) {
  width: 35px;
  height: 35px;
  left: 85%;
  animation-duration: 16s;
  animation-delay: 5s;
}

.bubble:nth-child(7) {
  width: 45px;
  height: 45px;
  left: 30%;
  animation-duration: 22s;
  animation-delay: 2s;
}

.bubble:nth-child(8) {
  width: 55px;
  height: 55px;
  left: 50%;
  animation-duration: 11s;
  animation-delay: 6s;
}

.bubble:nth-child(9) {
  width: 65px;
  height: 65px;
  left: 75%;
  animation-duration: 17s;
  animation-delay: 4s;
}

.bubble:nth-child(10) {
  width: 25px;
  height: 25px;
  left: 90%;
  animation-duration: 13s;
  animation-delay: 3s;
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Merienda", cursive;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #8e8989;
}

.hero h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: "Merienda", cursive;
}

.btn {
  display: inline-block;
  background: #393535;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Merienda", cursive;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
}

/* Efeito de Pulsação */
.fale-conosco-btn {
  animation: pulse 3s infinite ease-in-out;
}

.fale-conosco-btn:hover {
  background-color: #00a3cc;
  color: #fff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #222;
  color: #aaa;
  padding: 2rem 0;
  text-align: center;
}

/* ===== MEDIA QUERIES ===== */
/* Show menu toggle on mobile */
.menu-toggle {
  display: none; /* Hide by default */
}

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: 95px;
    left: 0;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.98); */
    background: linear-gradient(to right, #000000, #333333) !important;

    backdrop-filter: blur(10px);
    padding: 2rem 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    margin: 0;
    list-style: none;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    color: #ffd700;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    display: block;
    transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #fff;
  }

  /* Show and style menu toggle button */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    border: none;
    margin-left: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffd700; /* Gold/yellow color */
    transition: all 0.3s ease;
    position: relative;
    border-radius: 3px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav-links.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: fadeIn 0.3s ease-in-out;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    color: #ffd700;
    text-decoration: none;
    font-family: 'Merienda', cursive;
    font-weight: bold;
  }

  .nav-links li a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #fff;
    transform: scale(1.05);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
    flex-direction: row;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 680px) {
    /* Container maior de padding para não grudar nas bordas */
    .hero .container {
      padding: 0 1.5rem;
    }
  
    /* H1 menor, multiline */
    .hero h1 {
      font-size: 2rem;        /* diminui de 3rem para 2rem */
      line-height: 1.2;       /* espaçamento entre linhas */
      white-space: normal;    /* permite quebra de linha */
      word-break: break-word; /* quebra as palavras longas */
    }
  
    /* H2 também menor */
    .hero h2 {
      font-size: 1.2rem;      /* diminui de 2rem para 1.2rem */
      line-height: 1.4;
      white-space: normal;
      word-break: break-word;
      margin-bottom: 1.5rem;
    }
  
    /* Botão maior área clicável */
    .fale-conosco-btn {
      padding: 1rem 1.5rem;
      font-size: 1rem;
    }
  
    /* Ajuste do gradiente para não cortar */
    .hero {
      /* background: linear-gradient(to bottom, #000000 40%, #ffd700); */
      flex-direction: column;
    }
  }
  
  .gold-reflect {
    font-size: 4rem;
    font-weight: bold;
    display: inline-block;
    color: transparent;
    white-space: nowrap;           /* impede quebra de linha */
    overflow: hidden;              /* esconde qualquer estouro */
    max-width: 100%;               /* não ultrapassa o contêiner pai */
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 25%, #dfddd7 50%, #ffd700 75%, #d4af37 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gold-shine 3s linear infinite, letter-spread 4s ease-in-out 1 forwards;
  }
  
  @keyframes gold-shine {
    0% { background-position: 0% 0; }
    50% { background-position: 100% 0; }
    100% { background-position: 0% 0; }
  }
  
  @keyframes letter-spread {
    0% { letter-spacing: 0.09em; }
    50% { letter-spacing: -0.05em; }
    100% { letter-spacing: 0.0em; }
  }
  
  /* Estilo do botão Fale Conosco */
  .contact-button {
    background-color: #ffd700; /* Cor dourada */
    color: #000; /* Cor do texto */
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-button:hover {
    background-color: #ffcc00; /* Cor mais clara ao passar o mouse */
  }
  
  /* Estilo das redes sociais */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Espaço entre os ícones */
    position: absolute;  /* Define o posicionamento absoluto */
    bottom: 50px; /* Fica 20px do final da tela */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Ajusta para garantir o alinhamento central */
  }
  
  .sobrenos-texto {
    font-size: 1rem;
    color: #683838; /* Dourado */
    margin-bottom: 1rem;
  }
  
  .social-icon {
    font-size: 1.3rem; /* Tamanho dos ícones */
    color: #333; /* Cor dos ícones */
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon:hover {
    color: #00c6ff; /* Cor ao passar o mouse */
    transform: scale(1.2); /* Efeito de aumento ao passar o mouse */
  }
  
  /* Cores específicas para cada rede social */
  .social-icon.facebook {
    transition: color 0.3s ease, transform 0.3s ease;
    color: #333;
  }
  
  .social-icon.facebook:hover {
    transform: scale(1.2);
    color: #3b5998;
  }
  
  .social-icon.instagram {
    transition: color 0.3s ease, transform 0.3s ease;
    color: #333;
  }
  
  .social-icon.instagram:hover {
    transform: scale(1.2);
    color: #e4405f;
  }
  
  .social-icon.x {
    color: #333; /* Cor do X (Twitter) quando o mouse passa sobre */
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon.x:hover {
    color: #413e3e; /* Cor do X (Twitter) quando o mouse passa sobre */
    transform: scale(1.2);
  }
  
  .social-icon.tiktok {
    transition: color 0.3s ease, transform 0.3s ease;
    color: #333;
  }
  
  .social-icon.tiktok:hover {
    transform: scale(1.2);
    color: #69c9d0;
  }
  
  /* Especificamente para o YouTube, definir a cor vermelha */
  .social-icon.youtube {
    color: #333; /* Cor vermelha para o YouTube */
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon.youtube:hover {
    color: #FF0000; /* Cor vermelha para o YouTube */
    transform: scale(1.2);
  }
  
  .social-icon.whatsapp {
    font-size: 1.3rem;
    color: #333; /* Verde WhatsApp */
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .social-icon.whatsapp:hover {
    color: #128c7e; /* Verde mais escuro quando passa o mouse */
    transform: scale(1.2);
  }
  
  #sobre {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
  }
  
  .sobre-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    gap: 3rem;
    align-items: center;
    justify-content: center; /* <-- Centraliza os conteúdos */
  }
  
  #sobre {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 0rem 0rem;
        background: linear-gradient(to bottom, #ffffff 0%, #98a6eb 60%);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  
  .sobre-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    min-height: auto;
    padding: 2rem 0;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .sobre-video {
    flex: 1 1 500px;
    max-width: 600px;
  }
  
  .sobre-video iframe {
    width: 100%;
    height: 350px; /* Altura fixa para manter proporcional */
    border-radius: 12px;
    position: relative;
    z-index: 5;
  }
  
  .sobre-texto {
    flex: 1 1 400px;
    max-width: 500px;
    color: white;
    margin-bottom: 3rem;
    text-align: center; /* Texto alinhado à esquerda */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Light shadow */
  }
  
  .sobre-texto h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #552b2b; /* Dourado */
    
  }
  
  .sobre-texto p {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left; /* Texto alinhado à esquerda */
    color: #ffe9e7; /* Dourado */
  }
  #Divu{
    font-size: 1rem;
    line-height: 1.5;
    text-align: left; /* Texto alinhado à esquerda */

  }
  
  /* Responsividade para mobile */
  @media (max-width: 768px) {
    #sobre {
      padding: 1rem;
      min-height: auto;
    }
    
    .sobre-container {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
      padding: 1rem;
      width: 100%;
    }
    
    .sobre-video {
      width: 100%;
      max-width: 100%;
      padding: 0 1rem;
      box-sizing: border-box;
    }
    
    .sobre-video video {
      width: 100%;
      /* height: auto; */
      /* max-height: 300px; */
    }
    
    .sobre-texto {
      text-align: center;
      width: 100%;
      max-width: 100%;
      padding: 0 1rem;
      margin: 0;
      box-sizing: border-box;
    }
    
    .sobre-texto p {
      text-align: center;
    }
  }
  
  .servicos-section {
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(to bottom, #98a6eb 0%, rgb(207, 82, 230) 100%);
    padding: 5rem 2rem;
    color: #eee;
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-family: "Merienda", cursive;
    margin-bottom: 3rem;
    margin-top: 5rem;
    color: #ffd700;
  }
  
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .servico-card {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #8e8989;
  }
  
  .servico-card h3 {
    margin-bottom: 10px; /* Adiciona um espaço abaixo do título */
  }
  
  .servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  }
  
  .servico-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .sobre-section {
    background: linear-gradient(to bottom, #111, #000);
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
  }
  
  .sobre-img {
    flex: 1 1 300px;
    max-width: 400px;
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }
  
  .sobre-texto {
    flex: 1 1 300px;
    color: #eee;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
  }
  
  @media (max-width: 768px) {
    .sobre-section {
      flex-direction: column;
      text-align: center;
    }
  
    .sobre-texto {
      font-size: 1rem;
    }
  
    .sobre-img {
      max-width: 90%;
    }
  }
  
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  @media (max-width: 500px) {
    .section-title {
      font-size: 2rem;
    }
  
    .servico-card {
      padding: 1.5rem;
    }
  
    .servico-icon {
      font-size: 2rem;
    }
  }
  
  /* ===== SEÇÃO CONTATO ===== */
  .contact_us {
    background: linear-gradient(to bottom, rgb(207, 82, 230) 0%, #FFF 40%);
    padding: 3rem 0;
    position: relative;
    color: #eee;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact_inner {
    background: #1a1a1a;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    width: 95%;
    max-width: 1200px;
    padding: 1.5rem;
    margin: 0 auto;
  }
  
  .contact_inner .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    width: 100%;
  }
  
  .col-12 {
    padding: 1rem;
    width: 100%;
  }
  
  @media (min-width: 992px) {
    .col-lg-6 {
      flex: 0 0 50%;
      max-width: 50%;
      padding: 2rem;
    }
    
    .contact_info_sec {
      margin-top: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .contact_field {
      padding: 2rem;
    }
  }
  
  .contact_field {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Garantir que o conteúdo fique centralizado verticalmente */
    align-items: center; /* Centraliza todos os elementos horizontalmente */
    padding: 3rem 2rem;
    width: 100%;
  }
  
  .contact_field h3 {
    font-family: "Merienda", cursive;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .contact_field p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    background: #333;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
  }
  
  .form-control::placeholder {
    color: #999;
  }
  
  .form-control:focus {
    outline: 2px solid #ffd700;
  }
  
  .contact_form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%; /* Ajuste o tamanho, caso necessário */
    background: #ffd700;
    color: #000;
    padding: 0.75rem;
    font-family: "Merienda", cursive;
    font-size: 1.1rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .contact_form_submit:hover {
    transform: scale(1.1);
  }
  
  /* Caixa de informações */
  .contact_info_sec {
    background: #222;
    width: 100%;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact_info_sec h4 {
    font-family: "Merienda", cursive;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .info_single {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
  }
  
  .info_single i {
    margin-right: 0.75rem;
    color: #8e8989;
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .contact_inner .row {
      flex-direction: column;
    }
  
    .contact_field {
      padding: 2rem;
    }
  
    .right_contact_social_icon, .contact_info_sec {
      position: static;
      transform: none;
      width: 100%;
      border-radius: 0 0 1rem 1rem;
      margin-top: 1rem;
    }
  
    .contact_info_sec {
      display: block;
    }
  
    .socil_item_inner {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
  }
  
  .footer {
    background: linear-gradient(to bottom, #111, #000);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
  .footer a.linkedin-icon {
    display: inline-block;
    margin-top: 8px;
    transition: transform 0.3s ease;
  }
  
  .footer a.linkedin-icon:hover {
    transform: scale(1.2);
  }
#Divu {
  text-align: center;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  #Divu {
    width: 100%;
    padding: 1rem;
  }
}

/* ===== SEÇÃO CONTATO ===== */
.contact_us {
    background: linear-gradient(to bottom, rgb(207, 82, 230) 0%, #FFF 40%);
    padding: 6rem 0;
    position: relative;
  }
  


   /* .contact_us {
    background: linear-gradient(to bottom, rgb(207, 82, 230) 0%, #FFF 40%);
    padding: 0;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  } */
  
  .contact_field {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Garantir que o conteúdo fique centralizado verticalmente */
    align-items: center; /* Centraliza todos os elementos horizontalmente */
    padding: 3rem 2rem;
    width: 100%;
  }
  
  .contact_field h3 {
    font-family: "Merienda", cursive;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .contact_field p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    background: #333;
    border: none;
    border-radius: 0.5rem;
    color: #fff;
  }
  
  .form-control::placeholder {
    color: #999;
  }
  
  .form-control:focus {
    outline: 2px solid #ffd700;
  }
  
  .contact_form_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%; /* Ajuste o tamanho, caso necessário */
    background: #ffd700;
    color: #000;
    padding: 0.75rem;
    font-family: "Merienda", cursive;
    font-size: 1.1rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .contact_form_submit:hover {
    transform: scale(1.1);
  }
  
  
  /* Caixa de informações */
  .contact_info_sec {
    background: #222;
    width: 100%;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact_info_sec h4 {
    font-family: "Merienda", cursive;
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .info_single {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ccc;
  }
  
  .info_single i {
    margin-right: 0.75rem;
    color: #8e8989;
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .contact_inner .row {
      flex-direction: column;
    }
  
    .contact_field {
      padding: 2rem;
    }
  
    .right_contact_social_icon, .contact_info_sec {
      position: static;
      transform: none;
      width: 100%;
      border-radius: 0 0 1rem 1rem;
      margin-top: 1rem;
    }
  
    .contact_info_sec {
      display: block;
    }
  
    .socil_item_inner {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }
  }
  
  .footer {
    background: linear-gradient(to bottom, #111, #000);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
  .footer a.linkedin-icon {
    display: inline-block;
    margin-top: 8px;
    transition: transform 0.3s ease;
  }
  
  .footer a.linkedin-icon:hover {
    transform: scale(1.2);
  }
    