/* ============================================
   THEME: Clean Light - Visual Redesign
   Date: 2026-01-19
   ============================================ */

:root {
  /* Backgrounds */
  --bg-primary: #fafafa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-dark: #1e1e2f;
  --bg-overlay: rgba(0, 0, 0, 0.03);

  /* Accent Colors */
  --accent-primary: #8b5cf6;
  --accent-secondary: #06b6d4;
  --accent-pink: #ec4899;
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);

  /* Text */
  --text-primary: #18181b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --text-on-dark: #ffffff;

  /* Status */
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Borders & Shadows */
  --border-color: #e4e4e7;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --container-max: 1250px;
  --section-padding: 80px;
}

/* ============================================
   HERO ANIMATIONS - Aolt Style
   ============================================ */

@keyframes hero-slide-left {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-slide-right {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-slide-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scale-in {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   MESH GRADIENT + FLOATING ORBS
   ============================================ */

@keyframes mesh-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes orb-float-1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -40px) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.5;
  }
  75% {
    transform: translate(40px, 10px) scale(1.05);
    opacity: 0.65;
  }
}

@keyframes orb-float-2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(-40px, 30px) scale(1.08);
    opacity: 0.6;
  }
  66% {
    transform: translate(20px, -30px) scale(0.92);
    opacity: 0.45;
  }
}

@keyframes orb-float-3 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-30px, 40px) scale(1.15);
    opacity: 0.55;
  }
}

@keyframes orb-pulse {
  0%, 100% {
    filter: blur(60px);
  }
  50% {
    filter: blur(80px);
  }
}

@keyframes orb-morph {
  0%, 100% {
    border-radius: 50% 50% 50% 50%;
  }
  25% {
    border-radius: 60% 40% 55% 45%;
  }
  50% {
    border-radius: 45% 55% 40% 60%;
  }
  75% {
    border-radius: 55% 45% 60% 40%;
  }
}

