/* ==========================================================================
   LGO ADVOCACIA - Landing Page Style System (WhatsApp Conversion Focused)
   Theme: Deep Navy Blue & Premium Gold
   ========================================================================== */

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

/* CSS Variables */
:root {
    --bg-primary: #040814;
    --bg-secondary: #0a1124;
    --bg-light-navy: #101c38;
    --card-bg: rgba(16, 28, 56, 0.6);
    --card-hover-bg: rgba(22, 38, 76, 0.85);
    
    --color-primary: #f8fafc;
    --color-muted: #94a3b8;
    --color-light: #cbd5e1;
    
    --gold-primary: #c5a880;
    --gold-hover: #e5c090;
    --gold-dark: #8e7249;
    --gold-light: rgba(197, 168, 128, 0.12);
    --gold-glow: rgba(197, 168, 128, 0.35);
    
    --youtube-red: #ff0000;
    --youtube-hover: #cc0000;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #128c7e;
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    
    --max-width: 1200px;
}

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

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

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

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

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

ul {
    list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-light-navy);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Global Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: clamp(60px, 8vw, 100px) 0;
}

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

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

.gold-gradient-text {
    background: linear-gradient(135deg, #fff3d1 0%, var(--gold-primary) 50%, #ab8043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--color-light);
    max-width: 750px;
    margin: 15px auto 50px auto;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(4, 8, 20, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-smooth);
}

header.scrolled .header-container {
    height: 75px;
}

.logo img {
    height: clamp(40px, 5vw, 56px);
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 44px;
}

.nav-menu {
    display: flex;
    gap: clamp(15px, 2.5vw, 30px);
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-light);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 22px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(14px, 2vw, 18px) clamp(24px, 3vw, 36px);
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.25);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.45);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--color-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-youtube {
    background-color: var(--youtube-red);
    color: #ffffff;
    border: 2px solid var(--youtube-red);
}

.btn-youtube:hover {
    background-color: var(--youtube-hover);
    border-color: var(--youtube-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-whatsapp-large {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border: 2px solid var(--whatsapp-green);
    font-size: 1.05rem;
    padding: 18px 45px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-large:hover {
    background-color: var(--whatsapp-green-hover);
    border-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

/* Hero Section (Fully Centered, No Photo) */
.hero {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(21, 44, 91, 0.3) 0%, rgba(4, 8, 20, 1) 70%);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 24px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--color-light);
    margin-bottom: 45px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 3vw, 30px);
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    max-width: 650px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--color-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--gold-primary);
}

/* Statistics Banner ("LGO em Números") */
.stats-banner {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding: 50px 0;
    position: relative;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-num {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    color: var(--color-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Storytelling Alternating Section: Profiles + Videos combined */
.story-profiles {
    background-color: var(--bg-primary);
    position: relative;
}

.story-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 70px);
    align-items: center;
    margin-bottom: clamp(60px, 8vw, 100px);
}

.story-row:last-child {
    margin-bottom: 0;
}

.story-content {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: clamp(30px, 5vw, 50px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    position: relative;
}

.story-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--gold-primary);
    border-top-left-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
}

.story-row:hover .story-content {
    background-color: var(--card-hover-bg);
    border-color: rgba(197, 168, 128, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.story-icon {
    width: 54px;
    height: 54px;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.story-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.story-desc {
    color: var(--color-light);
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    margin-bottom: 30px;
    line-height: 1.6;
}

.story-list {
    margin-bottom: 35px;
}

.story-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(0.9rem, 1.6vw, 0.98rem);
    margin-bottom: 16px;
    color: var(--color-light);
}

.story-list-item i {
    color: var(--gold-primary);
    margin-top: 5px;
    font-size: 0.95rem;
}

.story-button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.story-button-group .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
}

/* Upgraded Video Thumbnails with Glowing Play Buttons */
.story-video {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16/9;
    background-color: #000;
    transition: var(--transition-smooth);
    width: 100%;
}

.story-row:hover .story-video {
    border-color: rgba(197, 168, 128, 0.35);
    box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.video-thumbnail-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-thumbnail-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.75);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(4, 8, 20, 0.85);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 25px var(--gold-glow);
    transition: var(--transition-smooth);
    z-index: 5;
}

.video-thumbnail-card:hover .video-play-overlay {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 35px var(--gold-primary);
}

.video-play-overlay i {
    margin-left: 4px; /* visually center play icon */
}

/* Alternating rows logic */
.story-row.reverse .story-video {
    order: 1;
}

.story-row.reverse .story-content {
    order: 2;
}

/* About Us Section */
.about {
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(40px, 6vw, 70px);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(197, 168, 128, 0.25);
}

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

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

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: var(--bg-light-navy);
    border: 2px solid var(--gold-primary);
    padding: 16px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.about-exp-num {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 2px;
}

