/* Reset e Configurações Gerais */
* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #ff3034;
    --primary-green: #007040;
    --primary-gray: #626568;
    --primary-white: #fefefe;
    --glass-red: rgba(255, 48, 52, 0.7);
    --dark-red: rgba(255, 48, 52, 0.9);
    --header-height: 100px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
}

.header .container {
    max-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header .container a {
    font-size: 1.3rem;
}

.header .container img.logo-img {
    height: 80px;
    width: auto;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
}

.nav-desktop ul li {
    margin-left: 30px;
}

.nav-desktop ul li a {
    color: var(--primary-gray);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-desktop ul li a:hover {
    color: var(--primary-red);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-urgencia {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-urgencia:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1009;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Animações do hambúrguer para X */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Mobile */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px 30px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1010;
    overflow-y: auto;
    display: block;
}

.nav-mobile.active {
    right: 0;
}

/* Overlay do menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1009;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Botão de fechar o menu */
.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-red);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 1011;
}

.close-menu:hover {
    background-color: rgba(255, 48, 52, 0.1);
    transform: rotate(90deg);
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile ul li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.nav-mobile.active ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Animação sequencial dos itens do menu */
.nav-mobile.active ul li:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active ul li:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile.active ul li:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile.active ul li:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile.active ul li:nth-child(5) { transition-delay: 0.3s; }

.nav-mobile ul li a {
    color: var(--primary-gray);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-mobile ul li a:hover {
    background-color: rgba(255, 48, 52, 0.1);
    color: var(--primary-red);
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    margin-top: var(--header-height);
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.swiper-slide {
    height: 100%;
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 48, 52, 0.3);
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    z-index: 20;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: var(--primary-red);
    transform: scale(1.1);
}

/* DOTS DO CARROSSEL */
.swiper-pagination {
    position: absolute !important;
    bottom: 25px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    margin: 0 auto;
    max-width: 200px;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.8) !important;
    opacity: 1 !important;
    width: 14px !important;
    height: 14px !important;
    margin: 0 8px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet:hover {
    background-color: white !important;
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-red) !important;
    opacity: 1 !important;
    transform: scale(1.4) !important;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.5),
        0 4px 10px rgba(255, 48, 52, 0.5) !important;
    border: 2px solid white !important;
}

/* Seção Delivery Marquee */
.delivery-marquee {
    background-color: var(--primary-green);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 20px;
    flex-shrink: 0;
}

.second-marquee {
    background-color: var(--primary-red);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

/* Seção Produtos */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-gray);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-red);
}

.products-section {
    padding: 80px 0;
    background-color: white;
}

.products-slider {
    display: flex;
    align-items: center;
    position: relative;
}

.products-track {
    margin: 1rem;
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    flex: 1;
    border: rgba(255, 0, 0, 0.25) 2px solid;
    border-radius: 15px;
}

.product-card {
    margin: 1.5rem;
    min-width: 200px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 15px;
    text-align: center;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 48, 52, 0.15);
}

.product-img {
    width: 160px;
    height: 160px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card h3 {
    font-size: 1.2rem;
    color: var(--primary-gray);
    margin-bottom: 10px;
    font-weight: 600;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remover preço e botão do produto */
.product-price, 
.product-card .btn-primary {
    display: none;
}

.slider-arrow {
    background-color: var(--primary-red);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--dark-red);
    transform: scale(1.1);
}

/* Seção Sobre */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
}

/* Seção Duas Colunas */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.two-columns {
    display: flex;
    gap: 40px;
    position: relative;
}

.left-column {
    flex: 1;
}

.right-column {
    flex: 1;
}

.column-header {
    margin-bottom: 30px;
}

.column-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--glass-red), rgba(255, 48, 52, 0.3));
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    border-radius: 15px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(-8px) scale(1);
    box-shadow: 
        0 15px 15px rgba(255, 48, 52, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 0 1px rgba(255, 255, 255, 0.8);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-gray);
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.service-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Remover ícones dos cards */
.service-card i {
    display: none;
}

