@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,900;1,900&family=Ruda:wght@900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    background: url('../images/fundo.jpg') no-repeat center center fixed;
    background-size: cover;
}

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

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

.whatsapp-btn {
  align-items: center;
}


.header-content {
    display: flex;
    align-items: center; /* centraliza verticalmente logo e menu */
    justify-content: space-between; /* separa logo à esquerda e menu à direita */
     padding: 10px 40px;
}

.logo {
    
    font-size: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}

.logo img {
    height: 110px;
    width: auto;
}

.nav-desktop {
   padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    background: #02732A;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-desktop a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.3rem;
    transition: all .35s ease;
}

/* .nav-desktop a:hover {
    color: #F2F2F2;
    text-decoration: underline #F2F2F2;
} */

.nav-desktop a {
  color: #ffffff;
  position: relative;

}

.nav-desktop a::after,
.nav-desktop a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #C6D984, #F2F2F2);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.nav-desktop a:hover::after,
.nav-desktop a:hover::before {
  transform: scaleX(1);
}

.nav-desktop a.active::before {
  transform: scaleX(1);
}

.btn-contact {
    background: #00A651;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-contact:hover {
    background: #008A44;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.nav-mobile.active {
    display: flex;
    background-color: rgba(0, 0, 0, 0.685);
}

.nav-mobile a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
}

.hero {
  
    color: white;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px),
        repeating-linear-gradient(90deg, transparent, transparent 35px, rgba(255, 255, 255, 0.03) 35px, rgba(255, 255, 255, 0.03) 70px);
    opacity: 0.3;
}

.hero-content {
    
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem 0;
}

.main-content{
     display: flex;
    
  justify-content: center;  
  min-height: 60vh;        
  padding: 20px;
  box-sizing: border-box;
}

.main-text{
   max-width: 1200px;  
    min-width: 1200px;   
  text-align: center;       
  color: #333;
  line-height: 1.6;
  background: #fff;        
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.main-text h1 {
    border-radius: 5px;
    background: #02732A;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 {
    
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero .highlight {
    color: #00A651;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
     background: #02732A;
    color: white;
}

.btn-primary:hover {
    background: #038f34;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 166, 81, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
}

.products {
    padding: 5rem 0;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    color: #00A651;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.3s;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card img {
    max-height: 410px;
    width: auto;
}

.product-card.default {
    background: #FEFEFF;
    border-width: 5px;
    border-color: #02732A;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #02732A;
  color: red;
  font-size: 14px;
  padding: 12px 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .info {
  transform: translateY(0);
  color: red;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    font-family: "Ruda", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about {
    padding: 1rem 0;
    background: white;
}

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

.testimonial {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.testimonial.reverse {
    grid-template-columns: auto 1fr;
}

.testimonial.reverse .testimonial-content {
    order: 2;
}

.testimonial.reverse .testimonial-image {
    order: 1;
}

.quote-mark {
    font-size: 4rem;
    color: #00A651;
    line-height: 1;
    margin-bottom: 1rem;
    
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


.testimonial-image {
    width: 250px;
    height: 250px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
   
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-weight: 600;
}

.history-text {
    
  font-size: 18px;        

  text-align: center;      
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo img {
    height: 60px;
    width: auto;
}

    .main-text{
   max-width: 600px;  
    min-width: 60%;   
  text-align: center;       
  color: #333;
  line-height: 1.6;
  background: #fff;         
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .testimonial,
    .testimonial.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial.reverse .testimonial-content {
        order: 1;
    }

    .testimonial.reverse .testimonial-image {
        order: 2;
    }

    .testimonial-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .placeholder-image {
    width: 100%;
    height: 100%;
   
    border-radius: 10px;
    
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-weight: 600;
}

.placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ou cover, dependendo do efeito desejado */
    border-radius: 10px;
}

    .recruitment h2 {
        font-size: 2rem;
    }

    .recruitment-text {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .quote-mark {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