*{
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
body{
    margin: 0;
    padding: 0;
    padding-top: 120px; /* Space for fixed header */
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 700;
    color: var(--text-primary);
    word-spacing: .1rem;
    letter-spacing: -.02rem;
    line-height: 1.2;
}
 
::selection{
color:#ffffff;
background-color:#343f52;}
 
/*==Navigation=====================================*/
.navigation{
    display: flex;
    align-items: center;
    margin: auto;
    position: fixed;
    z-index: 100;
    width: 100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}
.menu{
    display: flex;
}
.menu li a{
    padding: 8px 16px;
    margin: 0 8px;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    border-radius: var(--border-radius-sm);
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    border-radius: 2px;
}

.menu li a:hover::after,
.menu li a.active::after {
    transform: scaleX(1);
}

.menu li a:hover {
    color: var(--accent-primary);
}

/* Social Network Icon Colors */
.menu li a .fa-instagram { color: #E1306C; }
.menu li a .fa-tiktok { color: #000000; }
.menu li a .fa-youtube { color: #FF0000; }
.menu li a .fa-facebook { color: #1877F2; }
.menu li a .fa-twitter { color: #1DA1F2; }
.menu li a .fa-kwai { color: #FF7000; }
.logo{
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #202020;
}
.logo span{
    color: #40aa54;
}

/*==NEW MODERN HEADER========================*/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(90deg, #3d9bfc 0%, #7b40e4 25%, #f53a8b 50%, #ee704a 75%, #ddd24c 100%);
    padding: 10px 20px;
    text-align: center;
    max-height: 60px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.2s ease, opacity 0.15s ease, padding 0.2s ease;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.promo-text i {
    margin-right: 8px;
}

.promo-link {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    transition: background 0.2s ease;
}

.promo-link:hover {
    background: rgba(255,255,255,0.3);
}

/* Main Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: var(--container-max, 1250px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-primary, #18181b);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: var(--bg-overlay, rgba(0,0,0,0.03));
    color: var(--accent-primary, #8b5cf6);
}

.nav-link i {
    font-size: 16px;
}

/* Social icon colors in nav */
.nav-link .fa-instagram { color: #E1306C; }
.nav-link .fa-tiktok { color: #000000; }
.nav-link .fa-youtube { color: #FF0000; }
.nav-link .fa-facebook { color: #1877F2; }
.nav-link .fa-kwai { color: #FF7000; }

/* CTA Button */
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-gradient, linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%));
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary, #18181b);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text-primary, #18181b);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-link:hover {
    background: var(--bg-overlay, rgba(0,0,0,0.03));
}

.mobile-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 14px 24px;
    background: var(--accent-gradient, linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%));
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .promo-banner-content {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .promo-text {
        font-size: 11px;
    }

    .nav-container {
        padding: 0 16px;
        height: 60px;
    }

    .logo-img {
        height: 32px;
    }
}

/* Header sticky state */
.main-header.scrolled .promo-banner {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
}

/* Body reset for fixed header - margin handled by sections */

/*==Search-Banner========================*/
#search-banner{
    position: relative;
    padding: 170px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Animated Mesh Gradient Background */
    background: linear-gradient(
        135deg,
        var(--bg-primary) 0%,
        #f0e6ff 15%,
        #e6f7ff 30%,
        #fce7f3 45%,
        #f5f3ff 60%,
        #e0f2fe 75%,
        var(--bg-primary) 100%
    );
    background-size: 400% 400%;
    animation: mesh-gradient 15s ease infinite;
    overflow: hidden;
}

@media (max-width: 576px) {
    #search-banner {
        padding: 140px 16px 60px;
    }
}

/* Floating Orb 1 - Purple (top right) */
#search-banner::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: orb-float-1 20s ease-in-out infinite, orb-pulse 8s ease-in-out infinite;
    will-change: transform, opacity, filter;
}

/* Floating Orb 2 - Cyan (bottom left) */
#search-banner::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
    animation: orb-float-2 25s ease-in-out infinite, orb-pulse 10s ease-in-out infinite 2s;
    will-change: transform, opacity, filter;
}

/* Floating Orb 3 - Pink (center right) - via HTML element */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity, filter;
}

.hero-orb--pink {
    top: 35%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, rgba(236, 72, 153, 0.08) 40%, transparent 70%);
    filter: blur(45px);
    animation: orb-float-3 18s ease-in-out infinite, orb-pulse 12s ease-in-out infinite 4s, orb-morph 15s ease-in-out infinite;
}

.hero-orb--yellow {
    bottom: 20%;
    right: 25%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.05) 40%, transparent 70%);
    filter: blur(40px);
    animation: orb-float-1 22s ease-in-out infinite 3s, orb-pulse 9s ease-in-out infinite 1s, orb-morph 12s ease-in-out infinite 2s;
}

/* Mobile: smaller orbs, less blur */
@media (max-width: 768px) {
    #search-banner::before {
        width: 280px;
        height: 280px;
        filter: blur(40px);
        opacity: 0.7;
    }
    #search-banner::after {
        width: 250px;
        height: 250px;
        filter: blur(35px);
        opacity: 0.6;
    }
    .hero-orb--pink {
        width: 200px;
        height: 200px;
        filter: blur(30px);
    }
    .hero-orb--yellow {
        display: none;
    }
}
.bg-1{
    position: absolute;
    left: -50px;
    top: -10px;
    width: 300px;
    height: 300px;
    object-fit: contain;
    object-position: center;
}
.bg-2{
    position: absolute;
    left: 60%;
    transform: translateX(-60%);
    top: 100px;
    width: 150px;
    height: 150px;
    object-position: center;
    object-fit: contain;
}
.search-banner-text{
    display: flex;
    flex-direction: column;
    width: 780px;
    position: relative;
    align-items: center;
    z-index: 1;
}
.search-banner-text > span:first-child {
    font-family: 'Inter', 'Manrope', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    /* AOS handles the animation via parent */
}
.search-banner-text span{
    font-family: 'Inter', 'Manrope', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.search-banner-text span .rotate {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-banner-text p {
    color: var(--text-secondary);
    max-width: 560px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
    /* AOS handles the animation via parent */
}

.search-banner-text img {
    width: 50px;
}

.btns-options {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

@media(max-width:750px){
.btns-options{
    flex-direction: column;
}
}

@media(max-width: 750px){
.items-2 .item-2 p {font-size: 9px !important;}
}
@media(max-width: 487px){
.items-2 .item-2 p {font-size: 7px !important;}
}


.search-box{
    height: 55px;
    display: flex;
    align-items: center;
    padding: 8px 8px 8px 8px;
    border-radius: 1000px;
    box-shadow: inset 0 0 0 1px rgb(131 131 131);
    width: max-content;
}
.search-box .search-input{
    height: 40px;
    border: none;
    width: 100%;
    padding: 0px 10px;
    outline: none;
    background: transparent;
}
.search-btn{
    width: max-content;
    height: 40px;
    transition: all ease 0.3s;
    appearance: none;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 0px 26px;
    border-radius: 40px;
    font-size: 15px;
    font-family: Poppins, "Poppins Placeholder", sans-serif;
    font-style: normal;
    color: rgb(255 255 255);
    box-shadow: rgb(236 10 153 / 24%) 0px 20px 35px;
    font-weight: 600;
    background: #1d1e25;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-box .search-btn:hover{
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
    transition: all ease 0.3s;
}
/*==category================================*/
section.category{
    display: flex;
    flex-direction: column;
    max-width: var(--container-max);
    margin: 40px auto;
    padding: 32px;
    border-radius: var(--border-radius-xl);
    background: var(--bg-card-dark);
    box-shadow: var(--shadow-lg);
}
.category-heading,
.product-heading,
.partner-heading{
    display: flex;
    justify-content: space-between;
    color: var(--text-on-dark);
    flex-direction: row;
    align-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}
.category-heading h2,
.product-heading h3,
.partner-heading h3{
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02rem;
    color: var(--text-on-dark);
    margin-bottom: 8px;
}
.category-heading p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
}

.temp span {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(4px);
}

.temp span img {
    width: 28px !important;
    height: 28px !important;
}

.time-promo {
    font-family: 'Manrope', monospace;
    font-variant-numeric: tabular-nums;
}

.category-heading .temp{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-container{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.category-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f8ff 100%);
    border-radius: var(--border-radius-lg);
    min-height: 140px;
    width: 130px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    overflow: visible;
}

.category-box:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.2);
}

