  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #333;
  }

  .container {



    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  .header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }

  /* Updated logo styling for Ecosolutions branding */
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  .logo-icon {
  font-size: 1.1rem;
  
  }
  .fa-whatsapp {
    
    margin-right: -5px;
    margin-right: 1px;

  }
  .fa-chart-line {
  margin-right: 7px;
  }



  .logo h2 {
    color: #2d5a3d;
    font-weight: 700;
  }

  .nav-menu {
    display: flex;
    gap: 2rem;
  }

  .nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-menu a:hover {
    color: #2d5a3d;
  }

  /* Updated button colors to match Ecosolutions green/blue theme */
  .cta-button {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }

  .cta-button:hover {
    background: #357abd;
  }

  .cta-button-primary {
    background: #52c41a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-right: 1rem;
  }

  .cta-button-primary a  {
  
    color: white;
    text-decoration: none;
    
  }


  .cta-button-primary:hover {
    background: #389e0d;
  }

  .cta-button-secondary {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }

  .cta-button-secondary:hover {
    background: #357abd;
  }

  .cta-button-large {
    background: #52c41a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
  }

  .cta-button-large:hover {
    background: #389e0d;
  }

  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #52c41a 0%, #4a90e2 100%);
    background-image: url("/img/familia.png"); /* Caminho da imagem */
    background-size: cover; /* Faz a imagem cobrir toda a tela */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição */
    padding: 120px 0 80px;
    margin-top: 30px;
    color: white;
    
  }
  #logo_layout {
    display: grid;
    grid-template-columns: 1fr auto; /* espaço flexível + item à direita */
    align-items: center;
    top: 600px;
    width: 200px;
  }


  .hero-content {

    display: flex;
    align-items: center;
    gap: 4rem;
  }

  .hero-text {
    flex: 1;
    margin-top: 60px;
  }
  #logo-hero {
    height: 100px;
  }

  #p-hero {
  margin-left: 80px;
  }
  #div-logo-hero {
    position: relative;
    top:-50px;
    left: -30px;
  }
  #div-logo-hero p {
    max-width: 300px;   /* largura máxima */
    line-height: 1.5;   /* deixa mais legível */
    color: rgb(55 74 60)
  }

  .hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
  }

  /* Updated highlight color to yellow for better contrast */
  .highlight {
    color: #ffd700;
  }


  /* Added hero buttons container */
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 100px;
  }

  .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
  }
details summary {
cursor: pointer;
color: #9eb34b;

}
details[open] summary {
   color: #9eb34b45;
}


  .stat {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
  }

  .stat-label {
    font-size: 0.9rem;
    color: #666;
  }

  .hero-image {
    flex: 1;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Solutions Section */
  .solutions {
    padding: 80px 0;
    background: white;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
  }

  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .solution-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
  }

  .solution-card:hover {
    transform: translateY(-5px);
  }

  .solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
  }

  .solution-card p {
    color: #666;
    margin-bottom: 1.5rem;
  }

  .solution-card ul {
    list-style: none;
    text-align: left;
  }

  .solution-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
  }

  .solution-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
  }

  /* How it Works Section */
  .how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }

  .step {
    text-align: center;
  }

  /* Updated step number color to match brand */
  .step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #52c41a;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
  }

  .step p {
    color: #666;
  }

  /* Benefits Section */
  .benefits {
    padding: 80px 0;
    background: white;
  }

  .benefits-content {
    display: flex;
    align-items: center;
    gap: 4rem;
  }

  .benefits-text {
    flex: 1;
  }

  .benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
  }

  .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Updated benefit icon color */
  .benefit-icon {
    background: #52c41a;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
  }

  .benefit-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
  }

  .benefit-item p {
    color: #666;
  }

  .benefits-image {
    flex: 1;
  }

  .benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Testimonials Section */
  .testimonials {
    padding: 80px 0;
    background: #f8f9fa;
    display:none
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .testimonial-author strong {
    color: #333;
    font-weight: 600;
  }

  .testimonial-author span {
    color: #999;
    font-size: 0.9rem;
  }

  /* CTA Section */
  /* Updated CTA section with Ecosolutions gradient */
  .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #52c41a 0%, #4a90e2 100%);
    color: white;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .cta-section .cta-button-large {
    background: white;
    color: #2d5a3d;
  }

  .cta-section .cta-button-large:hover {
    background: #f8f9fa;
  }

  /* Footer */
  /* Updated footer colors to match brand */
  .footer {
    background: #2d5a3d;
    color: white;
    padding: 60px 0 20px;
  }

  /* Added footer logo styling */
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .footer-logo .logo-image {
    height: 35px;
    margin-bottom: 10px;
    height: 40px;
    object-fit: contain;
  }

  .footer-logo .logo-icon {
    font-size: 1.5rem;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h3,
  .footer-section h4 {
    margin-bottom: 1rem;
    color: #52c41a;
  }

  .footer-section ul {
    list-style: none;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-section ul li a:hover {
    color: white;
  }

  .footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
  }

  /* Modal */
  .button-budget-modal{
    margin-right: 10px;
  }
  #simulatorResult button {
    margin-top: 10px;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
  }

  .close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
  }

  .close:hover {
    color: #333;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
  }

  .form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
  }

  .form-group input:focus {
    outline: none;
    border-color: #52c41a;
  }

  .simulator-result {
    text-align: center;
    padding: 2rem 0;
  }

  .result-stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
  }

  .result-stat {
    text-align: center;
  }

  .result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #52c41a;
  }

  .result-label {
    font-size: 0.9rem;
    color: #666;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }

    .hero-content {
      flex-direction: column;
      text-align: center;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero-stats {
      justify-content: center;
    }

    .hero-buttons {
      justify-content: center;
    }

    .cta-button-primary,
    .cta-button-secondary {
      margin-right: 0;
      margin-bottom: 1rem;
    }

    .benefits-content {
      flex-direction: column;
    }

    .section-title {
      font-size: 2rem;
    }

    .steps {
      grid-template-columns: 1fr;
    }

    .result-stats {
      flex-direction: column;
      gap: 1rem;
    }
    .how-it-works {
      margin-top: 20px;
      -webkit-background-composite: black;
    }

    
  }

  @media (max-width: 480px) {
    .hero-stats {
      flex-direction: column;
      gap: 1rem;
    }

    .stat {
      padding: 0.75rem;
    }

    .modal-content {
      margin: 10% auto;
      padding: 1.5rem;
    }
  }
