:root {
    --primary-color: #f7a400;
    /* Dourado quente ARVA */
    --secondary-color: #ffc233;
    /* Dourado mais claro */
    --bg-dark: #070707;
    /* Fundo escuro premium */
    --card-bg: rgba(20, 20, 20, 0.95);
    /* Cor dos cartões translúcida */
    --text-white: #f5f5f5;
    /* Texto principal claro */
    --text-muted: #aaaaaa;
    /* Texto de apoio prateado */

    --font-main: "Montserrat", sans-serif;
    --font-heading: "Playfair Display", serif;
    --primary: #ffffff;
    /* Keeping original primary for now, might be replaced by primary-color later */
    --navy: #000000;
    /* Keeping original navy */
    --accent: #cccccc;
    /* Keeping original accent */
    --bg-light: #111111;
    /* Keeping original bg-light */
    --bg-white: #000000;
    /* Keeping original bg-white */
    --text-dark: #ffffff;
    /* Keeping original text-dark */
    --shadow-sm: 0 4px 6px rgba(255, 255, 255, 0.05);
    --shadow-md: 0 10px 20px rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 20px 40px rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(0, 0, 0, 0.85);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

input,
button,
textarea,
select {
    font-family: inherit;
}

/* Helpers & Typography */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff !important;
}

.text-accent {
    color: var(--accent);
}

.bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.bg-navy {
    background-color: var(--navy);
    color: #fff;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.w-100 {
    width: 100%;
}