.category-box button {
    border: none;
    background: transparent;
    cursor: pointer;
    min-height: 140px;
    width: 100%;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.category-box h1{
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.category-box p{
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    max-width: 100px;
}

.category-box span {
    font-weight: 800;
    color: var(--success);
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    padding: 4px 10px;
    background: var(--success-light);
    border-radius: 6px;
}

/* Modern Badges */
.category-box.card-toast::after {
    content: attr(data-card-toast-text);
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    background: var(--accent-gradient);
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.category-box.toast-light-purple::after {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-pink) 100%);
}

.category-box[data-card-toast-text*="Desconto"]::after {
    background: linear-gradient(135deg, var(--warning) 0%, #f97316 100%);
}

/*==Making-Responsive===================================*/
.menu-icon,
.menu-btn{
    display: none;
}
@media(max-width:1280px){
    #search-banner{
        /* width:1150px; */
    }
}
@media(max-width: 970px){
    #search-banner{
        /* width:90%; */
        /* height: 500px; */
    }
    section.category{
        width: 90%;
    }
    #popular-bundle-pack{
        padding: 50px 30px 0px 30px;
    }
}
@media(max-width: 1275px){
    .bg-1{
        width: 150px;
        height: 150px;
        top: -20px;
    }
    #search-banner{
        background-size: 700px;
    }
    section.category{
        width: 90%;
        padding: 1rem;
    }
}
@media(max-width: 1200px){
    .logo{
        font-size: 1.2rem;
    }

    .navigation .menu{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 100;
        background-color: var(--bg-card);
        width: 100%;
        padding: 0;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
    }

    .navigation .menu li{
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .navigation .menu li a{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        padding: 16px 20px;
        margin: 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 16px;
    }

    .navigation .menu li a::after {
        display: none;
    }

    .menu-icon{
        display: block;
    }

    .navigation .menu-icon{
        cursor: pointer;
        float: right;
        padding: 8px;
        position: relative;
        user-select: none;
        z-index: 2;
    }

    .navigation .menu-icon .nav-icon{
        background-color: var(--text-primary);
        display: block;
        height: 2px;
        width: 24px;
        position: relative;
        transition: background 0.2s ease-out;
    }

    .navigation .menu-icon .nav-icon::before,
    .navigation .menu-icon .nav-icon::after{
        background-color: var(--text-primary);
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        transition: all ease-out 0.2s;
    }

    .navigation .menu-icon .nav-icon::before{ top: 7px; }
    .navigation .menu-icon .nav-icon::after{ top: -7px; }

    .navigation .menu-btn:checked ~ .menu-icon .nav-icon::before{
        transform: rotate(-45deg);
        top: 0;
    }
    .navigation .menu-btn:checked ~ .menu-icon .nav-icon::after{
        transform: rotate(45deg);
        top: 0;
    }
    .navigation .menu-btn:checked ~ .menu-icon .nav-icon{
        background-color: transparent;
    }
    .navigation .menu-btn:checked ~ .menu{
        display: block;
    }

    .category-container{
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .category-box{
        margin: 0;
    }

    .product-container{
        grid-template-columns: 1fr 1fr;
    }
    .client-box-container{
        grid-template-columns: 1fr 1fr;
    }
    .partner-heading{
        justify-content: center;
    }
    .logo-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo-container img{
        margin: 10px;
    }
    #download-app{
        flex-direction: column;
        height: 100%;
        background-color: transparent;
        margin-top: 0;
        width: 90%;
        max-width: 100%;
    }
    .app-img{
        height: 450px;
        width: 220px;
    }
    .download-app-text{
        max-width: 100%;
        background-color: #ecf7ee;
        padding: 20px;
        border-radius: 20px;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .footer-links{
        text-align: center;
    }
}
@media(max-width: 750px){
    #search-banner {
        padding: 120px 16px 60px;
    }

    .search-banner-text span {
        font-size: 38px;
        line-height: 1.15;
    }

    .rotate {
        min-height: 50px;
    }

    .search-banner-text p {
        font-size: 14px;
        padding: 0 16px;
    }

    .social-selector {
        gap: 16px;
    }

    .icon-button svg,
    .icon-button i,
    .icon-button img {
        width: 52px;
        height: 52px;
    }

    .items-2 {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .item-2 {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .category-heading,
    .product-heading,
    .partner-heading {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .category-heading h2 {
        font-size: 1.5rem;
    }

    .category-heading p {
        text-align: center;
    }

    .category-heading .temp {
        margin: 16px 0 0;
    }

    .temp span {
        font-size: 24px;
        padding: 10px 16px;
    }

    .temp span img {
        width: 24px !important;
        height: 24px !important;
    }

    label.tab-label {
        font-size: 14px;
        padding: 16px;
    }

    .client-heading h3 {
        font-size: 26px;
    }

    .tabs {
        padding: 0 8px;
    }

    .bg-1 {
        display: none;
    }

    .client-box-container {
        grid-template-columns: 1fr;
    }
}
@media(max-width:500px){
    #search-banner {
        padding: 110px 12px 50px;
    }

    #search-banner::before,
    #search-banner::after {
        display: none;
    }

    .search-banner-text span {
        font-size: 32px;
    }

    .rotate {
        min-height: 45px;
    }

    section.category {
        margin: 20px 12px;
        padding: 20px 16px;
        border-radius: var(--border-radius-lg);
    }

    .category-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-box{
        width: 100%;
        min-height: 130px;
    }

    .category-box button {
        min-height: 130px;
        padding: 14px 10px;
    }

    .category-box h1 {
        font-size: 24px;
    }

    .category-box p {
        font-size: 11px;
    }

    .category-box span {
        font-size: 14px;
        padding: 3px 8px;
    }

    .product-container{
        grid-template-columns: 1fr;
    }

    #popular-bundle-pack{
        padding: 30px 20px 0 20px;
    }

    .footer-container{
        grid-template-columns: 1fr;
    }

    .footer-links{
        margin-top: 10px;
    }

    .tab-content {
        font-size: 13px;
        padding: 0 16px;
    }

    .tab input:checked ~ .tab-content {
        padding: 0 16px 16px;
    }
}

@media(max-width:350px){
    .search-banner-text span {
        font-size: 26px;
    }

    .rotate {
        min-height: 40px;
    }

    .category-container {
        grid-template-columns: 1fr;
    }

    .category-box {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .icon-button svg,
    .icon-button i,
    .icon-button img {
        width: 48px;
        height: 48px;
    }

    .social-selector {
        gap: 12px;
    }

    .temp span {
        font-size: 20px;
        padding: 8px 12px;
    }

    .category-heading h2,
    .product-heading h3,
    .client-heading h3,
    .partner-heading h3{
        font-size: 1.2rem;
    }
}
@media(max-width:350px){
    .download-btns{
        flex-direction: column;
    }
    .download-btns a{
        margin: 4px 0px;
        width: 140px;
    }
    .download-btns a img{
        width: 100%;
    }
    .right-nav{
        grid-gap: 5px;
    }
}

.navigation .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    margin: auto;
    width: 100%;
    max-width: 1250px;
}


.banner56 {
    width: 100%;
    font-size: 14px;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    text-overflow: ellipsis;
    padding: 11px 15px;
    color: #fff;
    background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}
 .button190{
    padding: 5px 20px;
    background-color: #1d1e25;
    color: #ffffff;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all .5s ease;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
 }

@media (max-width: 768px){
      #banner, #banner button {
      font-size: 10px;
      }
    }


 .button190:hover{
     background: transparent;
    color: var(--color-custom2);
    background:  var(--color-custom4);
 }
