
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar {
    padding: 20px 10px;
    top: 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    margin-top: 20px;
    height: 48px;
    width: auto;
    max-width: 175px;
}


.logo h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: -5px;
    display: none;
}

.logo p {
    font-size: 11px;
    letter-spacing: 3px;
    color: #666;
    font-weight: 400;
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #000;
}

.dropdown-arrow {
    font-size: 10px;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 660px;
    max-width: 800px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 15px;
    max-height: 500px;
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item:hover {
    background: #f5f5f5;
    color: #000;
    font-weight: 500;
    padding-left: 20px;
}






.hero-search-container {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 460px;
}

.hero-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    
    border-radius: 50px;
    padding: 4px 4px 4px 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    isolation: isolate; 
}


.hero-search-wrapper::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    
    background: linear-gradient(90deg, 
        #4285F4, #9B72CB, #ffffff, #F4B400, #4285F4
    );
    background-size: 300% 100%;
    border-radius: 52px; 
    z-index: -2;
    animation: gradientMove 3s linear infinite;
}


.hero-search-wrapper::after {
    content: '';
    position: absolute;
    
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    border-radius: 50px; 
    z-index: -1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%; 
    }
}



.hero-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: default;
    flex-shrink: 0;
    padding: 0;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 8px;
    font-size: 15px;
    color: #1f2937;
    background: transparent;
    min-width: 0;
    width: 100%;
}

.hero-search-input::placeholder {
    color: #9ca3af;
}

.hero-voice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-voice-btn:hover {
    transform: scale(1.05);
}

.hero-voice-btn:active {
    transform: scale(0.95);
}

.hero-voice-btn.listening {
    background: #fee2e2;
    color: #ef4444;
    animation: pulse-voice 1.5s infinite;
}

@keyframes pulse-voice {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}


@media (max-width: 768px) {
    .hero-search-container {
        max-width: 100%;
        margin: 1.25rem 0;
    }

    .hero-search-input {
        font-size: 14px;
        padding: 10px 6px;
    }

    .hero-search-icon {
        width: 36px;
        height: 36px;
    }

    .hero-voice-btn {
        width: 40px;
        height: 40px;
    }
    .hero-search-input {
        font-size: 13px;

    }    
}

@media (max-width: 480px) {
    .hero-search-wrapper {
        padding: 3px 3px 3px 10px;
    }

    .hero-search-input {
        font-size: 13px;
        padding: 8px 4px;
    }

    .hero-search-icon {
        width: 32px;
        height: 32px;
    }

    .hero-search-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-voice-btn {
        width: 38px;
        height: 38px;
    }

    .hero-voice-btn svg {
        width: 18px;
        height: 18px;
    }
}







.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.phone svg {
    width: 16px;
    height: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
}

.phone-link:hover {
    color: #000;
}

.nav-phone {
    display: none;
}

.nav-search {
    display: none;
}

.phone-icon {
    font-size: 16px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    position: relative;
}

.language-selector-mobile {
    display: none;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.language-dropdown:hover .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-option:hover {
    background: #f5f5f5;
    color: #000;
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    color: #000;
}


.hero {
    background: #fff;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}


.brands {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.brands h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #000;
}

.brands-slider {
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 80px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.brands-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.brands-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



.products {
    padding: 0;
    background: #fff;
}


.products-header {
    text-align: center;
    padding: 80px 0 60px;
    background: #fff;
}
.products-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0;
}


.products-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}


.product-card {
    width: 100%;
    background: #f5f5f5; 
    padding: 80px 0;
    box-sizing: border-box;
}


.product-card.reverse {
    background: #fff; 
}


.product-content.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
}


.product-image,
.product-info {
    flex: 1 1 50%;
    box-sizing: border-box;
}


.product-image {
    order: 0; 
    text-align: center;
    overflow: hidden;
    padding: 0 10px;
}
.product-info {
    order: 1; 
    padding: 0 10px;
}


.product-card.reverse .product-image {
    order: 1;
}
.product-card.reverse .product-info {
    order: 0;
}


.product-image img {
    width: 100%;
    max-width: 380px; 
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
    display: inline-block;
}
.product-image:hover img {
    transform: scale(1.12);
    
}

.product-grid-card p.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 10px 0 15px 0;
    text-align: center;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;

}


.product-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}
.product-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.product-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    white-space: pre-line;
}


.product-benefits {
    margin-bottom: 30px;
}
.product-benefits strong {
    font-size: 16px;
    color: #000;
    display: block;
    margin-bottom: 10px;
}
.product-benefits ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.product-benefits li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    position: relative;
    padding-left: 22px;
}
.product-benefits li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.view-all-container {
    text-align: center;
    padding: 60px 0 80px;
    background: #fff;
}

.view-all-container {
    text-align: center;
    padding: 60px 0 80px;
    background: #fff;
}


.btn-primary {
    background: #000;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.btn-primary:hover {
    background: #333;
    transform: scale(1.2);
}

.btn-secondary {
    background: #000;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-secondary:hover {
    background: #333;
    transform: scale(1.2);
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}


.testimonials {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #000;
}

.testimonials-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 60px 0;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    min-width: 360px;
    max-width: 360px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
}

.testimonial-position {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #000;
    width: 12px;
    height: 12px;
}

    
.contact {
    padding: 80px 0 0 0;
    overflow: hidden;
}
 
 

.contact-content {
    display: flex;
    align-items: center; 
    justify-content: center;  
    gap: 80px;
}


.contact-image {
    flex: 1;
    margin-bottom: 0;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    display: block;
}

