:root {
    /* Colors based on logo and premium requirements - more depth */
    --bg-deep: #000000;
    --bg-dark: #070707;
    --bg-card: #111111;
    --bg-section-alt: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-blue: #0095f6;
    --accent-blue-light: #58c1ff;
    --gradient-blue: linear-gradient(135deg, #0095f6 0%, #58c1ff 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #151515 100%);
    --gradient-card: linear-gradient(145deg, #161616 0%, #0a0a0a 100%);

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

    --bg-light: #ffffff;
    --text-dark: #121212;
    --text-muted: #555555;

    /* Spacing & Borders */
    --container-width: 1200px;
    --border-radius: 20px;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

.text-gradient-dark {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.15em;
    margin-bottom: -0.15em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 1rem;
    gap: 12px;
}

.icon-wa {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 149, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 149, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-header-white {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-header-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-black-gradient {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-black-gradient:hover {
    background: linear-gradient(135deg, #111111 0%, #444444 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

section {
    padding: 80px 0;
    scroll-margin-top: 130px;
    /* Aligns content correctly below the fixed header */
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
        scroll-margin-top: 220px;
        /* Increased offset for the taller mobile header if needed */
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.logo {
    height: 80px;
    width: auto;
    transition: var(--transition-smooth);
}

.footer .logo {
    height: 100px;
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    background-image: url('assets/hero-new-concept.png');
    background-size: 100% auto;
    /* Force width to fit, height to scale naturally */
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-top: 170px;
    /* Compensates for ~120px header + 50px gap */
    padding-bottom: 50px;
    /* Equal visual gap of 50px */
    position: relative;
    overflow: hidden;
}

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

.hero-inner {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Increased to allow more text per line */
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    /* Balanced size for longer lines */
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    max-width: 100%;
    margin-inline: auto;
}

.hero-subtitle {
    font-size: 1.15rem;
    /* Slightly smaller for better contrast */
    color: var(--text-muted);
    max-width: 750px;
    margin-inline: auto;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* .hero-blueprint-container removed as background is now a single image */

@media (max-width: 968px) {
    .hero-blueprint-container {
        opacity: 0.3;
    }
}

/* WhatsApp Mockup Section */
.whatsapp-mockup {
    background: var(--bg-section-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.whatsapp-mockup.light-section {
    background: var(--bg-light);
    color: var(--text-dark);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-mockup.light-section .section-title {
    color: var(--text-dark);
}

.whatsapp-mockup.light-section .mockup-features li {
    color: var(--text-muted);
}

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.mockup-features {
    list-style: none;
    margin-bottom: 32px;
    margin-top: 32px;
}

.mockup-features li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    color: var(--text-dark);
}

/* iPhone Mockup - True Apple Style */
.mockup-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.iphone-mockup {
    width: 300px;
    height: 610px;
    background: #1a1a1a;
    border: 8px solid #333;
    border-radius: 46px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
}

/* Side Buttons */
.iphone-btn-power {
    position: absolute;
    right: -11px;
    top: 160px;
    width: 3px;
    height: 60px;
    background: #333;
    border-radius: 0 4px 4px 0;
}

.iphone-btn-vol-up,
.iphone-btn-vol-down {
    position: absolute;
    left: -11px;
    width: 3px;
    height: 35px;
    background: #333;
    border-radius: 4px 0 0 4px;
}

.iphone-btn-vol-up {
    top: 120px;
}

.iphone-btn-vol-down {
    top: 165px;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 4px solid #000;
}

.dynamic-island {
    position: absolute;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
}

.iphone-status-bar {
    height: 44px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    color: #000000;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 90;
}

.status-time {
    margin-top: 2px;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-network {
    font-size: 10px;
    font-weight: 700;
}

.status-battery {
    width: 22px;
    height: 10px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 3px;
    padding: 1px;
    position: relative;
}

.status-battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 2px;
    width: 2px;
    height: 4px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 0 1px 1px 0;
}

.battery-level {
    width: 70%;
    height: 100%;
    background: #000;
    border-radius: 1px;
}

.wa-header {
    background: #ffffff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111b21;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wa-back {
    color: #007aff;
    /* Apple Blue for WA back button */
    stroke: #007aff;
}

.wa-avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: #eee;
}

.wa-status {
    display: flex;
    flex-direction: column;
}

.wa-online {
    display: block;
    font-size: 11px;
    color: #667781;
}

.wa-name {
    font-weight: 600;
    font-size: 14px;
    color: #111b21;
}



.wa-chat-area {
    flex: 1;
    padding: 15px;
    background-image: url('assets/whatsapp-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    gap: 10px;
    scroll-behavior: smooth;
}

.wa-chat-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}

.wa-message {
    background: #ffffff;
    color: #000;
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.35;
    max-width: 75%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    align-self: flex-start;
    animation: messageIn 0.3s cubic-bezier(0.1, 0.7, 0.1, 1);
}

.wa-message.outgoing {
    background: #e1ffc7;
    align-self: flex-end;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wa-chat-options {
    padding: 12px;
    background: rgba(242, 242, 247, 0.9);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.wa-option {
    background: #ffffff;
    color: #007aff;
    padding: 10px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.wa-option:active {
    background: #f2f2f7;
}

.wa-input-ios {
    background: rgba(242, 242, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px 30px;
    /* Space for home indicator */
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wa-input-field {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
}

.wa-placeholder {
    color: #8e8e93;
    font-size: 15px;
}

/* iOS Home Indicator */
.iphone-screen::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #000;
    border-radius: 10px;
    opacity: 0.8;
}

.wa-send {
    display: none;
}

/* Feature List Refinements */
.mockup-features {
    list-style: none;
    margin-bottom: 30px;
}

.mockup-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.mockup-features svg {
    flex-shrink: 0;
}

/* Pulse Animation */
.btn-pulse {
    animation: pulseSlight 2.5s infinite ease-in-out;
}

@keyframes pulseSlight {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Problem Section */
.problem {
    background: var(--bg-deep);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.problem-card {
    background: var(--gradient-card);
    padding: 50px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.problem-transition {
    font-size: 1.35rem;
    margin-bottom: 40px;
}

/* Solution Section */
.solution {
    background: var(--bg-light);
    color: var(--text-dark);
}

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

.solution .section-title {
    color: var(--text-dark);
}

.light-section .section-subtitle {
    color: var(--text-muted);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.solution-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.solution-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.solution-card p {
    color: var(--text-muted);
}

.solution-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

/* Gallery Section */
.gallery {
    background: var(--bg-dark);
    padding-top: 40px;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: var(--text-secondary);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-deep);
    padding-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Process Section */
.process {
    background: var(--bg-deep);
    background-image:
        linear-gradient(rgba(0, 149, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 149, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process .section-subtitle {
    color: var(--text-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    /* Reduced vertical padding */
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 149, 246, 0.1);
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* More subtle shadow */
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(0, 149, 246, 0.15);
}

.step-number {
    font-size: 2.2rem;
    /* Scaled down number */
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
    opacity: 1;
}

.step h3 {
    font-size: 1rem;
    /* Balanced title size */
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.step p {
    color: var(--text-muted);
    font-size: 0.88rem;
    /* Slightly smaller text for better proportions */
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 2.5rem;
    }
}

/* FAQ Section */
.faq {
    background: linear-gradient(to bottom, #111111 0%, #000000 100%);
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

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

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
    font-weight: 300;
    transition: var(--transition-smooth);
}

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

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

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

/* Final CTA Section */
.final-cta {
    background-color: #ffffff;
    background-image:
        linear-gradient(rgba(128, 128, 128, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 128, 128, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.05), rgba(255, 255, 255, 1));
    background-size: 40px 40px, 40px 40px, 100% 100%;
    padding: 100px 0;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box::after {
    display: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-title .text-gradient-dark {
    background: linear-gradient(135deg, #000000 0%, #444444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-large {
    padding: 24px 48px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 80px 0 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1.2fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 0;
}

.footer-info p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    max-width: 300px;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.footer-copyright p {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
}

.ativa-credit-line {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.ativa-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.ativa-link:hover .ativa-logo {
    opacity: 0.7;
}

.ativa-logo {
    height: 14px;
    width: auto;
    vertical-align: middle;
    transition: var(--transition-smooth);
}

.footer-links h4,
.footer-hours h4 {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-links p {
    margin-bottom: 10px;
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    word-break: break-word;
}

.footer-link:hover {
    color: var(--accent-blue);
}

.hours-list {
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hours-list li {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.hours-list span {
    font-weight: 600;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.trust-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.trust-icons span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link:hover {
    color: var(--accent-blue);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-info p {
        margin-inline: auto;
    }
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 968px) {
    .mockup-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .mockup-features li {
        padding-left: 0;
    }

    .mockup-features li::before {
        position: static;
        margin-right: 8px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
        /* Hide desktop nav on small tablets/mobile */
    }

    .header-content {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 8px;
        padding-bottom: 5px;
    }

    .logo {
        height: 60px;
        /* Smaller logo on mobile */
    }

    .contact-link {
        font-size: 0.85rem;
        padding: 10px 20px;
        width: auto;
        /* Don't force full width in header */
    }

    .hero {
        padding-top: 180px;
        /* Increased to avoid header overlap */
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }

    /* Disable manual line breaks in hero title on mobile for better flow */
    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 16px 24px;
    }

    .problem-card {
        padding: 40px 20px;
    }

    .problem-transition {
        font-size: 1.2rem;
    }

    .cta-box {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

/* Footer Regions SEO */
.footer-regions {
    background: #050505;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    /* Cinza discreto e charmoso */
    line-height: 1.6;
}

.footer-regions p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-regions strong {
    font-weight: 500;
    color: inherit;
}

/* Video Placeholders */
.video-placeholder-ui {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-secondary);
    pointer-events: none;
}

.play-icon {
    display: block;
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 10px;
    opacity: 0.8;
}

.video-placeholder-ui p {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.placeholder-video {
    background: #0a0a0a !important;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}