.banner56 .fa-close {
    /* position: absolute; */
    /* right: 0; */
    /* padding: 15px; */
    top: 50%;
    /* -webkit-transform: translateY(-50%); */
    /* transform: translateY(-50%); */
    color: #fff;
    cursor: pointer;
    margin-left: 10px;
}
@media (max-width: 768px){
.banner56, .button190 {
    font-size: 13px;
 }
}
@media (max-width: 768px){
.banner56 {
    /* padding: 11px 30px; */
    z-index: 7;
}
}

.rotate {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--accent-primary);
    position: relative;
    padding: 2px;
    min-height: 70px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Shimmer Shine Effect */
.rotate.shimmer-text {
    background: linear-gradient(
        90deg,
        var(--accent-primary) 0%,
        var(--accent-primary) 40%,
        #fff 50%,
        var(--accent-primary) 60%,
        var(--accent-primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 100% center;
    }
    100% {
        background-position: -100% center;
    }
}

/* Icons inside .rotate */
.rotate i {
    font-size: 0.8em;
    -webkit-text-fill-color: initial;
    background: none;
}

.rotate .fa-instagram {
    color: #E1306C;
}

.rotate .fa-tiktok {
    color: #000000;
}

.rotate .fa-youtube {
    color: #FF0000;
}

.rotate .fa-facebook {
    color: #1877F2;
}

.rotate .fa-kwai {
    color: #FF7000;
}


/* Toast badges - handled by .category-box.card-toast::after */

.item-2 {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 5px;
    background: #ffffff;
    border-radius: 10px;
}

.items-2 .item-2 p {
    margin: 0;
    margin-left: 5px;
    font-size: 13px;
}

.items-2 {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    /* AOS handles the animation */
}

.items-2 .item-2 {
    /* AOS handles the animation */
}

/* Social selector - AOS handles animations now */
.centraliza-tudo {
    /* AOS handles the animation */
}

.social-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-selector .icon-button {
    /* AOS handles the animation */
}

.client-heading h3 {
    font-size: 40px;
    margin-bottom: 1rem;
}

/* ============================================
   FAQ ACCORDION - Clean Light Theme
   ============================================ */

.tabs {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab {
    margin-bottom: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: box-shadow var(--transition-fast);
}

.tab:hover {
    box-shadow: var(--shadow-md);
}

.tab input[type="checkbox"] {
    display: none;
}

label.tab-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
    background: var(--bg-card);
    transition: color var(--transition-fast), background var(--transition-fast);
}

label.tab-label:hover {
    color: var(--accent-primary);
    background: rgba(139, 92, 246, 0.03);
}

label.tab-label::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--accent-primary);
    transition: transform var(--transition-normal);
}

