body {
    background: #f5f5f5; /* Cinza claro */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* 🔹 Header - Ajustado para texto à esquerda e imagem à direita */
.hero {
    background: black;
    color: white;
    padding: 50px 0px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 40px;
}

/* 🔹 Texto no lado esquerdo */
.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 10px;
}

.logo {
    width: 150px;
    margin-bottom: 20px;
}

/* 🔹 Botão */
.btn {
    background: red;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: darkred;
}

/* 🔹 Imagem no lado direito */
.hero-image {
    flex: 1;
    text-align: right;
    max-height: 476px;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
}

/* 🔹 Responsividade: Ajusta o layout para telas menores */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        text-align: center;
    }
}

.benefits {
    background: #d00; /* Mantendo o fundo vermelho */
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.benefits h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: auto;
}

.benefit {
    background: white; /* Fundo branco nas caixas */
    color: black; /* Texto preto */
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit i {
    font-size: 30px; /* Tamanho do ícone */
    color: #000; /* Cor vermelha para combinar com o tema */
    margin-bottom: 10px; /* Espaço abaixo do ícone */
    display: block;
}

.benefit h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* 🔹 Barra de informações com rolagem contínua */
.info-bar {
    background: #202020;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* 🔹 Faz o texto rolar sem interrupções */
.info-bar-content {
    display: flex;
    width: 200%; /* 🔹 Garante que o conteúdo ocupe o dobro da tela */
    animation: marquee 20s linear infinite;
}

/* 🔹 Garante que o texto dentro da barra ocupe metade do espaço, para rolar continuamente */
.info-bar-content span {
    flex: 1;
}

/* 🔹 Animação contínua sem pausas */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.products {
    text-align: center;
    padding: 40px 20px;
}

.swiper {
    max-width: 950px;
    margin: auto;
    padding: 20px 0;
}

/* 🔹 Ajusta o tamanho dos slides no carrossel */
.swiper-slide {
    width: 300px !important; /* 🔹 Mantém os slides fixos com 300px */
    max-width: 300px;
    background: white;
    border-radius: 2px;
    padding: 0px 0px 15px 0px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Ajuste para garantir que o carrossel não fique desproporcional */
.swiper-wrapper {
    display: flex;
    align-items: center;
}

.swiper-slide img {
    border-radius: 2px;
}

/* 🔹 Nome do produto em negrito e maiúsculas */
.swiper-slide p {
    font-size: 16px;
    font-weight: 900 !important; /* 🔹 Força o negrito, ignorando outras regras */
    text-transform: uppercase;
    margin: 10px 0;
    color: black;
}

/* 🔹 Linha de separação */
.swiper-slide hr {
    width: 100%; /* 🔹 Linha ocupa toda a largura da caixa */
    border: none; /* 🔹 Remove o estilo padrão */
    border-top: 1px solid #ccc; /* 🔹 Linha fina */
    margin: 10px 0;
}

/* 🔹 Estilização do "Saiba mais" nos produtos */
.swiper-slide .learn-more {
    display: inline-flex;
    align-items: center;
    color: black;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out;
}

.swiper-slide .learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease-in-out;
}

/* 🔹 Efeito hover */
.swiper-slide .learn-more:hover i {
    transform: translateX(5px);
}

.reseller {
    color: black;
    text-align: center;
    padding: 40px 20px;
}

.reseller h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.reseller p {
    font-size: 18px;
    margin-bottom: 20px;
}

.reseller .btn {
    background: black;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px;
    transition: background 0.3s;
}

.reseller .btn:hover {
    background: red;
}

.info-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px 20px;
    background: transparent;
    max-width: 600px;
    margin: auto;
}

/* 🔹 Coluna esquerda (caixas 1 e 2 empilhadas) */
.info-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

/* 🔹 Caixa da direita (caixa 3) */
.info-right {
    flex: 1;
}

/* 🔹 Estilos gerais das caixas */
.info-box {
    background: white;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* 🔹 Responsividade: No celular, todas as caixas ficam uma abaixo da outra */
@media (max-width: 768px) {
    .info-boxes {
        flex-direction: column;
        align-items: center;
    }

    .info-left, .info-right {
        width: 100%;
    }
}

.info-box h3 {
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: black;
    margin-bottom: 10px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    text-align: left;
}

.info-box ul li {
    margin-bottom: 5px;
}

.info-box a {
    display: inline-block;
    margin-top: 10px;
    color: red;
    text-decoration: none;
    font-weight: bold;
}

.info-box a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #202020;
    color: white;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 30px; /* Ajuste o tamanho dos ícones */
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: red; /* Efeito hover para destacar os ícones */
}