/* ====================================================== */
/* OMNI.SITE - CSS COMPARTILHADO CONSOLIDADO              */
/* ====================================================== */

/* ============ CORES E VARIÁVEIS ============ */
:root {
    --primary-color: #48058f;
    --primary-light: #7c3aed;
    --accent-color: #ff6b6b;
    --accent-light: #ff8c42;
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --border-color: #e0e0e0;
    --text-muted: #666;
    --bg-light: #f5f7fa;
    --bg-lighter: #e9ecef;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-urgency-nav {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes slide-in {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ NAVBAR STYLES ============ */
.navbar-premium {
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%) !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-premium .navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.badge-urgency {
    background: linear-gradient(135deg, #ff6b6b, #ff8c42);
    color: white;
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    animation: pulse-urgency-nav 2s infinite;
    display: inline-block;
}

.btn-cta-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(72, 5, 143, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-premium:hover::before {
    left: 100%;
}

.btn-cta-premium:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 5, 143, 0.4);
}

.cart-icon-link {
    transition: transform 0.2s ease;
}

.cart-icon-link:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============ FOOTER STYLES ============ */
.footer-premium {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 40px 0 20px 0;
    position: relative;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--accent-color));
}

.newsletter-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.newsletter-content p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.newsletter-link-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 10px 20px;
    font-weight: 600;
}

.newsletter-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.input-group {
    display: flex;
    align-items: center;
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-input-text {
    flex: 1;
    padding: 10px 15px;
    background: white;
    border-radius: 50px 0 0 50px;
    font-size: 0.9rem;
    color: #16213e;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.btn-newsletter {
    background: transparent;
    border: none;
    color: white;
    padding: 0 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-newsletter i {
    font-size: 1.1rem;
}

.newsletter-note {
    display: block;
    color: #888;
    font-size: 0.75rem;
    margin-top: 8px;
    text-align: center;
}

.footer-links h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.trust-item i {
    font-size: 1.3rem;
    color: #4caf50;
}

.trust-item strong {
    color: white;
    font-size: 0.9rem;
}

.trust-item small {
    color: #888;
    font-size: 0.75rem;
}

.social-footer {
    display: flex;
    gap: 15px;
}

.social-footer a {
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-footer a:hover {
    color: var(--accent-color);
}

/* ============ BUTTONS STYLES ============ */
.btn-primary-premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 8px 25px rgba(72, 5, 143, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.btn-primary-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(72, 5, 143, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-outline-primary:hover {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:active,
.btn-outline-primary:focus {
    background: transparent !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

/* ============ HERO SECTION ============ */
.hero-banner-premium {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding-top: 100px;
    position: relative;
    overflow: visible;
}

.urgency-badge {
    text-align: center;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: slide-in 0.6s ease;
    z-index: 2 !important;
    position: inherit;
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    border: none !important;
    padding: 16px 40px !important;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 8px 25px rgba(72, 5, 143, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.btn-hero:hover,
.btn-hero:focus,
.btn-hero:active {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(72, 5, 143, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
    color: white !important;
    text-decoration: none !important;
}

.btn-hero:visited {
    color: white !important;
}

.hero-image-container {
    position: relative;
}

.image-float-animation {
    animation: float 3s ease-in-out infinite;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.rating-badge {
    position: absolute;
    bottom: 30px;
    left: -10px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: bounce 2s infinite;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============ VALUE SECTION ============ */
.value-section {
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .value-cards {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: linear-gradient(135deg, #f0f4ff, #f9fbff);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(72, 5, 143, 0.15);
    background: linear-gradient(135deg, rgba(72, 5, 143, 0.08), rgba(124, 58, 237, 0.08));
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.value-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============ COMPETITIVE ADVANTAGE ============ */
.competitive-advantage {
    background: linear-gradient(135deg, rgba(72, 5, 143, 0.06), rgba(124, 58, 237, 0.06));
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.advantage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .advantage-list {
        grid-template-columns: 1fr;
    }
}

.advantage-item {
    display: flex;
    gap: 15px;
}

.advantage-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.advantage-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.advantage-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ============ COMPATIBILITY ICONS ============ */
.compatibility-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.compat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.compat-item:hover {
    border-color: var(--primary-color);
    background: rgba(72, 5, 143, 0.05);
    transform: translateY(-2px);
}

.compat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.compat-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

/* ============ MODAL & CART STYLES ============ */
.modal-premium {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.table-borderless td {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.table-borderless thead th {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.table-borderless tbody tr:hover {
    background-color: var(--light-color);
}

.modal-benefits {
    background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
    border-left: 4px solid #4caf50;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #2e7d32;
    font-weight: 600;
}

.btn-checkout {
    background: linear-gradient(135deg, #4caf50, #45a049) !important;
    padding: 14px 50px !important;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #45a049, #4caf50) !important;
    transform: translateY(-3px);
}

.empty-cart-state {
    text-align: center;
    padding: 40px 20px;
}

/* ============ ABOUT SECTION ============ */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(72, 5, 143, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(72, 5, 143, 0.1);
    transform: translateY(-5px);
}

.benefit-card.premium {
    background: linear-gradient(135deg, #f0f4ff, #f9fbff);
    border: none;
    box-shadow: 0 4px 15px rgba(72, 5, 143, 0.08);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-card h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.benefit-stat {
    display: block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.image-with-badge {
    position: relative;
}

.feature-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: bounce 2s infinite;
}

.feature-badge i {
    color: #4caf50;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.feature-badge strong {
    display: block;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.feature-badge small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 3px;
}

/* ============ CLIENTS SECTION ============ */
.testimonials-heading {
    margin-bottom: 40px;
}

.the-clients {
    padding: 60px 0;
}

.clients-premium {
    background: white;
}

.testimonials-naccs {
    margin-top: 40px;
}

.testimonial-menu {
    display: grid;
    gap: 15px;
}

.testimonial-thumb {
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-thumb:hover,
.testimonial-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(72, 5, 143, 0.1);
}

.client-name {
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.client-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stars-rating {
    color: #ffc107;
    font-size: 1rem;
}

.rating {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 5px;
}

.category {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .advantage-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        padding-top: 15px;
    }

    .hero-banner-premium {
        padding-top: 80px;
        text-align: center;
    }

    .hero-headline {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .rating-badge {
        position: static;
        margin-top: 20px;
    }

    .compatibility-icons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .value-cards {
        grid-template-columns: 1fr;
    }

    .btn-hero,
    .btn-cta-premium {
        width: 100%;
        text-align: center;
        padding: 12px 20px !important;
    }

    .compatibility-icons {
        flex-direction: column;
    }

    .compat-item {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .newsletter-input-text {
        border-radius: 50px 50px 0 0;
    }

    .input-group {
        flex-direction: column;
    }

    .btn-newsletter {
        border-radius: 0 0 50px 50px;
        width: 100%;
        justify-content: center;
    }
}

/* ============ UTILITY CLASSES ============ */
.site-wrap {
    position: relative;
    overflow: hidden;
}

.wow {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.wow.fadeIn {
    animation-name: fadeIn;
}

.wow.fadeInLeft {
    animation-name: fadeInLeft;
}

.wow.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: bounce 2s infinite;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #20ba58;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* ============ SCROLLBAR CUSTOMIZATION ============ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============ SMOOTH SCROLLING ============ */
html {
    scroll-behavior: smooth;
}

/* ============ SELECTION COLOR ============ */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}
