/* Reset e configurações básicas */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

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

:root {
  --primary-color: #2d7d32;
  --primary-light: #4caf50;
  --primary-dark: #1b5e20;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --text-muted: #666;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
}

.company-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary-color);
}

.btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .highlight {
  color: #4caf50;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.services-hero {
  min-height: 400px;
}

.services-hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-hero .hero-content p {
  font-size: 1.1rem;
  max-width: 500px;
}

/* Services Carousel Section */
.services-carousel-section {
  padding: 4rem 0;
  background: var(--secondary-color);
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s ease-out;
}

.services-carousel-section.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.services-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.services-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.service-carousel-card {
  min-width: 350px;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px);
}

.services-carousel-section.animate-in .service-carousel-card {
  opacity: 1;
  transform: translateX(0);
}

.services-carousel-section.animate-in .service-carousel-card:nth-child(1) {
  transition-delay: 0.1s;
}

.services-carousel-section.animate-in .service-carousel-card:nth-child(2) {
  transition-delay: 0.2s;
}

.services-carousel-section.animate-in .service-carousel-card:nth-child(3) {
  transition-delay: 0.3s;
}

.services-carousel-section.animate-in .service-carousel-card:nth-child(4) {
  transition-delay: 0.4s;
}

.services-carousel-section.animate-in .service-carousel-card:nth-child(5) {
  transition-delay: 0.5s;
}

.services-carousel-section.animate-in .service-carousel-card:nth-child(6) {
  transition-delay: 0.6s;
}

.service-carousel-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.service-carousel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.service-card-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(45, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.service-carousel-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 1.3rem;
}

.service-carousel-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.service-card-link:hover {
  color: var(--primary-dark);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  background: var(--border-color);
  cursor: not-allowed;
  transform: none;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(45, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services specific */
.service-card {
  text-align: left;
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
}

.service-card li {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
}

/* About page specific */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.about-text h2 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.features-list {
  list-style: none;
}

.features-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list li::before {
  content: "";
  margin-right: 0.5rem;
}

.features-list li i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

.team-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact page specific */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(45, 125, 50, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
}

/* Section styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: var(--text-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: var(--primary-color);
  width: 16px;
}

.footer-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.contact-hero {
  min-height: 400px;
}

.contact-hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero .hero-content p {
  font-size: 1.1rem;
  max-width: 500px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    flex-wrap: wrap;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  nav ul.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    min-height: 400px;
    padding: 2rem 0;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .services-carousel {
    gap: 1rem;
  }

  .service-carousel-card {
    min-width: 280px;
    padding: 1.5rem;
  }

  .service-card-image {
    height: 150px;
  }

  .carousel-controls {
    margin-top: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .footer-section {
    text-align: left;
  }

  .footer-text {
    text-align: center;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: var(--white);
  padding: 1rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-text h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: #2e7d32;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.cookie-btn-settings:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-actions {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}



/* About Page Styles */
.about-hero-green {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-hero-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0,0 Q500,200 1000,0 L1000,1000 L0,1000 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-main {
    padding: 80px 0;
    background: white;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text-content {
    padding-right: 20px;
}

.about-section-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-main-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-story p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.services-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.services-list li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #555;
    padding-left: 0;
}

.about-image-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ceo-profile-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 350px;
    border: 3px solid var(--primary-color);
}

.ceo-image-container {
    margin-bottom: 20px;
}

.ceo-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.ceo-info {
    text-align: center;
}

.ceo-name {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.ceo-role {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.team-profile {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-qualifications {
    margin-bottom: 40px;
}

.team-qualifications h4 {
    color: var(--text-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
    display: inline-block;
}

.team-qualifications ul {
    list-style: none;
    padding: 0;
}

.team-qualifications li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.team-qualifications li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text-content {
        padding-right: 0;
        order: 2;
    }
    
    .about-image-content {
        order: 1;
    }
    
    .ceo-profile-card {
        max-width: 300px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .ceo-photo {
        max-width: 220px;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .ceo-role {
        font-size: 1.5rem;
    }
    
    .about-main,
    .team-profile {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .about-main-title {
        font-size: 1.8rem;
    }
    
    .about-story p,
    .services-list li {
        font-size: 1rem;
    }
    
    .team-qualifications h4 {
        font-size: 1.2rem;
    }
    
    .team-qualifications li {
        font-size: 0.9rem;
    }
    
    .about-hero-green {
        padding: 60px 0;
    }
    
    .about-main,
    .team-profile {
        padding: 40px 0;
    }
    
    .ceo-profile-card {
        max-width: 280px;
        padding: 15px;
    }
    
    .ceo-photo {
        max-width: 200px;
    }
}


/* CEO Title Section Styles */
.ceo-title-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    border-bottom: 3px solid var(--primary-color);
}

.ceo-main-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ceo-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile responsiveness for CEO title */
@media (max-width: 768px) {
    .ceo-main-title {
        font-size: 2rem;
    }
    
    .ceo-subtitle {
        font-size: 1rem;
    }
    
    .ceo-title-section {
        margin-bottom: 40px;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .ceo-main-title {
        font-size: 1.8rem;
    }
    
    .ceo-subtitle {
        font-size: 0.9rem;
    }
}

