:root {
    /* Color Palette */
    --bg-dark: #0f1011;
    --bg-surface: #1a1c1e;
    --bg-surface-light: #242628;

    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;

    --accent-gold: #D4AF37;
    --accent-gold-hover: #f1c40f;
    --accent-gold-dim: rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --container-max: 1140px;
    --section-pad: 5rem 0;

    /* Transitions */
    --transition: all 0.3s ease;
}

@font-face {
    font-family: 'Adelia';
    src: url('./adelia.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--accent-gold);
}

.text-center {
    text-align: center;
}

.subtitle {
    display: block;
    margin-bottom: 1rem;
    color: #f3af65;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #111;
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold-dim);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: rgba(20, 26, 29, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 2rem;
}

.logo img {
    height: 45px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #e2e8f0;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #f7cb73;
}

.btn-outline-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
    background-color: transparent;
    color: #f3af65;
    border: 1px solid #f3af65;
}

.btn-outline-nav i {
    font-size: 1rem;
}

.btn-outline-nav:hover {
    background-color: rgba(243, 175, 101, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 0 140px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #061014;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, transparent 70%, #061014 100%),
        linear-gradient(90deg, #091316 0%, #091316 40%, rgba(9, 19, 22, 0.8) 55%, rgba(9, 19, 22, 0) 100%);
    z-index: 2;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}


.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.hero-content p {
    color: #a0aec0;
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-content p:last-of-type {
    margin-bottom: 2.5rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-gradient {
    background: linear-gradient(90deg, #fcebb6 0%, #f3af65 100%);
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(243, 175, 101, 0.1);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 175, 101, 0.3);
}

.btn-icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid #f3af65;
    border-radius: 8px;
    color: #f3af65;
    background: #0d1619;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-icon-only:hover {
    background: rgba(243, 175, 101, 0.1);
}

/* Agitação / Problema (Compare Section) */
.problem-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #061014 0%, #0d1214 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 25% 100%;
    pointer-events: none;
    z-index: 1;
}

.problem-section .container {
    position: relative;
    z-index: 2;
}

.compare-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


.compare-header h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.compare-header p {
    color: #a0aec0;
    font-size: 1rem;
    font-weight: 300;
}

.compare-cards-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    flex: 1;
    background-color: rgba(18, 21, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.compare-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.compare-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
}

.compare-list i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #cbd5e1;
}

.compare-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f3af65;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.compare-cta i {
    font-size: 1rem;
}

.compare-cta:hover {
    color: #fcebb6;
}

/* Soluções / Segmentação (Steps Layout) */
.solutions-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0d1214 0%, #0b1114 100%);
    border: none;
}

.solutions-container-split {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.solutions-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    filter: brightness(0.9);
}

.image-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, #0b1114);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 1;
}