.tab input:checked + label.tab-label::after {
    content: '−';
}

.tab input:checked + label.tab-label {
    color: var(--accent-primary);
    background: rgba(139, 92, 246, 0.05);
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-secondary);
    background: var(--bg-card);
    line-height: 1.7;
    font-size: 14px;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.tab input:checked ~ .tab-content {
    max-height: 500px;
    padding: 0 20px 20px;
}

input.tab-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

/* FAQ Section Heading */
.client-heading {
    text-align: center;
    margin-bottom: 40px;
}

.client-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}


footer {
    display: block;
    width: 100%;
    position: relative;
    background: #ffffff;
    padding: 25px 25px 25px 25px;
    /* border-top-left-radius: 20px; */
    /* border-top-right-radius: 20px; */
}
.footer-start {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 90%;
    margin: auto;
    padding: 80px 100px;
    background: #1d1e25;
    border-radius: 15px;
}
.start-learning {
    position: absolute;
    left: 0;
    right: 0;
    top: -150px;
}
.footer .inner {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 20px;
    max-width: 1180px;
    margin: auto;
    text-align: left;
}
.main-logo {
    position: relative;
    display: flex;
    align-items: center;
}
.main-logo .logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.main-logo .logo > img {
    display: block;
    width: 100%;
    min-width: 40px;
}
.logo-info {
    text-align: left;
    line-height: 20px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}
