/* ═══════════════════════════════════════════
   INGRID AVALLONE ADVOCACIA
   PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* Special Button Animation requested by USER */
.elementor-button {
    animation: 2s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite brilho !important;
    background-image: linear-gradient(45deg,
            #25D366,
            /* verde WhatsApp */
            #075E54,
            /* verde escuro */
            #25D366,
            /* verde WhatsApp */
            #075E54
            /* verde escuro */
        ) !important;
    background-size: 400% 200% !important;
    transition: all .8s !important;
    color: white !important;
    border-radius: 12px !important;
}

@keyframes brilho {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 0;
    }
}

:root {
    --primary: #111111;
    --accent: #8e8e8e;
    /* Premium Grey */
    --accent-light: #e0e0e0;
    --white: #ffffff;
    --premium-bg: #f5f5f5;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: 'Philosopher', serif !important;
}

/* Base Styles */
html {
    scroll-behavior: auto !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Button Rounding */
a[class*="px-"],
button,
.elementor-button {
    border-radius: 12px !important;
}

/* Glassmorphism Navigation */
.nav-glass {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Premium Button Gradient */
.btn-premium {
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    transition: var(--transition);
    border: none;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
}

/* Animations - Reveal Up */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal Right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Sharp Hero Image */
header img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Service Card Hover */
.service-card {
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--primary) !important;
    border-radius: 24px;
    /* Premium rounding */
    overflow: hidden;
}

.service-card h4 {
    color: var(--white) !important;
    transition: var(--transition);
}

.service-card p {
    color: var(--white) !important;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background-color: var(--white);
    border: 1px solid var(--white);
}

.service-card:hover .icon-wrapper iconify-icon {
    color: var(--primary) !important;
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    padding-left: 0;
}

@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 15s;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 4rem;
}

.faq-gradient-bg {
    background: linear-gradient(180deg, #111111 0%, #1a1a1a 100%);
}

/* FAQ Accordion Redesign */
.faq-item {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    display: block !important;
}

.faq-item .faq-trigger {
    padding: 30px 40px;
    color: var(--white) !important;
    font-weight: 700;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-item .faq-trigger {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }
}

.faq-item .faq-trigger span {
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    font-style: normal !important;
}

.faq-item.active {
    background-color: var(--white) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15) !important;
    border-left: 6px solid var(--primary) !important;
    border-radius: 12px;
}

.faq-item.active .faq-trigger {
    color: var(--primary) !important;
    padding-bottom: 20px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    /* Large enough to fit any answer */
}

.faq-content div {
    padding: 0 40px 40px 40px;
    color: #444 !important;
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-content div {
        padding: 0 20px 30px 20px;
        text-align: center;
    }
}

/* Icon Swap Styles */
.faq-icon-container {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon-container {
    background-color: var(--primary);
    color: var(--white) !important;
    border-radius: 50%;
}

.faq-item.active .faq-plus {
    display: none !important;
}

.faq-item.active .faq-minus {
    display: block !important;
}

/* WhatsApp Floating Button */
.wa-float {
    background-color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: var(--transition);
}

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

/* Google Reviews Premium Styling */
.google-rating i {
    filter: drop-shadow(0 2px 5px rgba(66, 133, 244, 0.2));
}

.review-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.02) !important;
}

.review-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.07);
    background: #dbdbdb !important;
    border-color: transparent !important;
}

.reviewer-avatar {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-stars i {
    margin-right: 2px;
}

.faq-trigger {
    cursor: pointer;
}

/* Experience Badge Premium Styles */
.experience-badge {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.experience-badge:hover {
    transform: translate(-5px, -5px);
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border-color: rgba(255, 255, 255, 0.1);
}

.badge-icon-wrap {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.experience-badge:hover .badge-icon-wrap {
    background: var(--accent);
}

.experience-badge:hover .badge-icon-wrap iconify-icon {
    color: var(--primary) !important;
}

/* Diferenciais Section Enhancements */
.diff-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 32px;
}

.diff-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: -1;
}

.diff-card:hover::before {
    opacity: 1;
}

.diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08) !important;
}