 /* ===== VARIÁVEIS MÍSTICAS ÉPICAS ===== */
 :root {
    --purple-900: #1e1b4b;
    --purple-800: #312e81;
    --purple-700: #4338ca;
    --purple-600: #5b21b6;
    --purple-500: #7c3aed;
    --purple-400: #8b5cf6;
    --purple-300: #a78bfa;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;

    --gradient-night: linear-gradient(135deg, #0f0f23 0%, #1e1b4b 25%, #312e81 50%, #4338ca 75%, #5b21b6 100%);
    --gradient-gold: linear-gradient(45deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-mystic: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #8b5cf6 100%);
    --gradient-ethereal: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(79, 70, 229, 0.2) 100%);

    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.5);
    --shadow-epic: 0 20px 60px rgba(139, 92, 246, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);

    --transition-epic: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-night);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== PARTÍCULAS CÓSMICAS ===== */
.cosmic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #8b5cf6;
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0;
}

.particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* ===== HERO SECTION CINEMATOGRÁFICA ===== */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(88, 28, 135, 0.1) 0%, transparent 70%);
    animation: cosmicPulse 8s ease-in-out infinite;
}

@keyframes cosmicPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-text {
    animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.mystical-text {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.gradient-text {
    display: block;
    background: var(--gradient-mystic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-epic);
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.6);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CARTAS FLUTUANTES ÉPICAS ===== */
.hero-visual {
    position: relative;
    animation: slideInRight 1.2s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.floating-cards {
    position: relative;
    height: 500px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-float {
    position: absolute;
    width: 140px;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-epic);
    transition: var(--transition-epic);
    cursor: pointer;
    transform-style: preserve-3d;
}

.card-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.card-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(79, 70, 229, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

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

.card-float:hover {
    transform: translateY(-20px) rotateY(15deg) scale(1.1);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.5);
}

.card-1 {
    top: 50px;
    left: 50px;
    animation: float1 6s ease-in-out infinite;
    z-index: 3;
}

.card-2 {
    top: 100px;
    right: 80px;
    animation: float2 7s ease-in-out infinite;
    z-index: 2;
}

.card-3 {
    bottom: 80px;
    left: 150px;
    animation: float3 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-25px) rotate(-7deg); }
}

/* ===== SEÇÕES ÉPICAS ===== */
section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8em;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== TIMELINE ÉPICA ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--purple-500), transparent);
    transform: translateX(-50%);
    animation: timelineGlow 3s ease-in-out infinite;
}

@keyframes timelineGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.5); }
    50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); }
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInScale 0.8s ease-out both;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: var(--shadow-glow);
    z-index: 10;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.8); }
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #1f2937;
    font-size: 0.9rem;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-epic);
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-epic);
    border-color: rgba(139, 92, 246, 0.6);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FILOSOFIA COM MANDALA ===== */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-content {
    animation: slideInLeft 0.8s ease-out;
}

.philosophy-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.principles {
    display: grid;
    gap: 1.5rem;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: var(--transition-bounce);
}

.principle-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.6);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #1f2937;
    flex-shrink: 0;
}

.principle-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* ===== MANDALA INTERATIVA ===== */
.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.mandala-container {
    position: relative;
    width: 300px;
    height: 300px;
    animation: mandalaRotate 20s linear infinite;
}

@keyframes mandalaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mandala-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    animation: mandalaCounter 15s linear infinite reverse;
}

@keyframes mandalaCounter {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.mandala-circle.outer {
    width: 100%;
    height: 100%;
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.mandala-circle.middle {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.mandala-circle.inner {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    background: var(--gradient-mystic);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

/* ===== CARDS DAS CARTAS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.card-group {
    padding: 3rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    transition: var(--transition-epic);
    animation: fadeInUp 0.8s ease-out both;
}

.card-group:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-epic);
    border-color: rgba(139, 92, 246, 0.6);
}

.group-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.group-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1f2937;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.group-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.card-count {
    padding: 0.3rem 1rem;
    background: var(--gradient-mystic);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.sample-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.sample-card {
    text-align: center;
    transition: var(--transition-bounce);
}

.sample-card:hover {
    transform: scale(1.1) translateY(-10px);
}

.sample-card img {
    width: 100%;
    max-width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
    margin-bottom: 0.5rem;
}

.sample-card span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .floating-cards {
        height: 300px;
    }

    .card-float {
        width: 100px;
        height: 160px;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-content {
        width: 90%;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .sample-cards {
        grid-template-columns: 1fr;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* ===== CORREÇÃO DO WHATSAPP FLUTUANTE ===== */
/* Adicione isso no final do seu about.css */

/* Fix para evitar conflito com elementos flutuantes da página */
.floating-whatsapp,
.whatsapp-float,
.whatsapp-button {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    transform: none !important;
    animation: none !important;
}

/* Garantir que não interfira com as partículas */
.cosmic-particles {
    z-index: 1 !important;
}

/* Garantir que não interfira com outros elementos flutuantes */
.floating-cards .card-float {
    position: absolute !important;
    z-index: 10 !important;
}

/* Garantir hierarquia de z-index correta */
.about-hero {
    z-index: 2 !important;
}

.container {
    z-index: 3 !important;
    position: relative !important;
}

/* Correção para elementos que podem estar causando conflito */
.floating-cards {
    position: relative !important;
    z-index: 5 !important;
}

/* Evitar que parallax afete o WhatsApp */
.floating-cards * {
    position: relative !important;
}

/* Adicionar estilos para a seção de equipe e suits-grid que estavam faltando */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-epic);
    backdrop-filter: blur(20px);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-epic);
    border-color: rgba(139, 92, 246, 0.6);
}

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-500);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.member-symbols {
    display: flex;
    gap: 1rem;
}

.member-symbols i {
    font-size: 1.5rem;
    color: #ffffff;
    animation: iconPulse 2s ease-in-out infinite;
}

.member-info h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    color: var(--gold-500);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.member-bio {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-specialties {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.specialty {
    padding: 0.3rem 1rem;
    background: var(--gradient-mystic);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Suits Grid */
.suits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.suit-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: var(--transition-bounce);
}

.suit-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
}

.suit-item i {
    font-size: 1.5rem;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
    display: block;
}

.suit-item span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.suit-item small {
    opacity: 0.7;
    font-size: 0.8rem;
}

/* Compromissos Grid */
.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-epic);
}

.commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.6);
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-icon i {
    font-size: 1.2rem;
    color: #1f2937;
}

.commitment-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.commitment-text p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Metodologia Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-ethereal);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: var(--transition-epic);
}

.method-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-epic);
    border-color: rgba(139, 92, 246, 0.6);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 0;
    background: var(--gradient-ethereal);
    border-radius: 30px;
    margin: 4rem 0;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-epic);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-mystic);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid var(--purple-500);
}

.btn-outline:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--gradient-mystic);
    border-color: transparent;
}

/* Responsividade adicional */
@media (max-width: 480px) {
    .suits-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Garantir que o WhatsApp não seja afetado por transforms */
body * {
    will-change: auto;
}

.floating-whatsapp,
.whatsapp-float,
.whatsapp-button {
    will-change: auto !important;
}
