@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;600;700;900&display=swap');

:root {
  --primary: #2d5a27;
  --primary-dark: #1e3d1a;
  --primary-light: #4a7c3f;
  --bg: #f8faf5;
  --bg-card: #ffffff;
  --bg-light: #e8f5e6;
  --text: #1a1a1a;
  --text-light: #555;
  --text-white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "Roboto Slab", serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h2 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

h3 {
  font-size: 2rem;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-light);
  margin: 12px auto 0;
  border-radius: 2px;
}

p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.btn {
  background-color: var(--primary);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

.btn.animate-btn {
  animation: animate-outline 1.5s ease-out infinite;
}

@keyframes animate-outline {
  0% { box-shadow: 0 0 0 0 rgba(45, 90, 39, 0.4); }
  100% { box-shadow: 0 0 0 12px rgba(45, 90, 39, 0); }
}

header {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}

header .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

nav img {
  height: 50px;
  transition: transform 0.3s;
}

nav img:hover {
  transform: scale(1.05);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: flex;
  align-items: center;
}

nav ul li a,
nav ul li button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all 0.3s;
  font-family: inherit;
  box-sizing: border-box;
}

nav ul li a:hover,
nav ul li button:hover {
  background: rgba(255, 255, 255, 0.1);
}

nav ul li a.nav-contact {
  background: var(--primary);
  font-weight: 700;
}

nav ul li a.nav-contact:hover {
  background: var(--primary-dark);
}

nav ul li button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

nav ul li button:hover {
  background: var(--text-white);
  color: var(--primary) !important;
}

nav ul li a::after {
  display: none;
}

nav .menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-white);
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    padding: 20px 0;
    z-index: 100;
    gap: 2px;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li a,
  nav ul li button {
    height: auto;
    padding: 12px 24px;
    font-size: 0.9rem;
    justify-content: center;
    width: 100%;
    border: none;
    background: transparent;
    border-radius: 0;
  }

  nav ul li a.nav-contact {
    background: var(--primary);
  }

  nav ul li button {
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 8px;
    width: auto;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
  }
}

.banner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .banner-text {
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.banner .banner-text h1 {
  font-size: 4.5rem;
  color: var(--text-white);
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 16px;
}

.banner .banner-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin: 0 auto 32px;
  max-width: 550px;
}

@media (max-width: 768px) {
  .banner .banner-text h1 {
    font-size: 2.8rem;
  }
  .banner .banner-text p {
    font-size: 1rem;
  }
}

.faca-mais {
  background: var(--bg-card);
}

.faca-mais .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.faca-mais .faca-mais-text {
  flex: 1;
}

.faca-mais .faca-mais-text h3 {
  text-align: left;
  margin-bottom: 20px;
}

.faca-mais .faca-mais-text h3::after {
  margin: 12px 0 0;
}

.faca-mais .faca-mais-text p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.faca-mais .faca-mais-img {
  flex: 1;
}

.faca-mais .faca-mais-img img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .faca-mais .container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .faca-mais .faca-mais-text h3 {
    text-align: center;
  }
  .faca-mais .faca-mais-text h3::after {
    margin: 12px auto 0;
  }
}

.produtos {
  background: var(--bg-light);
  text-align: center;
}

.produtos h3 {
  margin-bottom: 48px;
}

