@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-light: #FF7F00; /* Laranja Mega */
    --bg-soft: #e06c00; /* Laranja escuro */
    --bg-card: #080b11; /* Preto para seções escuras */
    --bg-dark-card: #121620; /* Card escuro */
    --border-card: rgba(0, 0, 0, 0.15);
    --border-focus: rgba(255, 127, 0, 0.4);
    
    --primary: #000000; /* Preto como principal da marca */
    --primary-hover: #111111;
    --primary-glow: rgba(0, 0, 0, 0.2);
    
    --secondary: #ffffff; /* Branco */
    --secondary-hover: #f5f5f5;
    
    --text-primary: #000000; /* Preto nos fundos laranjas */
    --text-secondary: #1a202c;
    --text-muted: #3a475a;
    
    --color-orange: #FF7F00;
    --color-black: #080b11;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-black);
}
::-webkit-scrollbar-thumb {
    background: var(--color-orange);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e06c00;
}

/* Typography & Layout Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 11, 17, 0.85); /* Black Glassmorphism */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    background: rgba(8, 11, 17, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo img {
    height: 48px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: var(--transition-smooth);
}

nav a:hover {
    color: #ffffff !important;
}

nav a:hover::after {
    width: 100%;
}

#btnHeaderWpp {
    background-color: var(--color-orange);
    color: #000000 !important;
    border: none;
}

#btnHeaderWpp:hover {
    background-color: #e06c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 127, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 11, 17, 0.6) 0%, rgba(255, 127, 0, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
    margin-top: 80px;
}

.hero-tagline {
    color: #000000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 1rem;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000000;
}

.hero p {
    font-size: 1.2rem;
    color: #111111;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 500;
}

.typing-container {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #000000;
    min-height: 1.8rem;
    font-weight: 600;
}

.typed-text {
    color: #000000;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-weight: 800;
}

.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
    color: #000000;
}

@keyframes blink {
    50% { opacity: 0; }
}

#btnHeroContact {
    background-color: #000000;
    color: #ffffff !important;
}

#btnHeroContact:hover {
    background-color: #222222;
}

#btnHeroLearnMore {
    border-color: #000000;
    color: #000000;
}

#btnHeroLearnMore:hover {
    background-color: #000000;
    color: #ffffff !important;
}

/* Sections General Styling */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    color: inherit;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    display: block;
    opacity: 0.8;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

/* About Section (Orange Background) */
.about {
    background-color: var(--color-orange);
    color: #000000;
}

.about .section-tag {
    color: #000000;
}

.about .section-title {
    color: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #000000;
}

.about-text p {
    color: #111111;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text #btnAboutServices {
    background-color: #000000;
    color: #ffffff !important;
}

.about-text #btnAboutServices:hover {
    background-color: #222222;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid #000000;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Differentials Section (Black Background) */
.differentials {
    background-color: var(--color-black);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0;
}

.differentials .section-tag {
    color: var(--color-orange);
}

.differentials .section-title {
    color: #ffffff;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem 2rem;
    margin-top: 2rem;
}

.differential-card {
    background: var(--color-orange);
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 3.5rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    color: #000000;
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 127, 0, 0.25);
    border-color: #ffffff;
}

.differential-icon-container {
    width: 76px;
    height: 76px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border: 4px solid var(--color-orange);
    transition: var(--transition-smooth);
}

.differential-card:hover .differential-icon-container {
    background: #222222;
    transform: translateX(-50%) scale(1.05);
    border-color: #ffffff;
}

.differential-icon-container i {
    color: var(--color-orange);
    font-size: 1.6rem;
}

.differential-card h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #000000;
}

