/* Grid System */
.container {
    max-width: 1404px;
    margin: 0 auto;
    padding: 0 102px;
  }
  
  .container-full {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
  
  .col-1 { grid-column: span 1; }
  .col-2 { grid-column: span 2; }
  .col-3 { grid-column: span 3; }
  .col-4 { grid-column: span 4; }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
  .col-8 { grid-column: span 8; }
  .col-9 { grid-column: span 9; }
  .col-10 { grid-column: span 10; }
  .col-11 { grid-column: span 11; }
  .col-12 { grid-column: span 12; }
  
  /* Base Styles */
  .homepage {
    background-color: #fbf5ed;
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 924px;
    overflow: hidden;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 41px 102px;
    z-index: 10;
  }
  
  .logo svg {
    display: block;
  }
  
  .nav-links {
    display: flex;
    gap: 32px;
  }
  
  .nav-links a {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  
  .nav-links a:hover {
    opacity: 0.8;
  }
  
  .nav-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  
  .icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
  }
  
  .icon-btn:hover {
    opacity: 0.8;
  }
  
  .icon-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .hero-content {
    position: absolute;
    bottom: 232px;
    left: 96px;
    z-index: 5;
  }
  
  .hero-title {
    font-family: "Lexend", Helvetica;
    font-weight: 300;
    color: #ffffff;
    font-size: 64px;
    letter-spacing: 0;
    line-height: normal;
    max-width: 446px;
  }
  
    /* Story Section */
  .story-section {
    padding: 71px 0;
  }
  
  .story-box {
    background-color: #b68e6b;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 487px;
    height: 607px;
    margin-left: 102px;
  }
  
  .story-title {
    font-family: "Lexend", Helvetica;
    font-weight: 700;
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 58px;
    margin-bottom: 24px;
  }
  
  .story-text {
    font-family: "Lexend", Helvetica;
    font-weight: 200;
    color: #f8f8f6;
    font-size: 28px;
    letter-spacing: 0;
    line-height: 38px;
  }
  
  .story-image {
    width: 487px;
    height: 607px;
    object-fit: cover;
    display: block;
    margin-right: 102px;
  }
  
  /* Waste Section */
  .waste-section {
    padding: 80px 0;
    border-top: 1px solid #4b5950;
    display: grid;
  }
  
  .waste-intro {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #4b5950;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    max-width: 588px;
    margin: 0 auto;

  }
  
  .waste-icon {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  
  .waste-icon img {
    width: 180px;
    height: 172px;
  }
  
  .horizontal-line {
    grid-column: 4 / 9; /* Faz a linha ocupar da coluna 4 até a coluna 9 */
    height: 2px; /* Define a altura da linha */
    background-color: black; /* Cor preta */
    margin: 28px auto 50px; /* Espaçamento: 28px acima e 50px abaixo */
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    gap: 20px; 
  }
  .waste-text {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #4b5950;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
    max-width: 588px;
    margin: 0 auto;
  }
  
  /* Benefits Section */
  .benefits-section {
    padding: 80px 0;
    border-top: 2px solid #4b5950;
  }
  
  .section-title {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #4b5950;
    font-size: 64px;
    text-align: center;
    letter-spacing: 0;
    line-height: 62px;
    margin-top: 100px;
    margin-bottom: 0px;

  }
  
  .benefits-layout {
    margin-top: 40px;
    align-items: center;
  }
  
  .benefits-mushroom {
    width: 100%;
    height: 1089px;
    max-width: 669px;
    margin-top: 150px;
  }
  
  .benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .benefit-card {
    background-color: #4b594f;
    padding: 40px 20px;
    text-align: center;
    min-height: 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;

  }
  
  .benefit-card img {
    width: 120px;
    height: 150px;
    object-fit: contain;
  }
  
  .benefit-card p {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 30px;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: #b68e6b;
    padding: 80px 0;
    text-align: center;
    display: grid;
    justify-content: center;
  }
  
  .cta-section .container-full {
    padding: 0 102px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr); /* Define 12 colunas iguais */
    gap: 20px; /* Espaçamento entre os elementos */
  }
  .cta-title {
    font-family: "Lexend", Helvetica;
    font-weight: 700;
    color: #f8f8f6;
    font-size: 48px;
    text-align: center !important;
    letter-spacing: 0;
    line-height: 62px;
    margin-bottom: 24px;
    max-width: 792px;
    margin-left: auto;
    margin-right: auto;
    grid-column: 3 / 10;
  }
  
  .cta-subtitle {
    font-family: "Lexend", Helvetica;
    font-weight: 200;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
    max-width: 588px;
    margin: 0 auto 40px;
  }
  
  .cta-tags {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .tag {
    background-color: #4b594f;
    color: #ffffff;
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: 32px;
    border: 1px solid #ffffff;
  }
  
  /* Products Section */
  .products-section {
    padding: 100px 0;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px; 
  }
  .product-images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    grid-column: 1/6;
  }
  
  .product-images img {
    width: 384px;
    height: 404px;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    margin-top: 290px;
  }
  
  .product-category {
    font-family: "Lexend", Helvetica;
    font-weight: 200;
    color: #4b5950;
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .product-name {
    font-family: "Lexend", Helvetica;
    font-weight: 500;
    color: #4b5950;
    font-size: 38px;
    margin-bottom: 24px;
  }
  
  .product-price {
    font-family: "Lexend", Helvetica;
    font-weight: 200;
    color: #4b5950;
    font-size: 40px;
    margin-bottom: 40px;
  }
  
  .btn-primary {
    background: transparent;
    border: 1px solid #4b594f;
    border-radius: 32px;
    padding: 20px 60px;
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #4b594f;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #4b594f;
    color: #ffffff;
  }
  
  /* Location Section */
  .location-section {
    padding: 40px 0 120px;
    border-top: 2px solid #4b5950;
    padding-top: 1px;
    overflow: hidden;
    margin-top: 28px;
  }
  
  
  .location-image {
    width: 100%;
    height: auto;
  }
  
  .location-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: left;
    height: 100%;
  }
  
  .location-card {
    text-align: left;
  }
  
  .location-card h3 {
    font-family: "Lexend", Helvetica;
    font-weight: 500;
    color: #4b5950;
    font-size: 24px;
    margin-bottom: 16px;
    line-height: 39px;
    text-align: left;
  }
  
  .location-card p {
    font-family: "Lexend", Helvetica;
    font-weight: 200;
    color: #4b5950;
    font-size: 24px;
    line-height: 39px;
  }
  
  .btn-secondary {
    background: transparent;
    border: 1px solid #4b594f;
    border-radius: 32px 16px 0px 0px;
    padding: 20px 40px;
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #4b594f;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
  }
  
  .btn-secondary:hover {
    background-color: #4b594f;
    color: #ffffff;
  }
  
  /* Footer */
  .footer {
    background-color: #4b594f;
    padding: 80px 0 40px;
    position: relative;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('https://c.animaapp.com/miw3rzwdjI1d0z/img/rectangle.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
  }
  
  .footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  
  .footer-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;

  }
  
  .footer-logo svg {
    display: block;
  }
  
  .footer-label {
    font-family: "Lexend", Helvetica;
    font-weight: 300;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .footer-text {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 20px;
    line-height: normal;
    max-width: 588px;
    margin: 0 auto 60px;
  }
  
  .footer-contact {
    margin: 60px 0;
  }
  
  .footer-contact p {
    font-family: "Lexend", Helvetica;
    font-weight: 200;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0;
    line-height: 48px;
  }
  
  .footer-social {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 60px 0;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .footer-social a {
    transition: opacity 0.3s;
  }
  
  .footer-social a:hover {
    opacity: 0.8;
  }
  
  .footer-social img {
    width: 93px;
    height: 93px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-family: "Lexend", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .container {
      padding: 0 40px;
    }
    
    .navbar {
      padding: 41px 40px;
    }
    
    .cta-section .container-full {
      padding: 0 40px;
    }
  }
  
  @media (max-width: 768px) {
    .col-6 {
      grid-column: span 12;
    }
    
    .benefits-cards-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-title {
      font-size: 48px;
    }
    
    .section-title {
      font-size: 48px;
    }
    
    .nav-links {
      display: none;
    }
  }