body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to bottom right, #f0f4ff, #e6f0ff);
      color: #333;
      line-height: 1.6;
}

.container-total {
      max-width: 1280px;
      margin: auto;
}

/* Header */
header {
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

header nav {
      max-width: 1280px;
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
}

header nav .logo {
      width: 30%;
      margin: 0 30px;
}

header nav .logo img {
      width: 160px;
      height: auto;
}

header nav .menu {
      display: flex;
      justify-content: space-between;
      width: 70%;
      float: right;
      margin-right: 50px;
}

header nav .menu a {
      background: -webkit-linear-gradient(yellowgreen, green, #00008b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3rem;
      transition: 0.3s ease;
}

header nav .menu a:hover {
      font-weight: 900;
      font-size: 1.4em;
      font-weight: 300;
      color: yellowgreen;
}

/* Hero */
.hero {
      width: 100%;
      height: 450px;
      display: flex;
      margin: 5px 0;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero .box1-hero {
      width: 30%;
      height: auto;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
}

.hero .box1-hero img {
      width: 300px;
      height: 300px;
}

.hero .box2-hero {
      width: 65%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      align-items: center;
}

.hero .box2-hero .p-box-top {
      font-size: 1.7rem;
}

.hero h1 {
      margin-top: 20px;
      font-size: 2.2rem;
}

.hero h1 span {
      font-size: 2rem;
      font-weight: 300;
}

#sobre {
      width: 100%;
      height: 100vh;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      text-align: center;
      justify-content: center;
      margin-bottom: 5px;
      padding: 0 20px;
}

#sobre h2 {
      font-size: 2rem;
      margin-bottom: 15px;
}

#sobre p {
      font-size: 1.3rem;
      margin-bottom: 25px;
}

/* Solução */
#solucao {
      width: 100%;
      height: 100vh;
      background: #fff;
      padding: 70px;
      margin-bottom: 5px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      text-align: center;
}

.p-solucao {
      font-size: 1.1em;
}

.p-solucao i {
      background: -webkit-linear-gradient(yellowgreen, green, #00008b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 1.6rem;
}

.p-solucao span {
      background: -webkit-linear-gradient(yellowgreen, green, #00008b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-size: 1.6rem;
}

/* Planos */
.content-planos {
      width: 100%;
      height: 100vh;
      background: #ffffff;
      margin-bottom: 5px;
}

.content-planos h3 {
      text-align: center;
      color: #333;
      padding-top: 40px;
      font-size: 1.8rem;
}

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

.box-plano {
      background: #ffffff;
      border-radius: 15px;
      margin: 80px 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      border: 1px solid #999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      height: 400px;
}

.box-plano:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.box-plano h4 {
      font-size: 1.5em;
      color: #007bff;
      margin: 20px 0;
}

.p-box-plano {
      font-size: 1.4em;
      font-weight: bold;
      color: #2e7d32;
      margin-top: 15px;
}

.box-plano a {
      color: #007bff;
}

.box-plano a:hover {
      color: #2e7d32;
}

/* Representantes */
.container-representantes {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      height: 100vh;
      gap: 20px;
      justify-content: space-around;
      background: #fafafa;
      padding: 30px 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.representante {
      flex: 1 1 250px;
      background: #fafafa;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.representante h3 {
      color: #007bff;
      margin-bottom: 10px;
}

.representante img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
      background: #eee;
}

/* Rodapé */
footer {
      background: #333;
      color: #007bff;;
      text-align: center;
      padding: 25px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      margin-top: 5px;
}

footer .p1 {
      font-size: 0.95em;
}

footer i {
      color: red;
}

/* Responsivo *
@media (max-width: 768px) {
      nav {
            flex-direction: column;
            align-items: center;
      }

      .container-representantes {
            flex-direction: column;
            align-items: center;
      }
}
