* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.image001 {
  height: 30px;
}

.image00 {
  height: 20px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px;
  font-size: 0.95rem;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a:hover {
  background: #f1f1f1;
}

/* Hero section */
.hero {
  background-image: url("../../img/hero-bacground.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.hero h1 {
  color: white;
  font-size: 3em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* Search and language */
.search-lang {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  background: none;
  border-radius: 25px;
  padding: 5px 15px;
  border: 1px solid #7ac943;
  transition: all 0.3s ease;
}

.search-box:hover,
.search-box:focus-within {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-color: #ccc;
}

.search-box input {
  border: none;
  background: none;
  padding: 8px 10px;
  width: 200px;
  font-size: 14px;
  color: #333;
  outline: none;
}

.search-box input::placeholder {
  color: #999;
  font-style: italic;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  font-size: 16px;
  color: #666;
  transition: color 0.3s ease;
}

.search-box button:hover {
  color: #333;
}

.language a {
  text-decoration: none;
  color: #333;
}

.hero {
  height: 300px;
  background: url("../../img/hero-bacground.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  margin: 0 auto;
  text-align: center;
  color: white;
}
/* Estilos melhorados para a div content */
.content {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 30px;
}

.content main {
  padding: 0;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #7ac943;
  border-radius: 2px;
}

.content h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  margin: 30px 0 50px;
  max-width: 800px;
}

.content .section-title {
  text-align: center;
  margin: 60px 0 40px;
}

.content .section-title h1 {
  display: inline-block;
}

.content .section-title h1::after {
  left: 50%;
  transform: translateX(-50%);
}

.activities {
  padding: 60px 0;
}

.activities-header {
  text-align: center;
  margin-bottom: 50px;
}

.activities-header h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.activities-header p {
  color: #666;
  margin-bottom: 30px;
}

.btn-services {
  display: inline-block;
  padding: 12px 30px;
  background-color: #7ac943;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-services:hover {
  background-color: #68b234;
}

/* Estilos melhorados para services-grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 300px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(122, 201, 67, 0.25);
}

.service-image {
  height: 100%;
  width: 100%;
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  color: white;
  background: #7ac943;
  box-shadow: 0 4px 15px rgba(122, 201, 67, 0.3);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-info h3 {
  margin: 0;
  font-size: 1.4em;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Media Queries melhorados */
@media screen and (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    height: 250px;
  }

  .service-info {
    padding: 20px;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2em;
  }

  .service-info h3 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 480px) {
  .service-card {
    height: 200px;
  }

  .service-info {
    padding: 15px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
  }

  .service-info h3 {
    font-size: 1.1em;
  }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .search-box input {
    width: 180px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 15px;
  }

  .logo img {
    height: 70px;
    margin-bottom: 15px;
  }

  .main-nav {
    width: 100%;
    margin: 10px 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #f9f9f9;
  }

  .dropdown-content a {
    text-align: center;
  }

  .search-lang {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .search-box {
    width: 100%;
    max-width: 300px;
  }

  .search-box input {
    width: 100%;
  }

  .hero {
    height: 250px;
    padding: 0 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2em;
  }

  .content {
    margin: 30px auto;
  }

  .service-section {
    padding: 20px;
  }

  .service-list li {
    padding: 10px 0 10px 20px;
  }

  .activities {
    padding: 40px 0;
  }

  .activities-header h2 {
    font-size: 2em;
  }

  .service-item {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    height: 60px;
  }

  .nav-link {
    font-size: 0.9em;
  }

  .hero {
    height: 200px;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .content h1 {
    font-size: 1.6em;
  }

  .content h3 {
    font-size: 1em;
  }

  .service-section h2 {
    font-size: 1.4em;
  }

  .service-intro {
    font-size: 0.9em;
  }

  .search-box {
    max-width: 100%;
  }

  .footer {
    padding: 30px 15px;
  }

  .company-info {
    flex-direction: column;
    text-align: center;
  }

  .get-started {
    margin-top: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .platform-icons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .activities-header h2 {
    font-size: 1.8em;
  }

  .service-image {
    height: 200px;
  }
}

@media screen and (max-width: 360px) {
  .hero h1 {
    font-size: 1.5em;
  }

  .content {
    padding: 0 10px;
  }

  .service-section {
    padding: 15px;
  }

  .service-section h2 {
    font-size: 1.2em;
  }

  .footer-content {
    padding: 15px;
  }
}

@media screen and (max-height: 480px) and (orientation: landscape) {
  .hero {
    height: 180px;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .main-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.sidebar {
  width: 250px;
  padding-right: 30px;
}

.sidebar ul {
  list-style: none;
}

.sidebar a {
  text-decoration: none;
  color: #333;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #eee;
}

/* Estilos da main sem box-shadow */
main {
  flex: 1;
  padding: 40px;
  background: #ffffff;
  border-radius: 10px;
}

main h2 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

main h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #7ac943;
  border-radius: 2px;
}

main h3 {
  font-size: 1.6em;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

main p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

main strong {
  color: #333;
  font-weight: 600;
}

main ul,
main ol {
  margin: 20px 0;
  padding-left: 20px;
}

main li {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.6;
}

/* Destaque para informações importantes */
.highlight-text {
  background: #f8f9fa;
  padding: 20px;
  border-left: 4px solid #7ac943;
  border-radius: 0 5px 5px 0;
  margin: 25px 0;
}

/* Footer Styles */
.footer {
  background-color: #f5f5f5;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
  margin-bottom: 50px;
}

.footer-column {
  flex: 1;
  min-width: 0;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.footer-logo1 {
  height: 80px;
}

.footer-logo2 {
  height: 40px;
}

.company-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.social-icons a {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #7ac943;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul a:hover {
  color: #7ac943;
}

.whatsapp-link {
  color: #25d366;
  font-size: 2.5rem;
  display: inline-block;
  margin-top: 15px;
}

.news-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  max-width: 100%;
}

.news-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.news-content {
  min-width: 0;
}

.news-content a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.news-content a:hover {
  color: #7ac943;
}

.news-date {
  color: #999;
  font-size: 0.8rem;
}

.footer-bottom {
  background-color: #eee;
  padding: 20px 0;
  font-size: 0.9rem;
}

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

.footer-bottom a {
  color: #7ac943;
  text-decoration: none;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 15px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    padding: 40px 0 0;
  }

  .news-item img {
    width: 60px;
    height: 60px;
  }
}

/* Estilos para a seção activities */
.activities {
  padding: 40px;
  border-radius: 8px;
  margin: 30px 0;
}

.service-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.service-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-section h2 {
  color: #333;
  font-size: 1.8em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #7ac943;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.service-intro {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  position: relative;
  padding: 12px 0 12px 25px;
  color: #666;
  line-height: 1.5;
}

.service-list li:before {
  content: "•";
  color: #7ac943;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 10px;
}

.service-details {
  margin-top: 25px;
}

.service-item {
  background: white;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.service-item h3 {
  color: #444;
  font-size: 1.2em;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.service-item p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .activities {
    padding: 25px;
  }

  .service-section h2 {
    font-size: 1.5em;
  }

  .service-item {
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .activities {
    padding: 20px;
  }

  .service-section h2 {
    font-size: 1.3em;
  }

  .service-list li {
    padding-left: 20px;
  }
}

/* Estilos para separação das sections */
.content section {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 60px;
}

.content section:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #e0e0e0 20%,
    #e0e0e0 80%,
    transparent
  );
}

.service-section {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-section:hover {
  transform: translateY(-5px);
}

.service-section:not(:last-child) {
  border-bottom: 1px solid #eee;
}

/* Ajustes responsivos */
@media screen and (max-width: 768px) {
  .content section {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .service-section {
    padding: 30px;
  }
}

@media screen and (max-width: 480px) {
  .content section {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .service-section {
    padding: 20px;
  }
}

/* Estilos para a contact-column */
.contact-column {
  color: #666;
}

.contact-column h3 {
  color: #333;
  margin-bottom: 20px;
}

.contact-column p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-column p:last-child {
  margin-bottom: 0;
}

/* Estilos para a seção de orçamento */
.quote-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("background-image.jpg") center/cover;
  padding: 80px 0;
  color: white;
}

.quote-content {
  max-width: 1000px;
  margin: 0 auto;
}

.quote-text {
  text-align: left;
  margin-bottom: 40px;
}

.quote-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

.quote-text p {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 700px;
}

.quote-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 0.9em;
  color: #7ac943;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1em;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #333;
  color: white;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #7ac943;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #68b234;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .quote-section {
    padding: 60px 20px;
  }

  .quote-text h2 {
    font-size: 2em;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .quote-form {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .quote-text h2 {
    font-size: 1.8em;
  }

  .quote-text p {
    font-size: 1em;
  }

  .submit-btn {
    padding: 12px;
    font-size: 1em;
  }
}