.floating-badge-left {
    position: absolute;
    top: 30%;
    left: -20px;
    width: 45px;
    height: 45px;
    background: rgba(100, 100, 100, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #f3af65;
    font-size: 1.2rem;
}

.vertical-gold-bar {
    position: absolute;
    bottom: 30px;
    right: -10px;
    width: 18px;
    height: 55%;
    background-color: #f3af65;
    border-radius: 4px;
    z-index: 2;
}

.floating-stat-box {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background: rgba(80, 80, 80, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    max-width: 250px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.floating-stat-box h4 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.floating-stat-box p {
    font-size: 0.85rem;
    margin: 0;
    color: #cbd5e1;
}

.solutions-content-side {
    flex: 1.2;
}

.solutions-content-side h2 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 3rem;
    color: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-card {
    background-color: #121517;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(243, 175, 101, 0.3);
    background-color: #15181b;
}

.step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.step-num .dot {
    color: #f3af65;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.step-card p {
    font-size: 0.9rem;
    color: #8c9ba5;
    margin: 0;
    line-height: 1.5;
}

.solutions-cta-area {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-solid-gold {
    background: linear-gradient(90deg, #fde4c3 0%, #f3af65 100%);
    color: #111;
    border: none;
    border-radius: 6px;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-solid-gold:hover {
    background-color: #fcebb6;
}

.mini-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}

.mini-benefits span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #e2e8f0;
    text-transform: uppercase;
}

.mini-benefits i {
    color: #f3af65;
    font-size: 0.9rem;
}

/* Autoridade (New Collage Layout) */
.authority-section {
    padding: 10rem 0;
    background-color: #0b0e11;
    overflow: hidden;
}

.authority-container-new {
    display: flex;
    gap: 8rem;
    align-items: center;
}

.authority-content-new {
    flex: 1;
}

.authority-content-new .subtitle {
    margin-bottom: 1rem;
}

.authority-content-new h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

.authority-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.authority-text p {
    font-size: 0.95rem;
    color: #a0aec0;
    line-height: 1.8;
    margin: 0;
}

.authority-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #f3af65;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.authority-link i {
    font-size: 1.1rem;
}

.authority-image-collage {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 500px;
}

.collage-backdrop {
    position: absolute;
    top: 90px;
    right: 40px;
    width: 50%;
    height: 85%;
    background-color: #f3af65;
    border-radius: 12px;
    z-index: 1;
}

.collage-main-img {
    position: relative;
    z-index: 2;
    width: 80%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-right: auto;
    margin-left: 20px;
    object-fit: cover;
}

.collage-floating-badge {
    position: absolute;
    top: 45%;
    left: 0;
    width: 45px;
    height: 45px;
    background: rgba(100, 100, 100, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #f3af65;
    font-size: 1.3rem;
}

.collage-sub-img {
    position: absolute;
    bottom: -50px;
    right: -10px;
    width: 55%;
    max-width: 260px;
    border-radius: 12px;
    z-index: 3;
    filter: grayscale(100%);
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.4);
    border: none;
}

.collage-signature {
    position: absolute;
    bottom: -70px;
    left: 20px;
    font-family: 'Adelia', cursive;
    font-size: 1.4rem;
    color: #f3af65;
    z-index: 4;
    line-height: 0.85;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* FAQ (Split Layout) */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #111518 0%, #171c1f 100%);
}

.faq-container-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.faq-content-side {
    flex: 0 0 35%;
}


.faq-content-side h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.faq-content-side p {
    color: #88929c;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-accordion-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 2rem 0;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-question i {
    color: #e2e8f0;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 2rem;
    color: #88929c;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Bottom CTA */
.bottom-cta {
    position: relative;
    padding: 8rem 0;
    background-color: #111518;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-icon-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #111518;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cta-icon-wrapper img {
    width: 30px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}


.bottom-cta h2 {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.2;
}

/* Footer New Layout */
.footer {
    position: relative;
    background-color: #0b0e11;
    padding: 6rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.footer-container-new {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-left p {
    font-size: 0.75rem;
    color: #6c7a87;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.back-to-top {
    color: #ffffff;
    font-size: 0.75rem;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: #f3af65;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #f3af65;
    border-radius: 8px;
    color: #f3af65;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: #f3af65;
    color: #0b0e11;
}

.footer-watermark {
    position: absolute;
    bottom: -15%;
    left: -2%;
    font-family: var(--font-heading);
    font-size: 16vw;
    color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

/* Sub Footer */
.sub-footer {
    height: 80px;
    background-color: #06080a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #88929c;
}

.sub-footer a {
    color: #ffffff;
    font-weight: 300;
    margin-left: 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sub-footer a:hover {
    color: #f3af65;
}

/* Disclaimer Footer */
.disclaimer-footer {
    background-color: #040506;
    color: #636b74;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 11px;
    line-height: 1.5;
}

.disclaimer-footer p {
    margin: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

/* WhatsApp SVG Icon */
.wpp-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.btn-outline-nav .wpp-icon {
    width: 18px;
    height: 18px;
}

.footer-socials .wpp-icon {
    width: 24px;
    height: 24px;
}

.floating-whatsapp .wpp-icon {
    width: 35px;
    height: 35px;
}

/* Global Button Hover Enhancements */
.btn-gradient:hover,
.btn-solid-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 175, 101, 0.3);
    filter: brightness(1.05);
}

.compare-cta:hover,
.authority-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
}

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

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .problem-content,
    .authority-container,
    .solutions-container-split,
    .faq-container-split {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .faq-content-side {
        width: 100%;
        text-align: center;
    }

    .solutions-cta-area {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .mini-benefits {
        justify-items: center;
        text-align: center;
    }

    .authority-container-new {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .authority-image-collage {
        margin-bottom: 100px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-image {
        justify-content: center;
        margin-top: 2rem;
    }

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

/* Mobile Menu Base Classes */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f3af65;
    font-size: 32px;
    cursor: pointer;
}

.hide-on-mobile {
    display: inline-flex;
}

@media (max-width: 768px) {

    /* Fluid spacing for all sections */
    section {
        padding: 4rem 1rem !important;
        /* Reduced padding for fluidity */
    }

    /* Header Mobile Adjustments */
    .mobile-menu-toggle {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(11, 14, 17, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0;
        gap: 0;
        border-top: 1px solid rgba(243, 175, 101, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        font-size: 0.85rem;
        letter-spacing: 2px;
        color: #cbd5e1;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Typography Mobile */
    h1,
    h2,
    .compare-header h2,
    .solutions-content-side h2,
    .faq-header h2 {
        font-size: 2.2rem !important;
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 120px !important;
        padding-bottom: 3rem !important;
        min-height: auto;
    }

    .hero-container {
        padding: 0 !important;
    }

    .hero-bg-image {
        background-image: url('./images/img_capa_rossi_mobile.png') !important;
        background-position: center bottom;
    }

    .hero-gradient-overlay {
        background: linear-gradient(180deg, rgba(6, 16, 20, 0.8) 0%, rgba(6, 16, 20, 1) 97%) !important;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-gradient {
        width: 100%;
        text-align: center;
    }

    /* Adjust overlay images for mobile space without breaking conformity */
    .image-wrapper {
        margin: 2rem auto 4rem;
        max-width: 80%;
        /* Creates side space for the floating absolute elements */
    }

    .floating-stat-box {
        right: -10%;
        bottom: -40px;
        max-width: 170px;
        padding: 1rem;
    }

    .floating-stat-box h4 {
        font-size: 1.3rem;
    }

    .floating-stat-box p {
        font-size: 0.75rem;
    }

    .floating-badge-left {
        left: -10%;
    }

    .authority-image-wrapper {
        margin-top: 2rem;
    }

    .collage-backdrop {
        right: 20px;
    }

    /* Compare Cards Section Mobile */
    .compare-cards-wrapper {
        flex-direction: column;
    }

    /* Footer adjustments */
    .footer-container-new {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
    }

    .footer-watermark {
        font-size: 25vw;
        left: -10%;
    }
}