.text {
    font-size: 18px;
    line-height: 17px;
    color: #2c3e50;
    font-weight: 800;
}
.copyright {
    color: #2c3e50;
    font-size: 12px;
    line-height: 12px;
}
.footer .column {
    width: 100%;
    font-size: 14px;
    text-align: left;
}
.footer .column .column-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0.5em;
    color: #fff;
}
.footer .column .column-title:not(:first-child) {
    margin-top: 1em;
}

a.button {
    display: inline-flex;
    position: relative;
    height: 60px;
    margin-right: 20px;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    background: #fff;
    color: #705df2;
    border-radius: 36px;
    font-size: 16px;
    font-weight: 700;
    padding: 0 30px;
    text-decoration: unset;
    box-shadow: 0px 24px 74px rgb(60 0 189 / 20%);
}
.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
}
.section-sub-heading {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    max-width: 680px;
}
.section-sub-heading span {
    opacity: 0.6;
}
.section-sub-heading strong {
    font-weight: 600;
}
@media only screen and (max-width: 990px) and (min-width: 200px) {
    body {
        height: 100dvh;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .footer .inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .start-learning {
        position: unset;
    }
    .footer-start {
        width: 100%;
        display: block;
        padding: 30px 20px;
        margin: 30px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .section-sub-heading {
        font-size: 18px;
    }
    a.button {
        height: 50px;
        margin-top: 10px;
    }
    .column.is-logo {
        order: 4;
    }
}

/* PROVA SOCIAL */


.ios-notification_item {
     position: fixed;
     width: max-content;
     min-width: 380px;
     padding: 0.75rem;
     background: #fff;
     border-radius: 20px;
     box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
     backdrop-filter: saturate(130%) blur(20px);
     bottom: 100px;
     z-index: 99999;
     left: -400px;
     /* transform: translate(-50%, -50%); */
     opacity: 0;
     transition: left 1.5s cubic-bezier(0.57, -0.63, 0.35, 1.56), opacity 1.5s ease-in-out;
    /* Animação mais suave */
}
 .ios-notification_item.active {
     opacity: 1;
     left: 10px;
      
     
}
 .socials {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
}
 .ios-notification_item .text-name {
     font-weight: 600;
     font-size: 14px;
     margin-top: 4px;
}
 .ios-notification_item .text-msg {
     font-size: 14px;
     margin-bottom: 4px;
}
 .text-more {
     font-size: 12px;
}
 .ios-notification_item {
     color: black;
     background: #fff;
}

@media (max-width:769px){
    .ios-notification_item{min-width: 340px !important;}
    .text-msg {font-size: 10px !important;}
    .text-name {
    font-size: 13px !important;
  
}
}

.icon.fa-instagram {background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);color: #ffffff;font-size: 0.9rem;}
.icon.fa-tiktok    {background: #000000;color: #ffffff;font-size: 0.75rem;}
.icon.fa-youtube    {background: #ff0101;color: #ffffff;font-size: 0.75rem;}

.fa-brands.icon {
    margin-right: 0.2rem;
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    border-radius: 25%;
    align-items: center;
    justify-content: center;
}


/* ooooo */
.wrappe78r{
position: fixed; 
bottom: 70%; 
left: 2%; 
z-index: 135;
}
#toast{
width: 320px;
    height: auto;
    padding: 2px;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgb(75 50 50 / 5%);
    border-left: 8px solid #ed2860;
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1.2fr 6fr 0.5fr;
    transform: translate(400px);
    transition: 1s;
    box-shadow: #101010 2px 2px 0px;
}
.container-891,.container-892{
    align-self: center;
}
.container-891 i{
    margin: 0px 5px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    line-height: 46px;
    background-image: linear-gradient( 120deg, #fc4759 0%, #ec2461 100%) !important;
    border: 2px solid #ffffff;
    font-size: 30px;
}
.container-892 p:first-child{
    color: #101010;
    padding: 0px;
    font-weight: 600;
    margin: 0px;
    font-size: 16px;
 
}
.container-892 p:last-child{
    font-size: 12px;
    color: #101010;
    font-weight: 400;
}
 
 #pricing__section {
	 margin-block: 0rem;
	 display: flex;
	 flex-direction: column;
	 margin: 0px auto;
	 background: none;
	 padding: 0;
}
 .wrapper {
	 max-width: 1240px;
	 margin-inline: auto;
	 padding-inline: 1rem;
}
 .title {
	 text-align: center;
	 display: grid;
	 gap: 1rem;
	 place-items: center;
}
 .title h2 {
	 font-size: 40px;
}
 .toggle__section {
	 display: flex;
	 gap: 1rem;
	 align-items: center;
}
 .toggle__section input {
	 display: none;
}
 .toggle__section .toggle__btn {
	 display: flex;
	 padding: 4px;
	 background: var(--accent);
	 border-radius: 2rem;
	 width: 2.35rem;
}
 .toggle__section .toggle__btn span {
	 display: block;
	 width: 1rem;
	 height: 1rem;
	 background: var(--primary);
	 border-radius: 50%;
}
 input:checked ~ .toggle__btn {
	 justify-content: end;
}
 .price__cards {
	 margin-block: 2rem;
	 display: grid;
	 gap: 2rem;
	 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
 .price__card {
	 padding: 2rem 1.5rem;
	 box-shadow: 2px 0 24px #fbe7f3;
	 background: #fbe7f3;
	 border-radius: 1rem;
	 display: inline-flex;
	 gap: 1rem;
	 flex-direction: column;
}
 .price__details {
	 flex: 1 1 auto;
}
 .price__details h3, .price__details span {
	 font-size: 32px;
	 line-height: 1.5;
	 color: #ffffff;
	 display: flex;
	 align-items: center;
	 font-weight: 600;
	 gap: 4px;
	 height: 35px;
}
 .price__details ul {
	 margin-block: 1rem;
	 font-weight: 500;
}
 .price__details ul li::before {
	 font-family: "Font Awesome 6 Free";
	 content: "\f00c";
	 margin-right: 8px;
	 font-weight: bold;
	 color: #45c4a0;
}
 hr {
	 border: none;
	 height: 0;
	 border-bottom: 1px solid #ddd;
}
 .price__card .price {
	 font-size: 32px;
	 font-weight: 600;
	 letter-spacing: -2px;
}
 .price__card .price:before {
	 content: "R$";
}
 .btn {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 padding: 1rem 2rem;
	 border-radius: 2rem;
	 transition: 0.3s ease-in-out;
	 font-weight: 600;
}
 .bg__accent {
	 background: #1d1e25;
	 color: var(--primary);
}

 .bg__primary {
	 background: var(--primary);
	 color: var(--accent);
}
 .btn:hover {
	 transform: scale(1.02);
}

/* ============================================
   UTILITY CLASSES - Clean Light Theme
   ============================================ */

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.category-container .category-box {
    opacity: 0;
    transform: translateY(20px);
}

.category-container .category-box:nth-child(1) { transition-delay: 0.05s; }
.category-container .category-box:nth-child(2) { transition-delay: 0.1s; }
.category-container .category-box:nth-child(3) { transition-delay: 0.15s; }
.category-container .category-box:nth-child(4) { transition-delay: 0.2s; }
.category-container .category-box:nth-child(5) { transition-delay: 0.25s; }
.category-container .category-box:nth-child(6) { transition-delay: 0.3s; }
.category-container .category-box:nth-child(7) { transition-delay: 0.35s; }
.category-container .category-box:nth-child(8) { transition-delay: 0.4s; }
.category-container .category-box:nth-child(9) { transition-delay: 0.45s; }

section.category.visible .category-box {
    opacity: 1;
    transform: translateY(0);
}

section.category.visible .category-box:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Stagger for FAQ tabs */
.tabs .tab {
    opacity: 0;
    transform: translateY(15px);
}

.tabs .tab:nth-child(1) { transition-delay: 0.1s; }
.tabs .tab:nth-child(2) { transition-delay: 0.15s; }
.tabs .tab:nth-child(3) { transition-delay: 0.2s; }
.tabs .tab:nth-child(4) { transition-delay: 0.25s; }
.tabs .tab:nth-child(5) { transition-delay: 0.3s; }
.tabs .tab:nth-child(6) { transition-delay: 0.35s; }
.tabs .tab:nth-child(7) { transition-delay: 0.4s; }
.tabs .tab:nth-child(8) { transition-delay: 0.45s; }

.tabs.visible .tab {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Gradient Text */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hover-lift,
    * {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus visible for keyboard navigation */
.category-box button:focus-visible,
.menu li a:focus-visible,
label.tab-label:focus-visible,
.icon-button:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* High contrast text */
@media (prefers-contrast: high) {
    .category-box p {
        color: var(--text-primary);
    }
    .item-2 p {
        color: var(--text-primary);
    }
}

/* Touch targets */
@media (pointer: coarse) {
    .category-box button {
        min-height: 48px;
    }
    label.tab-label {
        min-height: 48px;
    }
    .menu li a {
        min-height: 48px;
    }
}

/* Reduced motion - disable hero animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .search-banner-text > span:first-child,
    .search-banner-text p,
    .centraliza-tudo,
    .items-2,
    .items-2 .item-2,
    .social-selector .icon-button {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    /* Disable mesh gradient and orb animations */
    #search-banner {
        animation: none !important;
        background-size: 100% 100%;
    }
    #search-banner::before,
    #search-banner::after,
    .hero-orb {
        animation: none !important;
    }

    /* Disable AOS animations */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* Disable Typed.js cursor animation */
    .typed-cursor {
        animation: none !important;
    }
}

/* ============================================
   HERO LIGHT - Centered Soft Gradient Design
   ============================================ */
#search-banner.hero-light {
    position: relative;
    min-height: 100vh;
    padding: 9rem 1.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #faf5ff 0%, #fce7f3 35%, #f0f4ff 70%, #f5f3ff 100%) !important;
    background-size: 100% 100% !important;
    animation: none !important;
}

/* Disable old pseudo-element orbs for hero-light */
#search-banner.hero-light::before,
#search-banner.hero-light::after {
    display: none !important;
}

/* Soft Gradient Background */
.hero-light-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.4) 0%, transparent 70%);
    top: -15%;
    left: -10%;
    animation: orbDrift1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.35) 0%, transparent 70%);
    top: 20%;
    right: -8%;
    animation: orbDrift2 25s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.3) 0%, transparent 70%);
    bottom: 5%;
    left: 25%;
    animation: orbDrift3 22s ease-in-out infinite;
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 30px) scale(1.08); }
}

