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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

.beta-highlight {
    color: #d32f2f !important;
    font-weight: bold !important;
    border-radius: 4px;
    background: none !important;
    padding: 0.5rem 1rem;
    transition: color 0.2s;
}

.cta-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Beta Disclaimer Popup Styles */
.beta-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.beta-popup-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 520px;
    width: min(92vw, 520px);
    max-height: calc(100vh - 80px);
    padding: 2.25rem 1.25rem 1.25rem 1.25rem;
    padding-top: calc(2.25rem + env(safe-area-inset-top));
    position: relative;
    text-align: left;
    font-size: 1.1rem;
    color: #333;
    animation: fadeIn 0.4s;
    overflow: auto;
}
.beta-popup-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #764ba2;
}
.beta-popup-content p {
    line-height: 1.6;
}
.beta-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #764ba2;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1;
}
.beta-popup-close:hover {
    color: #333;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
}
.bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100%;
  min-height: 100vh;
  background: rgba(0,0,0,0.4);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.highlight {
  background: linear-gradient(135deg, #a8ff78 0%, #78ffd6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: #f0f0f0;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px; /* Fixed height container */
    display: flex;
    align-items: center;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}



.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

.service-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.service-info p {
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 600;
}

.time-left {
    font-size: 0.7rem;
    color: #ff6b6b;
    font-weight: 500;
}

/* Como Funciona */
.how-it-works {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 4rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.tagline {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: white;
}

.tagline h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

/* Para Quem É */
.target-audience {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.audience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-header {
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.card-content {
    padding: 2rem;
}

.card-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.benefits i {
    color: #28a745;
    font-size: 1.1rem;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Exemplo Prático */
.example {
    padding: 6rem 0;
    background: white;
}

.example-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-screen {
    background: #000;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.app-header {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.map-view {
    background: #f0f0f0;
    border-radius: 15px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.location-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pin-icon {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.pin-popup {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
}

.pin-popup h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pin-popup .service {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.time-remaining {
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.whatsapp-small {
    width: 16px;
    height: 16px;
}

.example-quote {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
}

.example-quote i {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.example-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

.example-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit i {
    color: #667eea;
    font-size: 1.25rem;
}

.benefit span {
    font-weight: 500;
    color: #333;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.cta-card {
    background: white;
    color: #333;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #667eea;
}

.cta-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signup-form input {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.signup-form input:focus {
    outline: none;
    border-color: #667eea;
}

.signup-form button {
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.4;
    font-size: 0.9rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.link-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.link-group a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: #ccc;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Extend background video to cover taller mobile content */
    .bg-video,
    .bg-overlay {
        height: 160vh;
        min-height: 160vh;
    }

    /* Hide hero visual (map image and floating cards) on mobile */
    .hero-visual {
        display: none;
    }

    .floating-card {
        position: static;
        margin: 1rem auto;
        width: calc(100% - 32px);
        min-width: 0;
        animation: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .example-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .example-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Keep floating cards within image area on tablets and small laptops */
@media (max-width: 1024px) {
    .hero-visual {
        height: auto;
    }
    .map-image {
        height: 320px;
    }
    /* Avoid negative offsets pushing cards outside on narrower screens */
    .card-1 { right: 2%; }
    .card-2 { left: 2%; }
}

/* Phone tweaks: simplify hero visual and prevent overflow */
@media (max-width: 600px) {
    .hero-visual {
        height: auto;
    }
    .map-image {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .beta-popup-content {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 40px);
        padding: 2rem 1rem 1rem 1rem;
        font-size: 1rem;
    }
    .beta-popup-content h2 {
        font-size: 1.1rem;
        margin-right: 2rem;
    }
    .beta-popup-close {
        font-size: 1.6rem;
        top: 0.25rem;
        right: 0.25rem;
    }
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .audience-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-cards {
        grid-template-columns: 1fr;
    }
}



/* Novos estilos para WhatsApp Feature */
.whatsapp-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #25d366;
}

.whatsapp-icon-large {
    flex-shrink: 0;
}

.whatsapp-large {
    width: 60px;
    height: 60px;
}

.whatsapp-text h4 {
    color: #25d366;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.whatsapp-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Novos estilos para o mockup do exemplo prático */
.phone-mockup-large {
    max-width: 400px;
    margin: 0 auto;
}

.app-mockup {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-mockup:hover {
    transform: scale(1.05);
}

.example-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.example-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Estilos para WhatsApp Demo */
.whatsapp-demo {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 15px;
}

.whatsapp-bubble {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: white;
    padding: 1rem;
    border-radius: 20px 20px 20px 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.whatsapp-mini {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.ai-response {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #667eea;
    color: white;
    padding: 1rem;
    border-radius: 20px 20px 5px 20px;
    font-size: 0.9rem;
    margin-left: 2rem;
}

.ai-response i {
    font-size: 1.2rem;
}

/* Responsividade para novos elementos */
@media (max-width: 768px) {
    .whatsapp-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .example-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phone-mockup-large {
        max-width: 300px;
    }
    
    .feature-list {
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-demo {
        margin: 1rem 0;
    }
    
    .ai-response {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-large {
        width: 40px;
        height: 40px;
    }
    
    .phone-mockup-large {
        max-width: 250px;
    }
    
    .whatsapp-bubble,
    .ai-response {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
}

.whatsapp-highlight {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  font-size: 1.05em;
}

/* Manifesto Page Styles */
.manifesto-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.manifesto-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.manifesto-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.manifesto-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
}

.manifesto-content-section {
    padding: 6rem 0;
    background: #fafafa;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.manifesto-cta {
    margin-top: 4rem;
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Typography-focused Text Styles */
.manifesto-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2c3e50;
}

.manifesto-paragraph {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.manifesto-opening {
    margin-bottom: 4rem;
}

.opening-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2.2;
    color: #000000;
    text-align: center;
    margin-bottom: 2rem;
}

.opening-text em {
    font-style: italic;
    font-weight: 600;
    color: #667eea;
}

.contrast-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #2c3e50;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.contrast-text strong {
    color: #667eea;
    font-weight: 700;
}

.local-text {
    font-size: 1.2rem;
    line-height: 2.1;
    color: #27ae60;
    text-align: center;
    font-weight: 500;
    margin: 2.5rem 0;
}

.local-text strong {
    color: #2ecc71;
    font-weight: 700;
}

.physical-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #8e44ad;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

.physical-text strong {
    color: #9b59b6;
    font-weight: 700;
}

.purpose-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #e67e22;
    text-align: center;
    font-weight: 500;
    margin: 2.5rem 0;
}

.brand-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    color: #d35400;
    display: block;
    margin-bottom: 1rem;
}

.purpose-text strong {
    color: #f39c12;
    font-weight: 700;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 2;
    color: #2980b9;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 2rem 0;
}

.vision-text strong {
    color: #3498db;
    font-weight: 700;
}

.signature-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

/* Manifesto Section (for backward compatibility) */
.manifesto {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.manifesto-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-header {
    margin-bottom: 4rem;
}

.manifesto-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.manifesto-text {
    text-align: left;
    line-height: 1.8;
}

.manifesto-paragraph {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.manifesto-paragraph p {
    margin: 0;
    line-height: 1.9;
}

.manifesto-paragraph:first-child p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f0f0f0;
}

.manifesto-signature {
    margin-top: 4rem;
    text-align: center;
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
}

.manifesto-signature p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Responsive adjustments for manifesto */
@media (max-width: 768px) {
    .manifesto-hero {
        padding: 6rem 0 3rem;
    }
    
    .manifesto-hero-title {
        font-size: 3rem;
    }
    
    .manifesto-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .manifesto-content-section {
        padding: 4rem 0;
    }
    
    .manifesto-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .manifesto-paragraph {
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }
    
    .opening-text {
        font-size: 1.2rem;
        line-height: 2;
    }
    
    .contrast-text,
    .physical-text,
    .vision-text {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .local-text,
    .purpose-text {
        font-size: 1.1rem;
        margin: 2rem 0;
    }
    
    .brand-highlight {
        font-size: 1.2rem;
    }
    
    .signature-text {
        font-size: 1.3rem;
        margin: 2.5rem 0;
    }
    
    .manifesto {
        padding: 4rem 0;
    }
    
    .manifesto-header h2 {
        font-size: 2.5rem;
    }
    
    .manifesto-paragraph:first-child p {
        font-size: 1.1rem;
    }
    
    .manifesto-signature p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .manifesto-hero-title {
        font-size: 2.5rem;
    }
    
    .manifesto-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .manifesto-paragraph {
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }
    
    .opening-text {
        font-size: 1.1rem;
        line-height: 1.9;
    }
    
    .contrast-text,
    .physical-text,
    .vision-text {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }
    
    .local-text,
    .purpose-text {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    
    .brand-highlight {
        font-size: 1.1rem;
    }
    
    .signature-text {
        font-size: 1.2rem;
        margin: 2rem 0;
    }
    
    .manifesto-header h2 {
        font-size: 2rem;
    }
    
    .manifesto-paragraph:first-child p {
        font-size: 1rem;
    }
    
    .manifesto-signature p {
        font-size: 1.1rem;
    }
}

/* Paper Sheet Typewriter Effect */
.paper-sheet {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 400px;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.paper-sheet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.typewriter-paragraph {
    margin-bottom: 1.5rem;
    min-height: 1.8em;
    position: relative;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
}

.typewriter-cursor {
    color: #667eea;
    font-weight: bold;
    animation: blink 1s infinite;
    font-size: 1.2em;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Completion animation */
.typing-complete {
    animation: paperComplete 0.8s ease-out;
}

@keyframes paperComplete {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Paper sheet container */
.manifesto-text {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Enhanced typography for typewriter effect */
.opening-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 2;
}

.contrast-text {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 500;
}

.local-text {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 500;
}

.physical-text {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 500;
}

.purpose-text {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 500;
}

.vision-text {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 500;
}

.signature-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    border: 2px solid #667eea;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .paper-sheet {
        font-size: 1rem;
        padding: 2rem;
        min-height: 300px;
    }
    
    .manifesto-text {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .paper-sheet {
        font-size: 0.95rem;
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .manifesto-text {
        padding: 1rem;
    }
}

/* Service Tabs */
.service-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tab-button i {
    font-size: 1.2rem;
}

/* Tab Content */
.tab-content {
    position: relative;
    height: 300px; /* Fixed height */
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    height: 300px; /* Match parent height */
}

.tab-pane.active {
    display: block;
}

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

.tab-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.tab-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.tab-description ul {
    list-style: none !important;
    padding-left: 0;
    margin: 1rem 0;
}

.tab-description li {
    color: #fff;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    list-style: none !important;
    list-style-type: none !important;
}

.tab-description li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Overview */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-overview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-overview:hover {
    transform: translateY(-5px);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-icon-large {
    font-size: 2.5rem;
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

/* Example Tabs */
.example-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.example-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.example-tab:hover {
    border-color: #667eea;
    color: #667eea;
}

.example-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.example-content {
    position: relative;
    min-height: 400px;
}

.example-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.example-pane.active {
    display: block;
}

/* Vox Mockup */
.vox-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.vox-feed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vox-post {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.vox-post.business {
    border-left-color: #28a745;
    background: #f8fff9;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-header i {
    font-size: 1.2rem;
    color: #667eea;
}

.post-header .location {
    color: #666;
    font-size: 0.8rem;
    margin-left: auto;
}

.vox-post p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    gap: 1rem;
}

.post-actions button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.post-actions button:hover {
    color: #667eea;
}

/* Vitrines Mockup */
.vitrines-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.space-listing {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
}

.space-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.space-details {
    padding: 1.5rem;
}

.space-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.space-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.space-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
}

/* Service Highlights */
.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.highlight-item i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
    }
    
    .example-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .example-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .vox-mockup,
    .vitrines-mockup {
        margin: 1rem;
    }
    
    .tab-title {
        font-size: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-tabs {
        margin: 1rem 0;
    }
    
    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .tab-title {
        font-size: 1.8rem;
    }
    
    .tab-description {
        font-size: 1rem;
    }
    
    .service-overview {
        padding: 1.5rem;
    }
    
    .vox-post,
    .space-details {
        padding: 1rem;
    }
}


