﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Montserrat:wght@400;700&display=swap');

:root {
    --bg-color: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #E0E0E0;
    --accent-color: #00E5FF;
    --whatsapp-color: #25D366;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    font-weight: 700;
}

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

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 15px var(--accent-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--whatsapp-color);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

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

/* Header */
header {
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-main);
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.15);
    line-height: 0;
}

.hero-office-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(1.1);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-image-wrapper:hover .hero-office-img {
    transform: scale(1.04);
    filter: brightness(1) saturate(1.2);
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 229, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-main);
    letter-spacing: 0.5px;
    line-height: 1;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 8px var(--accent-color);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}



/* Services / Templates Section */
.services {
    padding: 100px 0;
    background: #0a0f1e;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-family: var(--font-main);
    margin-bottom: 14px;
}

.section-title-left {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 60px;
    font-family: var(--font-main);
}

/* 3-Column Card Grid */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.template-card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: var(--transition);
}

.template-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 229, 255, 0.1);
}

.template-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    line-height: 0;
}

.template-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.template-card:hover .template-card-img img {
    transform: scale(1.06);
    filter: brightness(1);
}

.template-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
}

.template-card-body h3 {
    font-size: 1.25rem;
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.template-card-body p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}

.template-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-weight: 700;
    font-family: var(--font-main);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 6px;
    transition: gap 0.25s ease, opacity 0.25s ease;
}

.template-link:hover {
    gap: 10px;
    opacity: 0.85;
}

.link-arrow {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.template-link:hover .link-arrow {
    transform: translateX(4px);
}


/* ── Como Funciona ─────────────────────────────── */
.howit {
    padding: 100px 0;
    background: #0a0f1e;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0 20px;
    margin-top: 16px;
}

.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 229, 255, 0.08);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-main);
    letter-spacing: 2px;
    color: var(--accent-color);
    opacity: 0.7;
}

.step-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.15rem;
    font-family: var(--font-main);
    color: var(--text-primary);
    margin: 0;
}

.step-card p {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    color: rgba(0, 229, 255, 0.35);
    font-size: 1.8rem;
    font-weight: 300;
}

.step-connector::after {
    content: '→';
}

/* ── FAQ ────────────────────────────────────────── */
.faq-section {
    padding: 100px 0;
    background: #070b17;
}

.faq-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease;
}

.faq-item.open {
    border-color: rgba(0, 229, 255, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* CTA Section */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #060c1a 0%, #0d1b35 50%, #060c1a 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid rgba(0, 229, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.cta-title {
    font-size: 2.6rem;
    line-height: 1.2;
    max-width: 680px;
    font-family: var(--font-main);
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.cta-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-note {
    font-size: 0.85rem;
    color: #4a5568;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.icon {
    width: 24px;
    height: 24px;
    fill: white;
    transition: var(--transition);
}

.icon:hover {
    fill: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-office-img {
        height: 260px;
    }

    .templates-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 31px;
    }

    .step-connector {
        display: none;
    }

    .section-title-left {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}