@keyframes orbDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -25px) scale(1.03); }
}

/* Hero Light Content Container */
.hero-light-content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

/* Flash Badge */
.flash-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    animation: flashPulse 2s ease-in-out infinite;
}

.flash-badge svg {
    color: #fff;
}

@keyframes flashPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35); }
    50% { box-shadow: 0 4px 30px rgba(139, 92, 246, 0.5); }
}

/* Hero Light Title */
.hero-light-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1f2937;
    margin: 0;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Offer Card */
.premium-offer-card {
    position: relative;
    width: 100%;
    padding: 2rem 2rem 1.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(139, 92, 246, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.08);
}

/* Offer Discount Badge */
.offer-discount {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #f43f5e 0%, #fb923c 100%);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.4);
}

/* Offer Header */
.offer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f5;
    margin-bottom: 1rem;
}

.offer-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.offer-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Offer Description */
.offer-description {
    font-size: 1rem;
    font-weight: 600;
    color: #8b5cf6;
    margin: 0 0 1.25rem 0;
    text-align: center;
}

/* Offer Benefits Grid */
.offer-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4b5563;
    text-align: left;
}

.benefit svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit small {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Offer CTA Button */
.offer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
    color: #fff;
    text-decoration: none;
}

.offer-cta svg {
    animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(10deg); opacity: 0.8; }
}

/* Offer Urgency Text */
.offer-urgency {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 1rem 0 0 0;
    text-align: center;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
}

.trust-badge svg {
    flex-shrink: 0;
}

/* Responsive Hero Light */
@media (max-width: 768px) {
    #search-banner.hero-light {
        padding: 7rem 1rem 3rem;
        min-height: auto;
    }

    .hero-light-title {
        font-size: 1.75rem;
    }

    .premium-offer-card {
        padding: 1.5rem;
    }

    .offer-benefits {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .orb-1, .orb-2, .orb-3 {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .offer-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .flash-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .offer-cta {
        font-size: 0.85rem;
        padding: 1rem 1.5rem;
    }
}