/* Arquivo styles.css - Versão 13 (Novo Layout) */

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

:root {
    --bg-color-start: #0C013F;
    --bg-color-mid: #0C013B;
    --bg-color-end: #050217;
    --primary-text: #ffffff;
    --secondary-text: #a0a0a0;
    --accent-color: #f0c419; /* Amarelo para o botão VIP */
    --border-radius: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, var(--bg-color-start) 0%, var(--bg-color-mid) 50%, var(--bg-color-end) 100%);
    color: var(--primary-text);
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Header & Hero Section */
.hero-section {
    padding: 20px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.main-icon {
    width: 50px;
    height: 50px;
}

.header-logo h1 {
    font-size: 24px;
    font-weight: 700;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-text h3 {
    font-size: 28px; /* Negrito intermediário */
    font-weight: 600;
    margin-bottom: 15px;
}

.tagline {
    font-size: 18px;
    color: var(--secondary-text);
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-ofertas, .btn-grupo-vip {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ofertas {
    background-color: transparent;
    border: 2px solid var(--primary-text);
    color: var(--primary-text);
}

.btn-ofertas:hover {
    background-color: var(--primary-text);
    color: var(--bg-color-end);
}

.btn-grupo-vip {
    background-color: var(--accent-color);
    color: #000;
    border: 2px solid var(--accent-color);
}

.btn-grupo-vip:hover {
    transform: scale(1.05);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.microwave-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.phone-mockup {
    display: none;
}

/* Category Section */
.category-section {
    margin: 60px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
}

.category-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 150px;
}

.category-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.category-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    /* filter: invert(1); REMOVIDO para manter a cor original */
    object-fit: contain;
}

.category-item span {
    font-size: 14px;
    white-space: nowrap; /* Impede quebras de linha indesejadas */
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Partnerships Section */
.partnerships-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}


.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLoop 40s linear infinite;
}

.carousel-item {
    flex: 0 0 150px;
    height: 80px;
    background-color: #fff;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animação suave e contínua */
@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Why Section */
.why-section {
    margin-bottom: 60px;
}

.why-section .section-title {
    margin-bottom: 20px;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
    flex-wrap: wrap;
}

.check-icon {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--secondary-text);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .tagline {
        margin: 0 auto 30px auto;
    }

    .microwave-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 36px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
