:root {
    --bg-color: #050508;
    --bg-darker: #020203;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    
    /* Brand Colors */
    --blue-neon: #00f0ff;
    --blue-royal: #2563eb;
    --blue-dark: #1e3a8a;
    
    /* UI Colors */
    --green: #10b981;
    --red: #ef4444;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(0, 240, 255, 0.15);
    
    /* Layout */
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-blue { color: var(--blue-neon); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.mt-2 { margin-top: 1rem; }

.py-section { padding: 100px 0; }
.bg-darker { background-color: var(--bg-darker); }

.neon-text {
    color: var(--blue-neon);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.grid {
    display: grid;
    gap: 30px;
}

/* Background Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--bg-color);
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-neon), var(--blue-royal));
    color: #fff;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.btn-glow {
    position: relative;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: inherit;
    filter: blur(15px);
    opacity: 0.6;
    border-radius: inherit;
    transition: opacity 0.3s;
}
.btn-glow:hover::before {
    opacity: 0.9;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span span {
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* offset navbar */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(5,5,8,0.2) 0%, var(--bg-color) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.badge-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.badge-online .dot {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulse 2s infinite;
}

.main-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-features i {
    color: var(--blue-neon);
}

.hero-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.mockup-tv {
    position: absolute;
    width: 90%;
    right: 0;
    top: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mockup-phone {
    position: absolute;
    width: 35%;
    left: 0;
    bottom: -20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 7s ease-in-out infinite;
    animation-delay: 1s;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    animation: float 5s ease-in-out infinite;
}

.float-card i {
    font-size: 2rem;
}

.float-card div {
    display: flex;
    flex-direction: column;
}

.float-card strong {
    font-size: 1rem;
    line-height: 1.2;
}

.float-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 80px;
    right: -30px;
    animation-delay: 1.5s;
}

.card-3 {
    top: 150px;
    right: -10px;
    animation-delay: 2.5s;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 15px var(--green); }
    100% { transform: scale(0.95); opacity: 0.5; }
}

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

/* Benefits Section */
.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.benefit-card {
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--glass-glow);
    border-color: rgba(0, 240, 255, 0.3);
}

.benefit-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--blue-neon);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Compatibility Section */
.devices-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
}

.device-item i {
    font-size: 3rem;
    color: #fff;
}

.device-item:hover {
    color: var(--blue-neon);
    transform: translateY(-5px);
}
.device-item:hover i {
    color: var(--blue-neon);
}

/* Comparison Section */
.comparison-table-wrapper {
    overflow-x: auto;
    padding: 1px; /* for border */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.02);
}

.comparison-table th.blue-col,
.comparison-table td.blue-col {
    background: rgba(0, 240, 255, 0.05);
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td i {
    margin-right: 8px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 20px;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.premium-card {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.1);
    transform: scale(1.05);
    padding: 50px 30px;
}

.premium-card:hover {
    transform: scale(1.05) translateY(-10px);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-neon), var(--blue-royal));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0 5px;
}

.period {
    color: var(--text-secondary);
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--blue-neon);
    margin-bottom: 30px;
    min-height: 20px; /* For alignment */
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--green);
}

.plan-features .text-blue {
    color: var(--blue-neon);
}

/* Testimonials */
.reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
    padding: 30px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    color: #e2e8f0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-neon), var(--blue-royal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.rev-info {
    display: flex;
    flex-direction: column;
}

.rev-info strong {
    font-size: 1rem;
}

.rev-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Free Trial CTA */
.free-trial {
    position: relative;
    z-index: 1;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(37, 99, 235, 0.1));
    border-color: rgba(0, 240, 255, 0.2);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--blue-neon);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--blue-royal);
    border-color: var(--blue-neon);
    transform: translateY(-3px);
}

.badges-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Catalog / Carousel Section */
.loading-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 380px;
    width: 100%;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border-top-color: var(--blue-neon);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.catalog-swiper {
    padding: 30px 10px 60px 10px;
    position: relative;
    overflow: hidden;
}

.poster-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.poster-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.7) 60%, transparent 100%);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.poster-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.poster-info span {
    font-size: 0.8rem;
    color: var(--blue-neon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poster-card:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.25);
    border-color: rgba(0, 240, 255, 0.4);
}

.poster-card:hover img {
    transform: scale(1.05);
}

.poster-card:hover .poster-info {
    transform: translateY(0);
}

/* Custom Swiper Buttons & Pagination */
.catalog-swiper .swiper-button-next,
.catalog-swiper .swiper-button-prev {
    color: var(--blue-neon);
    background: rgba(5, 5, 8, 0.7);
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.catalog-swiper .swiper-button-next:after,
.catalog-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.catalog-swiper .swiper-button-next:hover,
.catalog-swiper .swiper-button-prev:hover {
    background: var(--blue-royal);
    border-color: var(--blue-neon);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.catalog-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.3;
}

.catalog-swiper .swiper-pagination-bullet-active {
    background: var(--blue-neon);
    opacity: 1;
    box-shadow: 0 0 10px var(--blue-neon);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-title { font-size: 3rem; }
    .mockup-tv { width: 100%; top: 80px; }
    .mockup-phone { width: 40%; }
    .premium-card { transform: none; padding: 40px 30px; }
    .premium-card:hover { transform: translateY(-10px); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text { margin-top: 40px; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .hero-features { justify-content: center; flex-wrap: wrap; }
    .hero-visuals { width: 100%; margin-top: 40px; }
    
    .float-card { display: none; /* Hide floating cards on mobile to reduce clutter */ }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 15px auto; }
    .social-icons { justify-content: center; }
    .badges-footer { align-items: center; }
}

/* ==========================================
   RECURSOS DE CONVERSÃO & ESTÉTICA
   ========================================== */

/* 1. FAQ Section Styles */
.faq-section {
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 240, 255, 0.05);
    cursor: pointer;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--blue-neon);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    padding-bottom: 20px;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Active State */
.faq-item.active {
    border-color: var(--blue-neon);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
    background: rgba(255, 255, 255, 0.04) !important;
}

.faq-item.active .faq-question h3 {
    color: var(--blue-neon);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* 2. Floating WhatsApp Button Styles */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-floating:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(5, 5, 8, 0.9);
    border: 1px solid var(--blue-neon);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.whatsapp-floating:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 3. Conversion / Social Proof Toast Styles */
.conversion-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 320px;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    pointer-events: none;
}

.conversion-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.toast-text {
    flex: 1;
}

.toast-text p {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    line-height: 1.4;
    font-weight: 500;
}

.toast-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Toast Mobile adjustment */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .whatsapp-tooltip {
        display: none !important; /* Hide tooltip on mobile to save space */
    }
    .conversion-toast {
        left: 20px;
        right: 20px;
        bottom: 85px; /* Stay above floating WhatsApp if visible on mobile */
        max-width: calc(100% - 40px);
    }
}