.plano {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plano-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  width: 300px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plano-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.plano-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.plano-card:hover::before {
  transform: scaleX(1);
}

.plano-card img {
  max-width: 160px;
  height: auto;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.plano-card:hover img {
  transform: scale(1.08);
}

.plano-card h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.plano-card p strong {
  font-size: 1.8rem;
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .plano-card {
    width: 280px;
  }
}

.depoimentos {
  background: var(--bg-card);
}

.depoimentos h3 {
  margin-bottom: 12px;
}

.depoimentos > .container > p {
  text-align: center;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.card-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  width: 340px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.card-item:hover {
  background: var(--primary-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-item img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--bg-light);
  transition: border-color 0.3s;
}

.card-item:hover img {
  border-color: var(--bg-card);
}

.card-item .nome-user {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.card-item:hover .nome-user {
  color: var(--text-white);
}

.card-item .depoimento-user {
  font-size: 0.92rem;
  color: var(--text-light);
  padding: 0 8px;
  transition: color 0.3s;
}

.card-item:hover .depoimento-user {
  color: rgba(255,255,255,0.85);
}

.card-item .estrela {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-light);
}

.card-item:hover .estrela {
  border-color: rgba(255,255,255,0.2);
}

.card-item .estrela i {
  color: #f4b942;
  margin: 0 2px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .card-item {
    width: 100%;
    max-width: 380px;
  }
}

.footer {
  background: var(--primary-dark);
  text-align: center;
  padding: 60px 0 40px;
}

.footer .links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer .links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.footer .links a:hover {
  background: var(--text-white);
  transform: translateY(-3px);
}

.footer .links a i {
  color: var(--text-white);
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer .links a:hover i {
  color: var(--primary);
}

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* === ABOUT PAGE === */

header.inner-page {
  min-height: 50vh;
  justify-content: center;
}

header.inner-page .banner {
  align-items: center;
}

header.inner-page .banner-text h1 {
  font-size: 3.5rem;
}

@media (max-width: 768px) {
  header.inner-page .banner-text h1 {
    font-size: 2.2rem;
  }
}

.sobre {
  padding: 60px 0;
}

.sobre h2 {
  margin-bottom: 12px;
}

.content-block {
  background: var(--bg-card);
  border-left: 4px solid var(--primary);
  padding: 28px 32px;
  margin-bottom: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.content-block:hover {
  background: var(--primary-dark);
  border-left-color: var(--bg-light);
  transform: translateX(4px);
}

.content-block p,
.content-block ul,
.content-block h2 {
  transition: color 0.3s;
}

.content-block:hover p,
.content-block:hover ul,
.content-block:hover h2 {
  color: var(--text-white);
}

.content-block ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-light);
}

.content-block p {
  color: var(--text-light);
}

.content-block h2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
}

/* === SERVICES PAGE === */

.servicos h3 {
  margin-bottom: 12px;
}

.servicos .container > p {
  text-align: center;
  margin-bottom: 48px;
}

.rows-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.rows-cards-item {
  background: var(--bg-card);
  width: 320px;
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

.rows-cards-item:hover {
  background: var(--primary-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.rows-cards-item img {
  max-width: 80px;
  height: auto;
  margin-bottom: 16px;
  transition: filter 0.3s ease;
}

.rows-cards-item:hover img {
  filter: brightness(0) invert(1);
}

.rows-cards-item p.nome-servico {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.rows-cards-item:hover p.nome-servico {
  color: var(--text-white);
}

.rows-cards-item p.descricao-servico {
  font-size: 0.92rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.rows-cards-item:hover p.descricao-servico {
  color: rgba(255,255,255,0.85);
}

.dados {
  background: var(--bg-light);
}

.dados .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.dados-item {
  text-align: center;
  min-width: 180px;
}

.dados-item img {
  max-width: 90px;
  height: auto;
  margin-bottom: 12px;
}

.dados-item p {
  font-size: 1rem;
  color: var(--text-light);
}

.dados-item p strong {
  font-size: 2rem;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 4px;
}

/* === CONTACT PAGE === */

.contato-info {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.contato-info .left-side {
  flex: 1;
  padding: 32px;
  background: var(--primary-dark);
  border-radius: var(--radius);
  height: fit-content;
}

.contato-info .left-side div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contato-info .left-side div:last-child {
  margin-bottom: 0;
}

.contato-info .left-side div i {
  font-size: 1.3rem;
  color: var(--text-white);
  width: 24px;
  text-align: center;
}

.contato-info .left-side p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}

.contato-info .right-side {
  flex: 1;
}

.contato-info .right-side input,
.contato-info .right-side textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: all 0.3s;
  background: var(--bg-card);
}

.contato-info .right-side input:focus,
.contato-info .right-side textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.contato-info .right-side textarea {
  resize: none;
  min-height: 120px;
}

.contato-info .right-side button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contato-info .right-side button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contato-info {
    flex-direction: column;
    gap: 30px;
  }
}

/* === WORK WITH US PAGE === */

.vagas {
  padding: 60px 0;
}

.vagas h2 {
  text-align: center;
  margin-bottom: 48px;
}

.vaga {
  background: var(--bg-card);
  padding: 28px 32px;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.vaga:hover {
  background: var(--primary-dark);
  border-left-color: var(--bg-light);
  transform: translateX(4px);
}

.vaga h3 {
  font-size: 1.4rem;
  color: var(--primary);
  text-align: left;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.vaga h3::after {
  display: none;
}

.vaga:hover h3 {
  color: var(--text-white);
}

.vaga ul {
  list-style: disc;
  padding-left: 20px;
}

.vaga ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.vaga:hover ul li {
  color: rgba(255,255,255,0.85);
}

.formulario-candidatura {
  padding: 60px 0;
  background: var(--bg-light);
}

.formulario-candidatura h2 {
  text-align: center;
  margin-bottom: 40px;
}

.formulario-candidatura form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 0.9rem;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  background: var(--bg);
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.input-group input[type="file"] {
  padding: 10px;
  border-style: dashed;
}

.btn-enviar {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-enviar:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .formulario-candidatura form {
    padding: 24px;
  }
}
