* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    color: #fff;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 50%,
        rgba(0,0,0,.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.hero-tagline {
    display: inline-block;
    width: fit-content;
    padding: 10px 18px;
    margin-bottom: 20px;
    background: rgba(46, 125, 50, .9);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features span {
    font-size: 15px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-primary {
    background: #2e7d32;
    color: #fff;
}

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2e7d32;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    width: 36px;
    border-radius: 20px;
    background: #8bc34a;
}

@media (max-width: 768px) {

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
}

.about {
    padding: 100px 0;
    background: #f8faf7;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.section-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(46,125,50,.1);
    color: #2e7d32;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-content p {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.feature-item {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 14px;
    font-weight: 600;
    color: #2e7d32;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.advantages {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 42px;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    padding: 35px 30px;
    background: #f8faf7;
    border-radius: 24px;
    text-align: center;
    transition: all .3s ease;
    border: 1px solid #eef2ee;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(46,125,50,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.advantage-card h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.8;
}

.products {
    padding: 100px 0;
    background: #f8faf7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background: #ffffff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform .4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 28px;
}

.product-content h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
}

.product-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-meta {
    list-style: none;
}

.product-meta li {
    margin-bottom: 10px;
    color: #2e7d32;
    font-weight: 600;
}

.journey {
    padding: 100px 0;
    background: #ffffff;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    position: relative;
}

.journey-timeline::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #d9e8d7;
    z-index: 0;
}

.journey-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

.journey-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #f1f8e9;
    border: 3px solid #8bc34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.journey-item h3 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 12px;
}

.journey-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

.journey-quote {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}

.journey-quote p {
    font-size: 20px;
    line-height: 1.8;
    color: #2e7d32;
    font-weight: 600;
}

.certifications {
    padding: 100px 0;
    background: #f8faf7;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.certification-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    transition: all .3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,.08);
}

.certification-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.food-safety-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.food-safety-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(46,125,50,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.food-safety-content h3 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 18px;
}

.food-safety-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.food-safety-content ul {
    padding-left: 20px;
}

.food-safety-content li {
    color: #4b5563;
    margin-bottom: 12px;
}

.partners {
    padding: 100px 0;
    background: #ffffff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 50px 0 70px;
}

.partner-item {
    background: #f8faf7;
    border: 1px solid #eef2ee;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    font-weight: 600;
    color: #2e7d32;
    transition: all .3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f8faf7;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.testimonial-rating {
    color: #fbc02d;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.partner-cta {
    margin-top: 70px;
    padding: 50px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 30px;
    text-align: center;
    color: #ffffff;
}

.partner-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.partner-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.faq {
    padding: 100px 0;
    background: #f8faf7;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.faq-icon {
    font-size: 28px;
    color: #2e7d32;
    transition: transform .3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .3s ease;
}

.faq-answer p {
    padding: 0 32px 28px;
    color: #6b7280;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.contact-section {
    padding: 100px 0;
    background: #f8faf7;
}

.contact-cta {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: #ffffff;
    text-align: center;
    padding: 70px 40px;
    border-radius: 30px;
    margin-bottom: 60px;
}

.section-label-light {
    background: rgba(255,255,255,.15);
    color: #ffffff;
}

.contact-cta h2 {
    font-size: 42px;
    margin: 20px auto;
    max-width: 700px;
    line-height: 1.2;
}

.contact-cta p {
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-light {
    background: #ffffff;
    color: #2e7d32;
}

.btn-light:hover {
    background: #f3f4f6;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,.5);
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #2e7d32;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}

.contact-info,
.contact-form {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 30px;
    color: #1f2937;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(46,125,50,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 16px;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 4px rgba(46,125,50,.1);
}

.footer {
    background: #1f2937;
    color: rgba(255,255,255,.75);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
    display: inline-block;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand p {
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-column a:hover,
.footer-social a:hover {
    color: #8bc34a;
}

.footer-social {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-social a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-contact li {
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color .3s ease;
}

.footer-bottom-links a:hover {
    color: #8bc34a;
}
.main-header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    transition: all .3s ease;

    background: rgba(255,255,255,.1);

    backdrop-filter: blur(8px);
}

.main-header.scrolled {

    background: rgba(255,255,255,.95);

    box-shadow: 0 5px 30px rgba(0,0,0,.08);
}

.navbar {

    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.logo img {

    height: 60px;

    width: auto;

    display: block;
}

.nav-menu {

    display: flex;

    gap: 35px;

    list-style: none;
}

.nav-menu a {

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}

.main-header.scrolled .nav-menu a {

    color: #1f2937;
}

.nav-menu a:hover {

    color: #8bc34a;
}

.header-cta {

    padding: 12px 24px;

    border-radius: 50px;

    background: #2e7d32;

    color: #fff;

    text-decoration: none;

    font-weight: 600;
}

.header-cta:hover {

    background: #1b5e20;
}

.hamburger {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;

    border: none;

    cursor: pointer;
}

.hamburger span {

    width: 28px;

    height: 3px;

    background: #ffffff;

    transition: .3s;
}

.main-header.scrolled .hamburger span {

    background: #1f2937;
}


@media (max-width: 992px) {

    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .certifications {
        padding: 70px 0;
    }

    .certification-grid {
        grid-template-columns: 1fr;
    }

    .food-safety-box {
        flex-direction: column;
        padding: 30px;
    }

    .food-safety-content h3 {
        font-size: 24px;
    }

}
@media (max-width: 768px) {

    .about {
        padding: 70px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 16px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

@media (max-width: 992px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .products {
        padding: 70px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-image {
        height: 240px;
    }

    .product-content h3 {
        font-size: 22px;
    }

}

@media (max-width: 1200px) {

    .journey-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }

    .journey-timeline::before {
        display: none;
    }

}

@media (max-width: 768px) {

    .journey {
        padding: 70px 0;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .journey-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }

    .journey-item h3 {
        font-size: 18px;
    }

}

@media (max-width: 992px) {

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .partners {
        padding: 70px 0;
    }

    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-cta {
        padding: 35px 25px;
    }

    .partner-cta h3 {
        font-size: 26px;
    }

}

@media (max-width: 768px) {

    .faq {
        padding: 70px 0;
    }

    .faq-question {
        padding: 22px 24px;
    }

    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 24px 24px;
    }

}

@media (max-width: 992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-cta {
        padding: 50px 25px;
    }

    .contact-cta h2 {
        font-size: 32px;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

}

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

}
.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
    z-index: 999;
}

.mobile-menu {

    position: fixed;

    top: 90px;

    left: -100%;

    width: 100%;

    background: #ffffff;

    z-index: 9998;

    padding: 30px;

    display: flex;

    flex-direction: column;

    gap: 20px;

    transition: .3s;
}

.mobile-menu.active {

    left: 0;
}

.mobile-menu a {

    text-decoration: none;

    color: #1f2937;

    font-weight: 600;
}

.mobile-cta {

    margin-top: 10px;

    text-align: center;

    background: #2e7d32;

    color: #fff !important;

    padding: 14px;

    border-radius: 50px;
}

@media (max-width: 992px) {

    .nav-menu {

        display: none;
    }

    .header-cta {

        display: none;
    }

    .hamburger {

        display: flex;
    }

}