/* Reset padrão */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #9F752F;
  background: linear-gradient(to right, #0c0c0c 0%, #2e2f30 33.33%, #1e1e1e 66.67%, #2a2a2b 100%);
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: transparent;
}

/* Hero Section */
.hero {
  background: linear-gradient(#0e604b 50%, #142d23 50%), url('hero-bg.jpg') no-repeat center center/cover;
  color: #9F752F;
  text-align: center;
  padding: 120px 20px;
  border-bottom: 8px solid #12f9e2;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #b3655e;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s;
}

.cta-button:hover {
  background: #e6554d;
  transform: scale(1.05);
  box-shadow: 0px 10px 15px rgba(230, 85, 77, 0.4);
}

/* Benefícios Section */
.benefits {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: -20px;
  z-index: 1;
  position: relative;
}

.benefits h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

/* Retirado do HTML*/

/*Texto do titulo principal */
.gradient-text {
  background: #efbc66e3;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Efeito visual quando passa o mouse */
.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.03);
}

/*Logo pena*/
.logo-superior {
  width: 90px;
  height: 64px;
}

/*Empresas que conhecem nosso trabalho*/
.container-coluna {
  display: flex;
  justify-content: center;
  gap: 3em;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
}

.container-coluna p {
  color: #efbc66e3 ;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/*Imagens instagram*/
.instagram-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.instagram-media {
  min-width: 326px !important;
  max-width: 340px !important;
  width: 100% !important;
}