/* Highlight Card */
.highlight-card {
    background: linear-gradient(145deg, 
        rgba(255, 48, 52, 0.15), 
        rgba(255, 48, 52, 0.05),
        rgba(255, 48, 52, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    color: var(--primary-gray);
    box-shadow: 
        0 20px 40px rgba(255, 48, 52, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.highlight-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.highlight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
    background: linear-gradient(45deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
}

.highlight-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    max-width: 600px;
}

.highlight-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    min-width: 325px;
    text-align: center;
    margin: 0 auto;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: #444;
}

.highlight-content .btn-primary {
    margin: 0 auto;
    display: block;
}

/* Seção Benefícios */
.benefits-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 48, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--primary-gray);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #777;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(145deg, 
        #4a4d50, 
        var(--primary-gray),
        #4a4d50);
    color: white;
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 48, 52, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 112, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(254, 254, 254, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-red), 
        var(--primary-green), 
        var(--primary-red));
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.footer-column p {
    margin-bottom: 25px;
    line-height: 1.6;
    opacity: 0.9;
    font-size: 1rem;
    text-align: justify;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50%;
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-info li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info li i {
    margin-right: 12px;
    color: var(--primary-white);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.anvisa-logo {
    max-width: 160px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.certification {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.certification p {
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 0.9rem;
    opacity: 0.666;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

/* Botões Flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1007;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.whatsapp-btn {
    background-color: #25D366;
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    font-size: 2rem;
    z-index: 1007;
}

.whatsapp-btn i.fab.fa-whatsapp {
    font-size: 2rem;
}

.top-btn {
    background-color: var(--primary-red);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* ============================== */
/* RESPONSIVIDADE */
/* ============================== */

/* Desktop Médio (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        gap: 40px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .two-columns {
        flex-direction: column;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .marquee-text {
        font-size: 1.5rem;
    }
    
    .feature-item {
        min-width: 280px;
    }
}

/* Mobile Grande (576px - 767px) */
@media (max-width: 767px) {    
    .header .container img.logo-img {
        height: 65px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-text,
    .highlight-content p,
    .benefit-card p,
    .footer-column p {
        font-size: 1rem;
    }
    
    .products-track {
        gap: 15px;
        padding: 15px 0;
    }
    
    .product-card {
        min-width: 180px;
        margin: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .marquee-text {
        font-size: 1.3rem;
        padding: 0 15px;
    }
    
    .swiper-pagination {
        bottom: 15px !important;
        max-width: 160px;
        padding: 6px 0;
    }
    
    .swiper-pagination-bullet {
        width: 10px !important;
        height: 10px !important;
        margin: 0 5px !important;
    }
    
    .swiper-pagination-bullet-active {
        transform: scale(1.2) !important;
    }
    
    .highlight-content h2 {
        font-size: 1.8rem;
    }
    
    .highlight-content p {
        text-align: center;
        padding: 0 10px;
    }
    
    .feature-item {
        min-width: 250px;
        padding: 10px 12px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .whatsapp-btn i.fab.fa-whatsapp {
        font-size: 1.5rem;
    }
}

/* Mobile Pequeno (480px - 575px) */
@media (max-width: 575px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .section-title:after {
        width: 80px;
        height: 3px;
        bottom: -8px;
    }
    
    .products-section,
    .about-section,
    .features-section,
    .benefits-section {
        padding: 60px 0;
    }
    
    .product-card {
        min-width: 160px;
        margin: 0.75rem;
        padding: 12px;
    }
    
    .product-img {
        width: 140px;
        height: 140px;
    }
    
    .marquee-text {
        font-size: 1.1rem;
        padding: 0 12px;
    }
    
    .highlight-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-item {
        min-width: 220px;
        font-size: 0.9rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .nav-mobile {
        width: 100%;
        right: -100%;
        padding: 85px 20px 25px 20px;
    }
    
    .close-menu {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }
    
    .nav-mobile ul li a {
        padding: 14px 18px;
        font-size: 1.15rem;
    }
    
    .swiper-pagination {
        bottom: 10px !important;
        max-width: 140px;
        padding: 5px 0;
    }
    
    .swiper-pagination-bullet {
        width: 9px !important;
        height: 9px !important;
        margin: 0 4px !important;
    }
}

/* Mobile Muito Pequeno (<480px) */
@media (max-width: 479px) {    
    .btn-urgencia {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-card {
        min-width: 140px;
        margin: 0.5rem;
    }
    
    .product-img {
        width: 120px;
        height: 120px;
    }
    
    .product-card h3 {
        font-size: 1rem;
        min-height: 35px;
    }
    
    .feature-item {
        min-width: 200px;
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .whatsapp-btn i.fab.fa-whatsapp {
        font-size: 1.3rem;
    }
    
    .marquee-text {
        font-size: 1rem;
    }
    
    .swiper-pagination {
        bottom: 8px !important;
        max-width: 120px;
        padding: 4px 0;
    }
    
    .nav-mobile ul li a {
        padding: 12px 15px;
        font-size: 1.1rem;
    }
}