/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-color: #F5EFE6;
    --primary-color: #727755;
    --primary-dark: #5B6043;
    --accent-color: #C9A66B;
    --accent-dark: #b39158;
    --accent-text: #85632A;
    --text-color: #2B2B2B;
    --title-color: #4E5A33;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-glass: 0 8px 32px 0 rgba(114, 119, 85, 0.1);
    
    --radius-lg: 24px;
    --radius-xl: 100px;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--white);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--title-color);
    line-height: 1.2;
}

h1 span, h2 span {
    color: var(--primary-color);
    font-style: italic;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-text);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
}

.center {
    text-align: center;
}
.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.btn i {
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(114, 119, 85, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(114, 119, 85, 0.4);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(201, 166, 107, 0.3);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(201, 166, 107, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ==========================================================================
   NAVIGATION NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    background: rgba(245, 239, 230, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(114, 119, 85, 0.1);
    transition: all 0.3s ease;
}

.navbar-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-menu a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Section scroll-margin to avoid header overlapping content */
section, .hero {
    scroll-margin-top: 80px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-image: url('images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 239, 230, 0.95) 0%, rgba(245, 239, 230, 0.7) 100%);
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(114, 119, 85, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.avatars {
    display: flex;
}

.avatars img, .avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.avatar-more {
    background: var(--accent-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-oval {
    width: 380px;
    height: 520px;
    border-radius: 200px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.hero-image-oval img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 50px;
    right: -40px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    max-width: 320px;
    border: 1px solid rgba(114, 119, 85, 0.08);
}

.hero-floating-card .card-icon {
    width: 44px;
    height: 44px;
    background: rgba(114, 119, 85, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.hero-floating-card .card-info {
    text-align: left;
}

.hero-floating-card .card-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1.2;
}

.hero-floating-card .card-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 2px;
}

.hero-floating-card .card-crm {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 3px;
    font-weight: 500;
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.social-proof {
    padding: 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--white);
}

.social-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

/* ==========================================================================
   PROBLEMA E SOLUÇÃO
   ========================================================================== */
.ps-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-points {
    margin-bottom: 40px;
}

.pain-points li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pain-points li i {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.solution-box {
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.solution-box h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.ps-images {
    display: flex;
    gap: 20px;
    height: 500px;
}

.image-pill {
    width: 50%;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-pill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    transform: translateY(40px);
}

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.b-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(114, 119, 85, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.testi-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.testi-stars {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testi-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.testi-author h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testi-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background: rgba(114, 119, 85, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.tl-number {
    position: absolute;
    left: 16px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--white);
}

.tl-content {
    padding: 30px;
}

.tl-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.tl-content p {
    color: var(--text-light);
}

.bonus-box {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(201, 166, 107, 0.05);
    border-color: rgba(201, 166, 107, 0.2);
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bonus-text h4 {
    color: var(--accent-dark);
    margin-bottom: 5px;
}

/* ==========================================================================
   OFERTA E GARANTIA
   ========================================================================== */
.offer {
    background: var(--primary-dark);
    color: var(--white);
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    padding: 60px;
}

.offer-content h2, .offer-content .section-title span {
    color: var(--white);
}

.offer-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.offer-list {
    margin-bottom: 40px;
}

.offer-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-list li i {
    color: var(--accent-color);
}

.offer-guarantee {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seal {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.offer-guarantee h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.offer-guarantee p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    font-family: inherit;
    text-align: left;
    color: inherit;
    padding: 24px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.accordion-body {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-light);
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-body {
    padding: 0 30px 24px;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location {
    background-color: #F5EFE6;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.info-list {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(114, 119, 85, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-text {
    text-align: left;
}

.info-text h3 {
    font-size: 1.3rem;
    color: var(--title-color);
    margin-bottom: 6px;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-text .specialty {
    font-weight: 600;
    color: var(--text-color);
}

.info-text .credentials {
    font-size: 0.85rem;
    margin-top: 4px;
}

.map-wrapper {
    padding: 12px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 474px; /* 450px map height + 24px padding */
}

.map-wrapper iframe {
    border-radius: calc(var(--radius-lg) - 12px);
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.8);
    z-index: -1;
}

.cta-logo {
    margin-bottom: 24px;
}

.cta-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

.cta-logo-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.cta-logo-specialty {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 5px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.cta-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-title span {
    color: var(--accent-color);
}

.cta-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--text-color);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes floatReverse {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

.float-anim-reverse {
    animation: floatReverse 5s ease-in-out infinite;
}

/* Scroll Reveals */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

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

/* Base fade-ins for hero */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s forwards;
    animation-delay: 0.6s;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badge { margin: 0 auto 24px; }
    .hero-trust { justify-content: center; }
    
    .hero-stats {
        position: static;
        flex-direction: row;
        transform: none;
        justify-content: center;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .ps-container, .offer-wrapper {
        grid-template-columns: 1fr;
    }

    .ps-images {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .hero-image-oval {
        width: 300px;
        height: 400px;
    }
    
    .timeline::before {
        left: 20px;
    }
    .tl-number {
        left: -4px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .timeline-item {
        padding-left: 60px;
    }

    .bonus-box {
        flex-direction: column;
        text-align: center;
    }

    .offer-wrapper {
        padding: 30px;
    }
    
    .floating-badge {
        display: none;
    }

    /* Mobile Navbar Styling */
    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1005;
        border-left: 1px solid rgba(114, 119, 85, 0.1);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu a {
        font-size: 1.15rem;
    }

    .navbar-cta {
        display: none;
    }

    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Hero Floating Card Styles */
    .hero-floating-card {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        bottom: -20px !important;
        width: calc(100% - 32px) !important;
        max-width: 320px !important;
        padding: 12px 16px !important;
    }

    .hero-floating-card.float-anim {
        animation: floatMobile 4s ease-in-out infinite !important;
    }
}

@keyframes floatMobile {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
    100% { transform: translate(-50%, 0); }
}