.contact-text {
    flex: 1;
    color: black;
    padding-bottom: 80px;
    text-align: center; 
}

.contact-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: black;
}

.contact-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: grey;
    line-height: 1.6;
}


.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}


.footer-left {
    padding-right: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 40px;
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #fff;
    color: #000;
    transform: scale(1.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}


.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 0;
    color: #fff;
}

.footer-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    color: #ccc;
    margin-top: 5px;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
    font-weight: 500;
}

.footer-copyright {
    font-size: 13px;
    color: #999;
    margin-top: auto;
}


.footer-right {
    padding-left: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-item svg {
    flex-shrink: 0;
}

.made-in-brazil {
    margin-top: 30px;
}

.made-in-brazil img {
    width: 120px;
    height: auto;
}


.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

.footer-address {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 30px;
}

.footer-address p {
    margin-bottom: 5px;
}


@media (max-width: 968px) {
    .nav-menu {
        gap: 25px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .product-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .product-card.reverse .product-content {
        flex-direction: column;
    }

    .product-card {
        padding: 60px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .contact-text {
        padding-bottom: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-center {
        order: -1;
    }

    .footer-nav {
        gap: 20px;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    
    .nav-content {
        position: relative;
    }

    .logo img {
        height: 32px;
    }

    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        padding: 10px;
        color: #000;
        background: none;
        border: none;
        z-index: 1001;
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-right {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-phone {
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }

    .hero-image {
        flex: 0 0 140px;
    }

    .hero-image img {
        max-width: 140px;
    }

    .hero-text {
        flex: 1;
    }

    .hero-text h1 {
        font-size: 24px;
        text-align: left;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 13px;
        text-align: left;
        margin-bottom: 20px;
        line-height: 1.6;
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-stats {
        gap: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .stat-item h3 {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .testimonials-grid {
        padding: 20px 0 40px;
        justify-content: center;
    }

    .testimonial-card {
        min-width: 90%;
        max-width: 90%;
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .brands-track {
        gap: 50px;
    }

    .product-content {
        padding: 0 20px;
        text-align: center;
    }

    .product-card {
        padding: 40px 0;
    }

    .product-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-info h3 {
        font-size: 22px;
    }

    .product-benefits {
        text-align: left;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .view-all-container {
        padding: 40px 0 60px;
    }

    .contact-content {
        flex-direction: column-reverse;
        padding: 0;
    }

    .contact-image img {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        padding: 0;
    }

    .footer-center {
        order: -1;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .footer-contact {
        align-items: center;
    }

    .made-in-brazil {
        text-align: center;
    }
}


.kit-header {
    padding: 80px 0 40px;
    background: #fff;
    text-align: center;
}

.kit-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.kit-products {
    padding: 0;
    background: #fff;
}


.products-page {
    padding: 80px 0;
    background: #fff;
}

.products-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-page-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.products-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-grid-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-grid-card-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
}

.product-grid-card-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.product-grid-card:hover .product-grid-card-image img {
    transform: scale(1.05);
}

.product-grid-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.product-grid-card .btn-primary {
    margin: 0 auto;
}


.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    margin-bottom: 40px;
}

.about-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-section {
    padding: 60px 0;
    background: #fff;
}

.mission-header {
    text-align: center;
    margin-bottom: 40px;
}

.mission-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.mission-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-page-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.contact-page-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.contact-form-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text {
    flex: 1;
}

.contact-info-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.contact-info-text a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.contact-info-text a:hover {
    text-decoration: underline;
}


@media (max-width: 968px) {
    .products-grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .kit-header {
        padding: 40px 0 20px;
    }
    
    .kit-title {
        font-size: 28px;
    }
    
    .products-page {
        padding: 40px 0;
    }
    
    .products-page-header h1 {
        font-size: 28px;
    }
    
    .products-grid-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-header h1 {
        font-size: 28px;
    }
    
    .mission-header h2 {
        font-size: 24px;
    }
    
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page-header h1 {
        font-size: 28px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 30px 20px;
    }
    
    .language-selector-mobile {
        display: block;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        margin: 10px 0;
    }

    .language-dropdown-mobile {
        position: relative;
        padding: 15px;
    }

    .language-current-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        padding: 12px 14px;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        transition: background 0.3s ease;
    }

    .language-current-mobile:hover {
        background: #efefef;
    }

    .flag-icon-mobile {
        width: 28px;
        height: 18px;
        border-radius: 3px;
        object-fit: cover;
    }

    .dropdown-arrow-mobile {
        margin-left: auto;
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .language-dropdown-mobile.active .dropdown-arrow-mobile {
        transform: rotate(180deg);
    }

    .language-dropdown-menu-mobile {
        display: none;
        flex-direction: column;
        gap: 4px;
        margin-top: 8px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
    }

    .language-dropdown-menu-mobile.show {
        display: flex;
    }

    .language-option-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        text-decoration: none;
        color: #333;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        transition: background 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }

    .language-option-mobile:last-child {
        border-bottom: none;
    }

    .language-option-mobile:hover {
        background: #f8f8f8;
    }

    .language-option-mobile.active {
        background: #f0f0f0;
        font-weight: 500;
    }
    .hero-image {
        display: none;
    }
    .hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-text {
        width: 100%;
        text-align: center;
    }
    
    .hero-text h1 {
        text-align: center;
    }
     
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .hero-description {
        text-align: center;
    }

    .product-card.reverse .product-image {
        order: 0;
    }
    .product-card.reverse .product-info {
        order: 1;
    }
}