.differential-card p {
    color: #111111;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Metrics Section (Orange Background) */
.metrics {
    background-color: var(--color-orange);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-card {
    background: var(--color-black);
    border: 2px solid #000000;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: 0 10px 30px rgba(255, 127, 0, 0.15);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
    display: block;
}

.metric-label {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Services Section (Black Background) */
.services {
    background-color: var(--color-black);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services .section-tag {
    color: var(--color-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-dark-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-orange);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: 0 15px 35px rgba(255, 127, 0, 0.15);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 127, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 127, 0, 0.3);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--color-orange);
    font-weight: bold;
}

/* Chains (Redes de Atuação) Section (Black Background) */
.chains {
    background: var(--color-black);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chains .section-tag {
    color: var(--color-orange);
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
}

.carousel-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.carousel-item {
    width: 150px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition-smooth);
}

.carousel-item:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2rem)); }
}

/* Circular Clients Grid Section (Orange Background) */
.clients-grid-section {
    padding: 6rem 0;
    background-color: var(--color-orange);
}

.clients-grid-section .section-tag {
    color: #000000;
}

.clients-grid-section .section-title {
    color: #000000;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.client-badge {
    background: var(--color-black);
    border: 2px solid #000000;
    border-radius: 12px;
    width: 200px;
    height: 65px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-badge:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 127, 0, 0.35);
    border-color: #ffffff;
    color: var(--color-orange);
}

/* Tabs Container & Controls */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    border: 2px solid #000000;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #000000;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: none;
    outline: none;
    font-family: inherit;
}

.tab-button:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.tab-button.active {
    background: #000000;
    color: var(--color-orange) !important;
    border-color: #000000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Tab Content Panels */
.tab-content-container {
    position: relative;
    min-height: 250px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section (Black Background) */
.contact {
    background-color: var(--color-black);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact .section-tag {
    color: var(--color-orange);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 127, 0, 0.1);
    border: 1px solid rgba(255, 127, 0, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 1.2rem;
}

.info-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.info-text p {
    color: #cbd5e1;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.info-text a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.info-text a:hover {
    color: var(--color-orange);
}

.contact-form {
    background: var(--bg-dark-card);
    border: 2px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 12px rgba(255, 127, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

#btnSubmitForm {
    background-color: var(--color-orange);
    color: #000000 !important;
}

#btnSubmitForm:hover {
    background-color: #e06c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 127, 0, 0.4);
}

/* Footer (Dark Anchoring for Contrast) */
footer {
    background: #040608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about img {
    height: 48px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-orange);
    color: #000000;
    border-color: var(--color-orange);
    transform: translateY(-3px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 968px) {
    .about-grid,
    .services-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: rgba(8, 11, 17, 0.98);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.4);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4.5rem 2rem;
    }
    

}

@media (max-width: 576px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem 0;
    }
    

}



/* Floating Audio Control Button */
.audio-control {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-orange);
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition-smooth);
    outline: none;
}

.audio-control:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: #ffffff;
}

.audio-control i {
    font-size: 1.2rem;
    color: #000000;
    transition: var(--transition-smooth);
}

.audio-control:hover i {
    color: #ffffff;
}

/* Audio Wave Visualizer */
.audio-waves {
    display: none;
    align-items: flex-end;
    gap: 2.5px;
    height: 18px;
    width: 22px;
}

.audio-waves span {
    display: block;
    width: 3px;
    height: 2px;
    background-color: #000000;
    border-radius: 1.5px;
    animation: bounce 1.2s ease-in-out infinite alternate;
}

.audio-waves span:nth-child(2) {
    animation-delay: 0.2s;
}

.audio-waves span:nth-child(3) {
    animation-delay: 0.4s;
}

.audio-waves span:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0% {
        height: 3px;
    }
    100% {
        height: 18px;
    }
}

/* Active State Styles */
.audio-control.playing {
    border-color: #000000;
}

.audio-control.playing:hover {
    border-color: #ffffff;
}

.audio-control.playing #audioMuteIcon {
    display: none !important;
}

.audio-control.playing .audio-waves {
    display: flex !important;
}

.audio-control.playing:hover .audio-waves span {
    background-color: #ffffff;
}