.default-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.title-underline-left {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.white-line {
    background: #fff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #444, #222);
    color: #fff;
    box-shadow: var(--shadow-md);
    border: 1px solid #555;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #555, #333);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: #000;
    font-weight: 700;
    border-color: transparent;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    text-transform: lowercase;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    margin: 0 1.2rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.social-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon {
    color: var(--navy);
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-icon:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #000000;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 1) 0%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    color: #fff;
}

.nav-logo-img {
    max-height: 80px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
}

.hero-subtitle {
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-copy {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #E2E8F0;
    max-width: 600px;
    line-height: 1.7;
}

.hero-cta-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Custom Stats Banner (Added for Relevancy) */
.stats-banner-custom {
    position: relative;
    margin-top: 40px;
    z-index: 10;
    padding: 0 2rem;
    margin-bottom: 60px;
}

.stats-container-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111111;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 2.5rem;
}

.stat-box-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #262626;
    border: 1.5px solid #ffffff;
    /* White border */
    margin-left: -15px;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info h3.stat-gold {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    /* White text */
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 300;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-box-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-box-right h3.stat-white {
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.2rem;
}

@media (max-width: 900px) {
    .stats-container-custom {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1.5rem;
        text-align: center;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-box-left {
        flex-direction: column;
    }

    .avatar-group {
        justify-content: center;
    }

    .stat-box-right {
        align-items: center;
    }

    .stat-box-right h3.stat-white {
        font-size: 1.8rem;
    }
}

/* Stats Banner */
.stats-banner {
    background-color: var(--bg-white);
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 2rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    background: #151515;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Process Section */
.process-section {
    padding: 8rem 0 6rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.process-card {
    background: #111;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.process-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
}

.process-card h4 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Target Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.benefit-list i {
    color: var(--accent);
    font-size: 1.5rem;
}

.target-visual {
    position: relative;
}

/* Leverage Visual Component */
.leverage-visual {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

.blob-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.leverage-watermark-col {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    z-index: 1;
}

.leverage-watermark-col.left {
    left: 20px;
}

.leverage-watermark-col.right {
    right: 20px;
}

.leverage-watermark-col img {
    width: 80px;
    height: auto;
    filter: invert(1);
    opacity: 0.7;
}

.leverage-logo {
    max-width: 250px;
    filter: invert(1);
    position: relative;
    z-index: 2;
    mix-blend-mode: screen;
}

.leverage-arrow-container {
    margin-top: -20px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leverage-arrow {
    font-size: 8rem;
    color: #ffffff;
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.leverage-stats {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.stat-growth {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-growth i {
    color: #ffffff;
    font-size: 1.4rem;
}

.blob-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    right: 30px;
    bottom: 30px;
    background: #333333;
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: blobAnim 8s ease-in-out infinite;
}

.img-fluid {
    width: 100%;
    height: auto;
    display: block;
}

.rounded-lg {
    border-radius: 16px;
}

.shadow-xl {
    box-shadow: var(--shadow-lg);
}

/* Clients Banner */
.clients-banner {
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.clients-banner .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clients-logo-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.client-logo h3 {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 800;
    filter: grayscale(100%);
    transition: var(--transition);
    cursor: default;
}

.client-logo:hover h3 {
    filter: grayscale(0%);
    color: var(--accent);
}

/* Cases */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #151515;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.case-header {
    padding: 2rem;
    text-align: center;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-header.bg-accent {
    background: #111;
    color: #fff;
    border-bottom: 1px solid #333;
}

.case-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.case-body {
    padding: 2rem;
}

.case-body h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.case-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-details ul {
    list-style: none;
}

.case-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.case-details strong {
    color: var(--primary);
}

/* Para Quem E (PQE) - Replaces FAQ */
.pqe-section {
    max-width: 100%;
    border-top: 1px solid #222;
}

.pqe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 991px) {
    .pqe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pqe-grid {
        grid-template-columns: 1fr;
    }
}

.pqe-card {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pqe-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.pqe-icon-wrapper {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pqe-icon-wrapper i {
    color: #ffffff;
    font-size: 1.1rem;
}

.pqe-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.pqe-text {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.6;
}

.pqe-btn {
    border-radius: 50px;
    padding: 1rem 3rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: #151515;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #555;
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #151515;
    z-index: 2;
    position: relative;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent);
    gap: 0.8rem;
}

/* FAQ MODERN */
.faq-accordion-modern {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.faq-item-modern {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item-modern:last-child {
    border-bottom: none;
}

.faq-btn-modern {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Better for long wrapped titles */
    gap: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.4;
}

.faq-btn-modern span {
    flex: 1;
}

.faq-btn-modern:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-btn-modern i {
    font-size: 1.2rem;
    margin-top: 2px;
    transition: transform 0.4s ease;
}

.faq-content-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.01);
}

.faq-content-modern p,
.faq-content-modern ul {
    padding: 0 2rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.faq-content-modern p:first-child {
    padding-top: 0.5rem;
}

.faq-content-modern ul {
    padding-left: 3.5rem;
    /* Space for list icons */
}

.faq-content-modern ul li {
    margin-bottom: 8px;
}

.faq-item-modern.active {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item-modern.active .faq-content-modern {
    max-height: 1000px;
    /* Enough for FAQ content */
    transition: max-height 0.6s ease-in;
}

.faq-item-modern.active .faq-btn-modern i {
    transform: rotate(180deg);
    color: var(--primary-color);
}


/* Contact Section */
.contact-section h2 {
    margin-bottom: 1rem;
}

.contact-desc {
    font-size: 1.1rem;
    color: #E2E8F0;
    max-width: 450px;
}

.info-list p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.info-list i {
    font-size: 1.8rem;
    color: var(--accent);
}

.contact-form-wrapper {
    position: relative;
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.glass-form h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #E2E8F0;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

/* Custom Header */
.custom-navbar {
    background: transparent !important;
    border: none;
    box-shadow: none !important;
    padding-top: 20px;
    pointer-events: none;
}

.floating-pill {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-navbar .nav-logo-img {
    max-height: 85px;
    margin-right: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text-arva {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.custom-nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.custom-nav-links a {
    color: #fff !important;
    font-weight: 500;
    display: inline-flex;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s;
    text-decoration: none;
}

.custom-nav-links a:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.custom-navbar .nav-icon {
    color: #fff !important;
}

/* Clean Hero */
.hero-clean {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding-top: 80px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.watermark-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
    filter: invert(1);
}

.watermark-col {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.watermark-col.left-col {
    left: 8%;
}

.watermark-col.right-col {
    right: 8%;
}

.watermark-col img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    clip-path: inset(0 0 16% 0);
    /* A opacidade geral já está na watermark-pattern */
}

.hero-content-center {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-text-box {
    max-width: 800px;
    padding: 2rem 0;
    margin: 0 auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title-clean {
    font-size: clamp(1.8rem, 4.5vw, 4rem);
    font-family: var(--font-main);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-copy-clean {
    font-size: 1.35rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.btn-black-solid {
    background: #000000;
    color: #ffffff;
    padding: 1.2rem 2.8rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s;
    text-decoration: none;
    border: none;
    outline: none;
}

.btn-black-solid:hover {
    background: #333333;
    color: #ffffff;
}

.btn-white-solid {
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 2.8rem;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-white-solid:hover {
    background: #cccccc;
    color: #000000;
}

/* Clean Services */
.services-clean {
    padding: 2rem 0 6rem;
    background-color: #ffffff;
    scroll-margin-top: 80px;
}

.section-subtitle-clean {
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.title-underline-clean {
    max-width: 800px;
    width: 100%;
    height: 1px;
    background: #ebebeb;
    margin: 0 auto 3rem;
}

/* Mouse Scroll Indicator */
.mouse-scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mouse-icon {
    width: 28px;
    height: 48px;
    border: 2px solid #000;
    border-radius: 15px;
    position: relative;
    margin-bottom: 5px;
}

.mouse-icon .scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: #000;
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

.mouse-arrow-down {
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        height: 4px;
        opacity: 1;
    }

    20% {
        top: 6px;
        height: 10px;
        opacity: 1;
    }

    40% {
        top: 18px;
        height: 6px;
        opacity: 0;
    }

    100% {
        top: 6px;
        height: 4px;
        opacity: 1;
    }
}

@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

.services-grid-clean {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    z-index: 1;
}

.services-grid-clean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(150, 150, 150, 0.25) 0%, rgba(200, 200, 200, 0) 60%);
    z-index: -1;
    pointer-events: none;
}

.service-card-clean {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background-color 0.4s ease;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.service-card-clean:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    background-color: #fcfcfc;
}

.service-card-clean button,
.service-card-clean .btn-black-solid {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.service-icon-clean {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1.5rem;
    transition: color 0.4s ease, transform 0.4s ease;
}

.service-card-clean:hover .service-icon-clean {
    color: #555;
    transform: scale(1.1);
}

.service-card-clean h4 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-card-clean p {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 768px) {
    .services-grid-clean {
        grid-template-columns: 1fr;
    }

    .border-sides {
        border-left: none;
        border-right: none;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    .hero-text-box {
        padding: 1.5rem;
        border-left: none;
        text-align: center;
    }

    .custom-nav-links {
        margin-left: 0;
    }
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Erros Grid */
.erros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .erros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .erros-grid {
        grid-template-columns: 1fr;
    }
}

/* Utilities */
.gs-img {
    filter: grayscale(100%);
    transition: var(--transition);
}

.gs-img:hover {
    filter: grayscale(0%);
}

/* Pilares Section New Grid */
/* --- PILARES SECTION - CIRCULAR DIAGRAM --- */
.pilares-section-new {
    background: radial-gradient(circle at center, #111111 0%, #050505 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Technical Background Grid */
.pilares-section-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    pointer-events: none;
}

.pillars-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 30px 0;
}

.pillars-container-unified {
    position: relative;
    width: 560px;
    height: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.5s ease;
    animation: floatingUnified 12s ease-in-out infinite;
}

@keyframes floatingUnified {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(0.5deg);
    }

    66% {
        transform: translateY(10px) rotate(-0.5deg);
    }
}

/* Outer Ring Effect */
.pillars-container-unified::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.pillars-center {
    position: absolute;
    width: 150px;
    height: 150px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 255, 255, 0.1);
}

.pillars-logo {
    font-size: 1.6rem;
    font-weight: 950;
    letter-spacing: 5px;
    color: #fff;
    line-height: 1;
}

.pillars-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
    max-width: 120px;
    line-height: 1.4;
}

/* Unified Node Styling - Now strictly inside the circle */
.pillar-node {
    position: absolute;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.node-icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.pillar-node h4 {
    font-size: 0.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
}

.pilar-desc-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-height: 0;
    /* Hidden by default */
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.pilar-desc-btn p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: 0;
}

/* Active State - When clicked */
.pillar-node.active .pilar-desc-btn {
    max-height: 150px;
    /* Reveal content */
    opacity: 1;
    margin-top: 15px;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pillar-node.active p {
    color: #fff;
}

.pillar-node.active .node-icon {
    background: #fff;
    color: #000;
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.pillar-node {
    cursor: pointer;
    outline: none;
}

.pillar-node:focus,
.pillar-node:focus-visible {
    outline: none;
}

.node-icon:focus,
.node-icon:focus-visible {
    outline: none;
}

/* 4-pillar symmetric corner layout */
.pn1 {
    top: 14%;
    left: 10%;
}

.pn3 {
    top: 14%;
    right: 10%;
    text-align: right;
}

.pn5 {
    bottom: 14%;
    left: 10%;
}

.pn6 {
    bottom: 14%;
    right: 10%;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .pillars-wrapper {
        min-height: 380px;
        padding: 20px 10px;
    }

    .pillars-container-unified {
        width: 340px;
        height: 340px;
    }

    .pillars-center {
        width: 80px;
        height: 80px;
    }

    .pillars-logo {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .pillars-tagline {
        font-size: 0.4rem;
        max-width: 60px;
    }

    .pillar-node {
        width: 110px;
    }

    .node-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .pillar-node h4 {
        font-size: 0.5rem;
        letter-spacing: 0.5px;
    }

    .pn1 {
        top: 15%;
        left: 8%;
    }

    .pn3 {
        top: 15%;
        right: 8%;
    }

    .pn5 {
        bottom: 15%;
        left: 8%;
    }

    .pn6 {
        bottom: 15%;
        right: 8%;
    }
}

@media (max-width: 420px) {
    .pillars-container-unified {
        width: 290px;
        height: 290px;
    }

    .pillars-center {
        width: 70px;
        height: 70px;
    }

    .pillars-logo {
        font-size: 0.9rem;
    }

    .pillars-tagline {
        font-size: 0.35rem;
        max-width: 50px;
    }

    .pillar-node {
        width: 90px;
    }

    .pillar-node h4 {
        font-size: 0.4rem;
        letter-spacing: 0px;
    }

    .pn1,
    .pn5 {
        left: 8%;
    }

    .pn3,
    .pn6 {
        right: 8%;
    }

    .pn1,
    .pn3 {
        top: 15%;
    }

    .pn5,
    .pn6 {
        bottom: 15%;
    }

    .pn6 {
        left: auto;
    }
}



/* Positioning icons at different angles */
.si1 {
    top: 15%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.si2 {
    top: 15%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.si3 {
    top: 50%;
    left: 88%;
    transform: translate(-50%, -50%);
}

.si4 {
    top: 85%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.si5 {
    top: 85%;
    left: 30%;
    transform: translate(-50%, -50%);
}

.si6 {
    top: 50%;
    left: 12%;
    transform: translate(-50%, -50%);
}

.seg-icon:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Utility Animations */
.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.zoom-in.show-element {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1150px) {
    .pilar-info {
        width: 220px;
    }

    .p1,
    .p5 {
        left: -100px;
    }

    .p2,
    .p6 {
        right: -100px;
    }

    .p3 {
        left: -200px;
    }

    .p4 {
        right: -200px;
    }
}

@media (max-width: 991px) {
    .pillars-wrapper {
        flex-direction: column;
        min-height: auto;
        padding-top: 20px;
        gap: 3rem;
    }

    .pillars-circle-container {
        width: 320px;
        height: 320px;
        margin-bottom: 0;
    }

    .pillars-center {
        width: 120px;
        height: 120px;
    }

    .pillars-logo {
        font-size: 1.4rem;
    }

    .pillars-descriptions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 800px;
    }

    .pilar-info {
        position: static;
        width: 100%;
        text-align: center !important;
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .pillars-descriptions {
        grid-template-columns: 1fr;
    }
}

/* Modal de Preços */
.precos-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.precos-modal-content {
    background-color: transparent;
    margin: 3% auto;
    padding: 15px;
    width: 95%;
    max-width: 1200px;
    position: relative;
    text-align: center;
}

.close-precos {
    color: #fff;
    position: absolute;
    top: -35px;
    right: 5px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-precos:hover {
    color: var(--accent);
}

/* Pricing Table */
.pricing-table-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    color: #333;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* Custom Document Modal Text */
.custom-doc-modal {
    padding: 3rem 4rem;
    font-family: var(--font-main);
}

.custom-doc-modal h3 {
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.custom-doc-modal p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-doc-modal hr {
    border: none;
    border-top: 2px solid #000;
    margin: 2.5rem 0;
}

.doc-author {
    text-align: center;
}

.doc-author h4 {
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.doc-author p {
    color: #444;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

.custom-doc-modal h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.custom-doc-modal ul {
    list-style-type: none;
    padding-left: 10px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.custom-doc-modal ul li::before {
    content: "• ";
    font-weight: bold;
    color: #000;
    margin-right: 5px;
}

.custom-doc-modal ul li {
    margin-bottom: 0.5rem;
}

.doc-footer p {
    font-size: 0.95rem;
    color: #333;
    text-align: center;
    margin-bottom: 0.3rem;
}

.table-header {
    background: #000;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.table-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.table-section-title {
    background: #e0e0e0;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.table-subtitle {
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-style: italic;
    background: #f5f5f5;
    border-bottom: 1px solid #ccc;
}

.table-responsive {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: #000;
    color: #fff;
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
}

.pricing-table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    font-size: 0.85rem;
    vertical-align: middle;
}

.pricing-table td.text-center {
    text-align: center;
}

.pricing-table td.fw-bold {
    font-weight: bold;
}

.pricing-table td.text-muted {
    color: #6c757d;
}

.pricing-table ul {
    margin: 0;
    padding-left: 1.2rem;
}

.pricing-table li {
    margin-bottom: 0.3rem;
}

.check-list {
    list-style-type: none;
    padding-left: 0 !important;
}

.check-list li::before {
    content: "✔️ ";
}

.pricing-table-footer {
    background: #000;
    color: #fff;
    padding: 1.2rem;
    font-size: 0.85rem;
    text-align: center;
}

.pricing-table-footer p {
    margin-bottom: 0.5rem;
}

.pricing-table-footer p:last-child {
    margin-bottom: 0;
}

/* Footer - Premium Redesign */
.footer {
    background: #050505;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-premium {
    max-height: 170px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-mission {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-nav-groups {
    display: flex;
    gap: 4rem;
}

.footer-nav-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-bottom-row {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-minimal {
    display: flex;
    gap: 1.5rem;
}

.footer-social-minimal a {
    color: #888;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-social-minimal a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-copyright p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-top-row {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }

    .footer-nav-groups {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-nav-col {
        min-width: 160px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-nav-groups {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        width: 100%;
    }
}

/* Animations */
@keyframes blobAnim {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.hidden-element {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.slide-up {
    transform: translate3d(0, 40px, 0);
}

.slide-left {
    transform: translate3d(40px, 0, 0);
}

.slide-right {
    transform: translate3d(-40px, 0, 0);
}

.show-element {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto !important;
}



.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

@media (max-width: 991px) {

    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-content {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 0.8rem 1rem;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .nav-content::-webkit-scrollbar {
        height: 0px;
        display: none;
    }

    .logo-container {
        flex-shrink: 0;
        order: 1;
    }

    .nav-cta {
        flex-shrink: 0;
        margin-top: 0;
        order: 3;
    }

    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .ajuda-section {
        padding: 3rem 0;
    }

    .ajuda-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-wrapper {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .stats-banner {
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .glass-form {
        padding: 2rem;
    }

    /* Padding Adjusts */
    .default-padding {
        padding: 3rem 0;
    }

    .services-clean {
        padding: 1.5rem 0 3rem;
    }

    /* Modals & Buttons fix */
    .precos-modal-content {
        margin: 5% auto;
        padding: 10px;
        width: 100%;
    }

    .custom-doc-modal {
        padding: 1.5rem 1rem;
    }

    .service-card-clean button.btn-black-solid {
        white-space: normal;
        height: auto;
        padding: 1rem;
        line-height: 1.4;
    }

    .close-precos {
        top: -40px;
        right: 10px;
        font-size: 45px;
    }

    .hero-copy-clean {
        font-size: 1.1rem;
    }
}

/* Modern Pricing Component Styling */
.modern-pricing-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    background-color: #111;
    color: #fff;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    align-self: flex-start;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-card.main-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.card-left {
    background: #f9f9f9;
    padding: 2rem;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-title-sm {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.level-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.level-tags .tag {
    background: #111;
    color: #fff;
    padding: 0.7rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.level-tags .tag:hover {
    background: #222;
    border-color: #444;
    transform: translateX(4px);
}

.card-right {
    padding: 2rem;
}

.card-right p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-right p:last-child {
    margin-bottom: 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.plan-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #111, #444);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-card h4 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
    font-weight: 700;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.5;
}

.plan-card ul li i {
    color: #222;
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefits-banner {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-banner strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefits-list span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
}

.benefits-list span i {
    color: #fff;
    font-size: 1.2rem;
}

.benefits-footer {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.benefits-footer p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-card.main-card {
        grid-template-columns: 1fr;
    }

    .card-left {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .benefits-banner {
        padding: 1.5rem;
    }
}

/* Gestao Estrategica Flow Logistics */
.steps-grid-logic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 900px) {
    .steps-grid-logic {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .steps-grid-logic {
        grid-template-columns: 1fr;
    }
}

.step-card-logic {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.step-card-logic:hover {
    transform: translateY(-8px);
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-card-logic:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3.5rem;
    right: -0.75rem;
    width: 1.5rem;
    height: 1px;
    background: #ffffff;
    z-index: 10;
}

@media (max-width: 900px) {
    .step-card-logic:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .step-card-logic:not(:last-child)::after {
        display: none;
    }
}

.step-icon-logic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.step-title-logic {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.step-desc-logic {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-card-logic.final {
    background: #ffffff;
    border-color: #ffffff;
}

.step-card-logic.final .step-icon-logic {
    background: #111;
    color: #fff;
    border-color: #111;
}

.step-card-logic.final .step-title-logic {
    color: #111;
}

.step-card-logic.final .step-desc-logic {
    color: #222;
    font-weight: 500;
}

/* --- COMPREHENSIVE MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-title-clean {
        font-size: clamp(1rem, 5vw, 2.2rem);
        line-height: 1.25;
        margin-bottom: 1.2rem;
    }

    .hero-copy-clean {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Stats Banner Custom */
    .stats-container-custom {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .stat-box-left,
    .stat-box-right {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .avatar-group {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .stat-box-right h3.stat-white {
        font-size: 1.8rem;
    }

    /* Target Audience / Leverage Visual */
    .target-content {
        text-align: center;
    }

    .title-underline-left {
        margin: 0 auto;
    }

    .benefit-list li {
        justify-content: center;
    }

    .leverage-visual {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .leverage-arrow {
        font-size: 6rem;
    }

    .leverage-watermark-col img {
        width: 50px;
    }

    /* "Para quem é" Grid */
    .pqe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Erros Grid */
    .erros-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Modals generally */
    .precos-modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }

    /* Contact Details Form & Footer */
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col.left-align {
        text-align: center;
    }
}

/* Floating Socials */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 99999;
    align-items: center;
    pointer-events: auto;
}

.floating-socials a {
    text-decoration: none;
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-btn-instagram {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.instagram-circle {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
    transition: transform 0.3s ease;
}

.instagram-circle i {
    font-size: 36px;
    color: white;
}

.instagram-pulse,
.instagram-pulse-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    opacity: 0.6;
    animation: instPulse 2s infinite;
}

.instagram-pulse-2 {
    animation-delay: 1s;
}

@keyframes instPulse {
    0% {
        width: 60px;
        height: 60px;
        opacity: 0.6;
    }

    100% {
        width: 110px;
        height: 110px;
        opacity: 0;
    }
}

.social-btn-instagram:hover .instagram-circle {
    transform: translateY(-5px);
}

.social-btn-whatsapp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.whatsapp-circle {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-circle i {
    font-size: 36px;
    color: white;
}

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #FF3B30;
    color: white;
    font-size: 14px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.whatsapp-pulse,
.whatsapp-pulse-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: wppPulse 2s infinite;
}

.whatsapp-pulse-2 {
    animation-delay: 1s;
}

@keyframes wppPulse {
    0% {
        width: 60px;
        height: 60px;
        opacity: 1;
    }

    100% {
        width: 110px;
        height: 110px;
        opacity: 0;
    }
}

.social-btn-whatsapp:hover .whatsapp-circle {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 1rem;
    }

    .floating-socials a {
        font-size: 2.5rem;
    }

    .whatsapp-floating-img,
    .instagram-floating-img {
        width: 50px;
        height: 50px;
    }
}

/* Trust Bar Hero */
.hero-trust-bar {
    background-color: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 2rem auto;
    max-width: 900px;
    width: 100%;
}

.trust-avatars-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-avatars {
    display: flex;
    align-items: center;
}

.trust-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: contain;
    padding: 2px;
    margin-left: -15px;
    background-color: #ffffff;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 5px;
    white-space: nowrap;
}

.trust-money-group .trust-number {
    color: #ffffff;
}

.trust-label {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.trust-money-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-divider {
    width: 1px;
    height: 60px;
    background-color: #333333;
}

@media (max-width: 768px) {
    .hero-trust-bar {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    .trust-avatars-group {
        flex-direction: column;
    }

    .trust-stats,
    .trust-money-group {
        align-items: center;
    }

    .trust-divider {
        width: 100px;
        height: 1px;
    }
}

.ajuda-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

/* Remove top border if it exists and clean the section spacing */

.ajuda-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 4rem;
}

.ajuda-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.ajuda-menu {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
    /* space between menu and content */
}

.ajuda-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 500;
    color: #888888;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin-bottom: 0.2rem;
}

.ajuda-btn span {
    max-width: 85%;
    line-height: 1.3;
}

.ajuda-btn:last-child {
    border-bottom: none;
}

.ajuda-btn.active {
    background-color: #111111;
    color: #ffffff;
    border-bottom: 1px solid transparent;
    padding: 1.6rem 1.2rem;
    /* slightly wider padding when active */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ajuda-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.ajuda-btn:not(.active) .ajuda-icon {
    color: #cccccc;
    background-color: transparent;
}

.ajuda-btn.active .ajuda-icon {
    background-color: #ffffff;
    color: #111111;
}

.ajuda-content-area {
    background-color: #fcfbf5;
    /* very soft cream/beige color */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.ajuda-pane {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem;
    height: 100%;
}

.ajuda-pane.active {
    display: grid;
    animation: fadeIn 0.4s ease forwards;
}

.ajuda-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ajuda-text h3 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ajuda-text p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ajuda-cta-btn {
    margin-top: auto;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}

.ajuda-cta-btn:hover {
    background-color: #ffffff;
    color: #111111;
    transform: translateY(-3px);
}

.ajuda-image {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.ajuda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .ajuda-container {
        grid-template-columns: 1fr;
    }

    .ajuda-pane {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .ajuda-image {
        min-height: 250px;
        order: -1;
    }

    .ajuda-btn {
        padding: 1.2rem;
    }
}

/* Erros Modern Layout */
.erros-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.erro-card-modern {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    text-align: left;
}

.erro-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(250, 186, 53, 0.3);
}

.erro-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%);
    transition: opacity 0.4s ease, filter 0.4s ease;
    z-index: 0;
}

.erro-card-modern:hover .erro-bg {
    opacity: 0.25;
    filter: grayscale(50%);
}

.erro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.erro-number {
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    font-family: var(--font-main);
}

.erro-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.3;
    border-left: 3px solid #ffffff;
    padding-left: 1rem;
    text-transform: uppercase;
}

.erro-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.erro-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 0.8rem;
}

.erro-list i {
    color: #ff4d4d;
    font-size: 1.1rem;
    margin-top: 2px;
}

.erro-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.erro-subtitle {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.erro-quote {
    font-size: 0.9rem;
    color: #aaaaaa;
    font-style: italic;
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

.erro-result {
    margin-top: auto;
}

.erro-badge-danger {
    display: inline-block;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.3);
    padding: 0.6rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-top: 1rem;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.erro-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.erro-callout.outline {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.erro-callout.danger {
    background: rgba(255, 77, 77, 0.05);
    border-left: 2px solid #ff4d4d;
}

.erro-callout p {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

.erro-callout i {
    font-size: 1.4rem;
}

@media (max-width: 900px) {
    .erros-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Arva Document Mockup */
.arva-doc-mockup {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    margin: auto;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
    color: #111111;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.arva-doc-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.05);
}

.arva-doc-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #ffffff;
}

.doc-header-line {
    border-bottom: 2px solid #111111;
    margin-bottom: 1rem;
}

.doc-header-line-thick {
    border-bottom: 5px solid #111111;
    margin: 1.5rem 0;
}

.doc-header-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.doc-mockup-logo {
    width: 65px !important;
    height: 65px !important;
    object-fit: cover !important;
    border-radius: 4px;
}

.doc-mockup-text strong {
    font-size: 1.1rem;
    font-family: var(--font-main);
    display: block;
    margin-bottom: 5px;
    color: #111111;
}

.doc-mockup-text p {
    font-size: 0.85rem;
    font-family: var(--font-main);
    color: #555555;
    margin: 0;
    line-height: 1.3;
}

.doc-body-title {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #111111;
    text-align: center;
}

.doc-mockup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-main);
}

.doc-mockup-list li {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 18px;
    color: #333333;
    line-height: 1.4;
    text-align: left;
}

.doc-mockup-list li::before {
    content: "■";
    font-size: 0.6rem;
    position: absolute;
    left: 0;
    top: 4px;
    color: #ffffff;
}

.doc-signature {
    margin-top: 3.5rem;
    padding-top: 1rem;
    width: 200px;
    align-self: flex-end;
    text-align: center;
}

.sig-line {
    border-bottom: 1.5px solid #111111;
    margin-bottom: 8px;
}

.doc-signature span {
    font-size: 0.85rem;
    font-family: var(--font-main);
    font-weight: 600;
    color: #111111;
}

/* Para Quem É - Premium Cards */
.pqe-section-modern {
    background-color: #000000;
    padding: 6rem 0;
}

.pqe-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pqe-card-modern {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pqe-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 900px) {
    .pqe-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* Insights Estratégicos Modern Blog */
.blog-section {
    padding: 0;
    background: #030303;
}

.blog-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.blog-card-modern {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.blog-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.85);
}

.blog-card-modern:hover .blog-img-modern {
    transform: scale(1.05);
    filter: brightness(1);
}

.blog-content-modern {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content-modern h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content-modern p {
    font-size: 0.95rem;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .blog-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* FAQ Modern Dark Theme */
.faq-section {
    background-color: #000000;
    padding: 6rem 0;
}

.faq-accordion-modern {
    background-color: #121212;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin: 0 auto;
}

.faq-item-modern {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-btn-modern {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-btn-modern:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-btn-modern i {
    font-size: 1rem;
    color: #aaaaaa;
    transition: transform 0.4s ease;
}

.faq-content-modern {
    max-height: 0;
    overflow: hidden;
    background-color: transparent;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-content-modern p {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

/* Toggle Accordion State */
.faq-item-modern.active .faq-btn-modern i {
    transform: rotate(180deg);
}

.faq-item-modern.active .faq-content-modern {
    max-height: 300px;
    /* arbitrary max-height for CSS transition */
    padding: 0 2rem 1.5rem 2rem;
}

@media (max-width: 768px) {

    .blog-section,
    .faq-section,
    .contact-section {
        padding: 3rem 0 !important;
    }

    /* Hero text wrapping fix for small screens */
    .hero-title-clean span {
        white-space: normal !important;
    }

    /* Trust bar mobile improvements */
    .trust-number {
        font-size: 1.3rem;
        word-break: break-word;
        white-space: normal;
    }

    .trust-label {
        font-size: 0.8rem;
    }

    .hero-trust-bar {
        padding: 1.2rem;
        gap: 1.2rem;
        margin: 1.5rem 0.5rem;
    }

    /* Map section mobile fixes */
    .white-box-overlay {
        top: 15% !important;
        right: 5% !important;
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
    }

    .matriz-section .container.grid-2 {
        gap: 2rem;
    }

    .matriz-text {
        padding-top: 0 !important;
        padding-right: 0 !important;
    }

    .matriz-text h2 {
        font-size: 1.5rem !important;
    }

    .matriz-text p {
        font-size: 1rem !important;
    }

    /* PQE cards mobile */
    .pqe-card-modern {
        padding: 1.5rem;
    }

    .pqe-text-modern {
        font-size: 0.95rem;
    }

    /* FAQ mobile touch targets */
    .faq-btn-modern {
        padding: 1.3rem 1.2rem;
        font-size: 1rem;
    }

    /* Better section titles on mobile */
    .section-title {
        font-size: 1.8rem;
    }

    /* Leverage visual mobile */
    .leverage-visual {
        min-height: 350px;
        padding: 2rem 1.5rem;
    }

    .leverage-logo {
        max-width: 180px;
    }

    .leverage-arrow {
        font-size: 5rem;
    }

    .stat-growth {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Contact form mobile */
    .glass-form h3 {
        font-size: 1.3rem;
    }

    .contact-desc {
        font-size: 0.95rem;
    }

    .info-list p {
        font-size: 0.95rem;
    }

    /* Social banner mobile */
    .social-banner-text h2 {
        font-size: 1.4rem;
    }

    /* Footer mobile */
    .footer-grid {
        gap: 2rem;
        text-align: center;
    }

    .footer-col.left-align {
        text-align: center;
    }

    .footer-desc {
        margin: 1rem auto 0;
    }

    .social-nav {
        justify-content: center;
    }

    /* Insights Estratégicos mobile */
    .section-subtitle-clean {
        font-size: 1.5rem !important;
    }

    /* Video mobile */
    .arva-modern-video {
        max-width: 80% !important;
        border-radius: 8px !important;
        margin: 0 auto;
    }

    /* Modal padding fix for mobile */
    .precos-modal-content>div {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Pilares Section (Donut Wheel) */
.pilares-wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 4rem auto 8rem;
}

.wheel-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wheel-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wheel-icon-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--rot)) translateY(-130px) rotate(calc(-1 * var(--rot)));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.wheel-icon-item i {
    font-size: 2.2rem;
}

.wheel-icon-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    font-family: var(--font-main);
}

.label-box {
    position: absolute;
    color: #fff;
    display: flex;
    white-space: nowrap;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.label-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.label-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: #aaaaaa;
    margin-top: 4px;
    line-height: 1.3;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.label-1 {
    top: -5%;
    left: 90%;
    flex-direction: column;
    align-items: flex-start;
}

.label-2 {
    top: 50%;
    transform: translateY(-50%);
    left: 105%;
    flex-direction: row;
    align-items: center;
}

.label-3 {
    top: 85%;
    left: 85%;
    flex-direction: row;
    align-items: center;
}

.label-4 {
    top: 85%;
    right: 85%;
    flex-direction: row;
    align-items: center;
}

.label-5 {
    top: 50%;
    transform: translateY(-50%);
    right: 105%;
    flex-direction: row;
    align-items: center;
}

.label-6 {
    top: -5%;
    right: 90%;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 992px) {
    .pilares-wheel-container {
        transform: scale(0.65);
        margin: -2rem auto 2rem;
    }
}

@media (max-width: 576px) {
    .pilares-wheel-container {
        transform: scale(0.45);
        margin: -6rem auto -3rem;
    }
}

/* Social Banner */
.social-banner {
    background: #ffffff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.social-banner::before {
    display: none;
}

.social-banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 3rem;
}

.social-banner-text {
    flex: 1;
}

.social-banner-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #111111;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.social-banner-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555555;
    margin: 0;
    max-width: 500px;
}

.social-banner-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-banner-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    border: 2px solid #111111;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.social-banner-icon:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .social-banner {
        padding: 3.5rem 0;
    }

    .social-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1.5rem;
    }

    .social-banner-text p {
        margin: 0 auto;
    }

    .social-banner-links {
        justify-content: center;
    }

    .social-banner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 20px;
    padding: 4px 8px;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    outline: none;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lang-btn.inactive img {
    filter: grayscale(100%) opacity(0.5);
}

.lang-btn:hover:not(.active) img {
    filter: grayscale(50%) opacity(0.8);
}

.lang-divider {
    width: 1px;
    height: 14px;
    background-color: #cccccc;
}

/* Hide Google Translate completely */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Licitações Modal - Service Cards */
.licit-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #ffffff;
}

.licit-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transition: width 0.3s ease;
}

.licit-service-card:hover::after {
    width: 100%;
}

.licit-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

@keyframes subtlePulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3);
    }
}

.licit-cta-btn {
    animation: subtlePulse 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .licit-services-grid {
        grid-template-columns: 1fr !important;
    }

    .licit-footer-grid {
        flex-direction: column;
    }

    .licit-highlight-bar {
        flex-direction: column;
        text-align: center;
    }

    .licit-highlight-bar>div {
        flex-direction: column;
        text-align: center;
    }

    #licitacoesModal .precos-modal-content {
        padding: 0 !important;
    }

    #licitacoesModal .precos-modal-content>div {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* FAQ Mobile Overrides */
    .faq-btn-modern {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-content-modern p,
    .faq-content-modern ul {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
    }

    .faq-content-modern ul {
        padding-left: 2.2rem;
    }
}


@media (min-width: 769px) and (max-width: 960px) {
    .licit-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ======================================= */
/* FLOATING ACTION BUTTONS - PREMIUM       */
/* ======================================= */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #111111;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Floating Contact Row */
.floating-contact-row {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

/* Floating Label Tooltip */
.floating-label {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #111111;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatLabel 3s ease-in-out infinite;
    pointer-events: none;
}

.floating-label::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: #111111;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

@keyframes floatLabel {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Phone Floating Button */
.floating-phone {
    width: 50px;
    height: 50px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.floating-phone i {
    color: #ffffff;
    font-size: 1.4rem;
}

.floating-phone:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.floating-phone:hover i {
    color: #111111;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .floating-contact-row {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .floating-label {
        bottom: 90px;
        right: 15px;
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .floating-phone {
        width: 44px;
        height: 44px;
    }

    .floating-phone i {
        font-size: 1.2rem;
    }
}

/* ======================================= */
/* PREMIUM VISUAL POLISH                    */
/* ======================================= */

/* Smooth section transitions */
section {
    position: relative;
}

/* Enhanced focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Selection colors */
::selection {
    background: #111111;
    color: #ffffff;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

/* Premium scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ======================================= */
/* EXTRA SMALL SCREENS (< 400px)           */
/* ======================================= */
@media (max-width: 400px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title-clean {
        font-size: clamp(1.2rem, 6vw, 1.8rem) !important;
    }

    .hero-copy-clean {
        font-size: 0.9rem !important;
    }

    .trust-number {
        font-size: 1.1rem;
    }

    .floating-contact-row {
        right: 10px;
        bottom: 15px;
    }

    .scroll-to-top {
        left: 10px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }

    .service-card-clean {
        padding: 1.8rem 1.2rem;
    }

    .btn-black-solid {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .blog-content-modern {
        padding: 1.5rem;
    }

    .blog-content-modern h4 {
        font-size: 1.1rem;
    }

    .glass-form {
        padding: 1.5rem;
    }

    .glass-form h3 {
        font-size: 1.1rem;
    }
}

/* Touch-friendly improvements */
/* ======================================= */
/* MUSIC PLAYER - FLOATING BUTTON          */
/* ======================================= */
.music-control {
    position: fixed;
    bottom: 95px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(17, 17, 17, 0.9);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.music-control:hover {
    background: #ffffff;
    color: #111111;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.music-control.playing {
    border-color: #ffffff;
    animation: musicPulse 2s infinite;
}

@keyframes musicPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.music-control .music-label {
    position: absolute;
    left: 60px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    font-weight: 600;
}

.music-control:hover .music-label {
    opacity: 1;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .music-control {
        bottom: 75px;
        left: 20px;
        width: 44px;
        height: 44px;
    }
}

/* --- Modals Styles (Restored & Polished) --- */
.precos-modal {
    display: none;
    position: fixed;
    z-index: 1000000 !important;
    /* Above everything including socials */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto !important;
}

.precos-modal-content {
    background-color: transparent !important;
    margin: 5vh auto;
    padding: 0;
    width: 95%;
    max-width: 1000px;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1000001;
}

.close-precos {
    color: #fff !important;
    font-size: 3rem !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    position: fixed;
    /* Fixed relative to viewport so it never scrolls away */
    top: 20px;
    right: 30px;
    z-index: 1000002 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.close-precos:hover {
    color: #ff4d4d !important;
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.1);
}

/* Base modal contents inner container */
.pricing-table-container {
    background: #fff !important;
    border-radius: 16px;
    padding: 2.5rem;
    color: #111;
    overflow: hidden;
}

/* Ensure modal contents are not transparent and have consistent style */
.precos-modal-content>div {
    background: #fafafa !important;
    border-radius: 16px;
    overflow: hidden;
}

/* Specific fix for images inside modals */
.precos-modal-content img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
}

/* --- Floating Social Buttons (Enhanced) --- */
.floating-socials {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.social-btn-instagram,
.social-btn-whatsapp {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-btn-instagram:hover,
.social-btn-whatsapp:hover {
    transform: scale(1.1);
}

.instagram-circle {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
}

.whatsapp-circle {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.instagram-circle i,
.whatsapp-circle i {
    font-size: 30px;
    color: #fff;
}

.whatsapp-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    z-index: 4;
}

/* Pulses */
.instagram-pulse,
.instagram-pulse-2,
.whatsapp-pulse,
.whatsapp-pulse-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
}

.instagram-pulse,
.instagram-pulse-2 {
    background: #d6249f;
}

.whatsapp-pulse,
.whatsapp-pulse-2 {
    background: #25d366;
}

.instagram-pulse,
.whatsapp-pulse {
    animation: pulseAnim 2s infinite;
}

.instagram-pulse-2,
.whatsapp-pulse-2 {
    animation: pulseAnim 2s infinite 1s;
}

@keyframes pulseAnim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-socials {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .social-btn-instagram,
    .social-btn-whatsapp {
        width: 50px;
        height: 50px;
    }

    .instagram-circle,
    .whatsapp-circle {
        width: 50px;
        height: 50px;
    }

    .instagram-circle i,
    .whatsapp-circle i {
        font-size: 24px;
    }
}


.floating-label {
    position: absolute;
    right: 75px;
    bottom: 50%;
    transform: translateY(50%);
    background: #111;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #111;
}