.about-exp-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.about-content h3 {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-bio {
    color: var(--color-light);
    margin-bottom: 25px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.7;
}

.credentials {
    margin-bottom: 35px;
}

.credential-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.credential-icon {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-top: 3px;
}

.credential-text h5 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    margin-bottom: 4px;
}

.credential-text p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.values-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-light);
}

.value-item i {
    color: var(--gold-primary);
}

/* FAQ Accordion Section */
.faq {
    background-color: var(--bg-primary);
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0 auto;
    padding: 0 10px;
}

.faq-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(197, 168, 128, 0.25);
    background-color: var(--card-hover-bg);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--font-title);
    font-size: clamp(1.05rem, 2vw, 1.18rem);
    font-weight: 700;
    color: var(--color-primary);
    padding-right: 15px;
}

.faq-icon {
    font-size: 1.1rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0 30px;
}

.faq-answer {
    padding-bottom: 24px;
    color: var(--color-light);
    font-size: clamp(0.9rem, 1.6vw, 0.95rem);
    line-height: 1.6;
}

.faq-item.active {
    border-color: rgba(197, 168, 128, 0.35);
    background-color: var(--card-hover-bg);
}

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

/* Contact Section (Pure WhatsApp Focus, No Email Form) */
.contact {
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 6vw, 60px);
    margin-top: 50px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-card {
    background-color: var(--bg-light-navy);
    border-radius: var(--border-radius-lg);
    padding: clamp(30px, 4vw, 45px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-card h4 {
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-box {
    width: 54px;
    height: 54px;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(197, 168, 128, 0.25);
    flex-shrink: 0;
}

.contact-text-box span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text-box a {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 700;
}

.contact-text-box a:hover {
    color: var(--gold-primary);
}

.contact-map-placeholder {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    margin-top: 30px;
}

.contact-map-placeholder i {
    font-size: 2.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.contact-map-placeholder h5 {
    font-family: var(--font-title);
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-map-placeholder p {
    font-size: 0.9rem;
    color: var(--color-light);
    line-height: 1.5;
}

/* Upgraded WhatsApp Lead Conversion Card */
.whatsapp-conversion-card {
    background-color: rgba(16, 28, 56, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: clamp(35px, 6vw, 60px);
    border: 1px solid rgba(37, 211, 102, 0.3); /* Green subtle border for WhatsApp focus */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.whatsapp-conversion-card:hover {
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 25px 60px rgba(37, 211, 102, 0.1);
}

.whatsapp-status-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-status-online .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--whatsapp-green);
    animation: simplePulse 1.5s infinite;
}

.whatsapp-conversion-card h3 {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.25;
}

.whatsapp-conversion-card p {
    color: var(--color-light);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    margin-bottom: 35px;
    line-height: 1.65;
}

/* Minimalist signature instead of footer */
.minimal-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 80px;
    padding-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.minimal-disclaimer p {
    margin-bottom: 10px;
}

/* Upgraded Floating WhatsApp Widget with Badge */
.whatsapp-float-wrapper {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 999;
}

.whatsapp-online-badge {
    background-color: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
    position: relative;
}

.whatsapp-online-badge::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 22px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

.whatsapp-online-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: inline-block;
    animation: simplePulse 1.5s infinite;
}

.whatsapp-float-btn {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: floatBtn 3s ease-in-out infinite;
}

.whatsapp-float-wrapper:hover .whatsapp-float-btn {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(45px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes simplePulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px var(--whatsapp-green); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

/* Responsive Breakpoints & Clean Screen Refinement */
@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .story-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-row.reverse .story-video {
        order: 0;
    }
    .story-row.reverse .story-content {
        order: 0;
    }
    .story-video, .story-content {
        max-width: 680px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-info, .whatsapp-conversion-card {
        max-width: 680px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 75px;
    }
    .logo img {
        height: 44px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: var(--bg-secondary);
        padding: 30px 24px;
        border-bottom: 3px solid var(--gold-primary);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    .nav-menu.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }
    .hero-tagline {
        padding: 6px 14px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-trust-row {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .story-content {
        padding: 30px 20px;
    }
    .story-button-group {
        flex-direction: column;
        width: 100%;
    }
    .story-button-group .btn {
        width: 100%;
    }
    .about-experience {
        padding: 12px 20px;
        right: 0;
        bottom: -15px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .whatsapp-conversion-card {
        padding: 35px 20px;
    }
    .btn-whatsapp-large {
        width: 100%;
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    .faq-header {
        padding: 20px;
    }
    .faq-body {
        padding: 0 20px;
    }
    .faq-answer {
        padding-bottom: 20px;
    }
    .whatsapp-float-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }
    .whatsapp-online-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}
