/* =======================
   RESET & VARIABLES
======================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0B1017;
    --bg-2: #111827;
    --bg-3: #18202B;
    --surface: #1D2633;
    --surface-2: #232E3D;
    --primary: #7C5CFF;
    --primary-light: #A78BFA;
    --secondary: #4FC3F7;
    --accent: #D946EF;
    --success: #22C55E;
    --text: #F5F7FA;
    --text-muted: #AEB8C8;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 6px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* =======================
   GLOBAL
======================= */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-padding {
    padding: 90px 0;
}

.tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--text);
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.7;
}

/* buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transition: var(--transition);
    border: 1px solid transparent;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(124, 92, 255, 0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(124, 92, 255, 0.08);
}

/* =======================
   SCROLL PROGRESS
======================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 10000;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.1s linear;
}

/* =======================
   NAVBAR
======================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 78px;
    background: rgba(17, 24, 39, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
}
.navbar.scrolled {
    height: 64px;
    background: rgba(11, 16, 23, 0.88);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
}
.navbar-logo .symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.navbar-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.navbar-links a:hover,
.navbar-links a.active {
    color: var(--text);
    border-bottom-color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}
.navbar-actions .btn-login {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    background: transparent;
}
.navbar-actions .btn-login:hover {
    border-color: var(--primary);
    color: var(--text);
}
.navbar-actions .btn-orcamento {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transition: var(--transition);
    border: 1px solid transparent;
}
.navbar-actions .btn-orcamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.25);
}

/* mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: transparent;
    border: none;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =======================
   HERO SHOWCASE - DIAGONAL
======================= */
.hero {
    min-height: 720px;
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 10%, rgba(124, 92, 255, 0.13), transparent 34%),
        radial-gradient(circle at 85% 65%, rgba(79, 195, 247, 0.10), transparent 30%),
        linear-gradient(180deg, #0b1017, #111827);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-showcase {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 1480px;
    height: 520px;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    padding: 0 20px;
}

.showcase-panel {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    transition:
        flex 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.4s ease,
        transform 0.4s ease;
    filter: brightness(0.5) saturate(0.7);
    position: relative;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(28px);
}

.showcase-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-panel:first-child {
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
    border-left: none;
}

.showcase-panel:last-child {
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    border-right: none;
}

.showcase-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(7, 11, 18, 0.06) 20%,
            rgba(7, 11, 18, 0.84) 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.showcase-panel:hover::before {
    opacity: 0.72;
}

.showcase-panel .panel-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 24px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

.showcase-panel:hover .panel-label {
    opacity: 1;
    transform: translateY(0);
}

.showcase-panel .panel-label span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-light);
    font-weight: 600;
}

.showcase-panel .panel-label h3 {
    margin-top: 4px;
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.showcase-panel .panel-label .btn-view-template {
    margin-top: 8px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background: rgba(124, 92, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(4px);
}

.showcase-panel:hover .panel-label .btn-view-template {
    background: rgba(124, 92, 255, 0.45);
    border-color: var(--primary);
}

.showcase-panel .panel-label .btn-view-template:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* hover effect on all panels */
.hero-showcase:hover .showcase-panel {
    filter: brightness(0.32) saturate(0.55);
}

.hero-showcase .showcase-panel:hover {
    flex: 2.2;
    filter: brightness(1) saturate(1);
    z-index: 10;
}

/* =======================
   HERO TEXT OVERLAY
======================= */
.hero-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 35%;
    z-index: 20;
}

.hero-text::before {
    content: "";
    position: absolute;
    inset: -40px -80px -40px -40px;
    z-index: -1;
    background:
        radial-gradient(circle at left bottom,
            rgba(11, 16, 23, 0.98),
            rgba(11, 16, 23, 0.76) 45%,
            transparent 76%);
    pointer-events: none;
}

.hero-text .tag {
    margin-bottom: 8px;
    display: inline-block;
    color: var(--secondary);
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin: 6px 0 12px;
    color: #fff;
}

.hero-text h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 400px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btns .btn-primary {
    padding: 12px 32px;
    font-size: 0.8rem;
}

.hero-btns .btn-outline {
    padding: 12px 32px;
    font-size: 0.8rem;
}

/* =======================
   BENEFITS BAR
======================= */
.benefits-bar {
    background: rgba(124, 92, 255, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(29, 20, 70, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    padding: 16px 0;
    overflow: hidden;
}
.benefits-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    padding: 0 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    flex: 1 0 auto;
    justify-content: center;
}
.benefits-list li:last-child {
    border-right: none;
}
.benefits-list li .icon {
    font-size: 1.2rem;
}

/* =======================
   TEMPLATE CATALOG
======================= */
.catalog-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}
.filter-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 2px;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
}
.filter-btn.active {
    color: var(--text);
    border-bottom-color: var(--primary);
}
.filter-btn:hover {
    color: var(--text);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.template-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.template-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 92, 255, 0.5);
    box-shadow: 0 18px 40px rgba(53, 38, 120, 0.20);
}
.template-card .card-cover {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-2);
}
.template-card .card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.template-card:hover .card-cover img {
    transform: scale(1.05);
}
.template-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 16, 23, 0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.template-card:hover .card-overlay {
    opacity: 1;
}
.template-card .card-overlay .btn-view {
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
}
.template-card .card-overlay .btn-view:hover {
    transform: scale(1.05);
}
.template-card .card-info {
    padding: 14px 16px 16px;
}
.template-card .card-info .category {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    font-weight: 600;
}
.template-card .card-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 2px;
    color: var(--text);
}

.load-more-wrapper {
    text-align: center;
}
.load-more-wrapper .btn-load {
    padding: 14px 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.load-more-wrapper .btn-load:hover {
    border-color: var(--primary);
    background: rgba(124, 92, 255, 0.06);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.empty-state button {
    margin-top: 14px;
    color: var(--primary-light);
    font-weight: 600;
    border-bottom: 1px solid var(--primary);
    padding: 4px 0;
    transition: var(--transition);
}
.empty-state button:hover {
    color: var(--text);
    border-color: var(--text);
}

/* =======================
   MODAL
======================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 12, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.is-open {
    display: flex;
    opacity: 1;
}
body.modal-open {
    overflow: hidden;
}

.template-modal {
    width: min(1180px, 96vw);
    height: min(880px, 94vh);
    background: rgba(15, 19, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}
.modal-overlay.is-open .template-modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.modal-header .modal-title {
    display: flex;
    flex-direction: column;
}
.modal-header .modal-title .name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}
.modal-header .modal-title .cat {
    font-size: 0.7rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.modal-header .modal-title .counter {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.modal-devices {
    display: flex;
    gap: 4px;
}
.modal-devices button {
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.modal-devices button.active {
    color: var(--text);
    border-color: var(--primary);
    background: rgba(124, 92, 255, 0.10);
}
.modal-devices button:hover {
    color: var(--text);
}

.modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
    background: transparent;
    color: var(--text-muted);
    border: none;
}
.modal-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.preview-stage {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    padding: 20px 60px;
    background:
        radial-gradient(circle at top, rgba(124, 92, 255, 0.08), transparent 42%),
        #090d14;
}

.preview-viewport {
    width: 100%;
    height: 100%;
    overflow: auto;
    transition: width 0.4s ease;
    background: #111722;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.preview-viewport img {
    width: 100%;
    height: auto;
    display: block;
}
.preview-viewport iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    background: #fff;
}

.preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(16, 21, 31, 0.84);
    color: var(--text);
    font-size: 1.8rem;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.preview-nav:hover {
    border-color: var(--primary);
    background: rgba(124, 92, 255, 0.15);
}
.preview-nav.prev {
    left: 10px;
}
.preview-nav.next {
    right: 10px;
}

.preview-indicators {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.preview-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    padding: 0;
    transition: var(--transition);
    cursor: pointer;
}
.preview-indicators .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 6px;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 12px;
}
.modal-footer .footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.modal-footer .footer-text strong {
    color: var(--text);
}
.modal-footer .footer-text small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* =======================
   HOW IT WORKS
======================= */
.how-section {
    background:
        radial-gradient(circle at 30% 40%, rgba(124, 92, 255, 0.06), transparent 40%),
        var(--bg-2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 92, 255, 0.15), rgba(79, 195, 247, 0.5), rgba(124, 92, 255, 0.15));
    z-index: 0;
}
.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 12px;
    transition: var(--transition);
}
.step-item:hover {
    transform: translateY(-6px);
}
.step-item .step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3.4rem;
    color: rgba(124, 92, 255, 0.12);
    line-height: 1;
    margin-bottom: 8px;
    transition: var(--transition);
}
.step-item:hover .step-number {
    color: var(--primary);
}
.step-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 6px;
}
.step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =======================
   HOSTING
======================= */
.hosting-section {
    background:
        radial-gradient(circle at 70% 20%, rgba(124, 92, 255, 0.10), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(79, 195, 247, 0.06), transparent 35%),
        linear-gradient(180deg, #111827, #18202B);
}

.hosting-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hosting-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 18px;
}
.hosting-features .hf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hosting-features .hf-item .icon {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.hosting-panel {
    background: rgba(29, 38, 51, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 32px 34px;
    box-shadow: 0 24px 70px rgba(4, 7, 16, 0.36), 0 0 50px rgba(124, 92, 255, 0.06);
}
.hosting-panel h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text);
}
.hosting-panel .hp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}
.hosting-panel .hp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hosting-panel .hp-item .icon {
    color: var(--secondary);
    font-size: 1rem;
}

/* =======================
   SERVICES
======================= */
.services-section {
    background:
        radial-gradient(circle at 30% 30%, rgba(79, 195, 247, 0.05), transparent 40%),
        var(--bg);
}

.services-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    cursor: pointer;
    border-left: 2px solid transparent;
}
.service-item:hover {
    background: rgba(124, 92, 255, 0.06);
    border-left-color: var(--primary);
}
.service-item .left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.service-item .left .num {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 32px;
}
.service-item .left .name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}
.service-item .left .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0;
    max-width: 260px;
    transition: opacity 0.3s ease;
    margin-left: 12px;
}
.service-item:hover .left .desc {
    opacity: 1;
}
.service-item .arrow {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}
.service-item:hover .arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* =======================
   CONTACT / WHATSAPP
======================= */
.contact-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.18), transparent 38%),
        radial-gradient(circle at 85% 70%, rgba(79, 195, 247, 0.12), transparent 34%),
        linear-gradient(135deg, #121927, #182234);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px 0;
}
.contact-visual .msg-bubble {
    background: rgba(29, 38, 51, 0.70);
    backdrop-filter: blur(6px);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 90%;
    font-size: 0.9rem;
    color: var(--text);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.contact-visual .msg-bubble.self {
    align-self: flex-end;
    background: rgba(124, 92, 255, 0.15);
    border-color: rgba(124, 92, 255, 0.15);
}
.contact-visual .msg-bubble small {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.3px;
}
.contact-visual .whatsapp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.contact-visual .whatsapp-badge .icon {
    font-size: 1.4rem;
}

/* =======================
   FOOTER
======================= */
.footer {
    background: linear-gradient(180deg, #0f1622, #0b111a);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand .logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.footer-brand .logo span {
    color: var(--primary-light);
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 300px;
    line-height: 1.7;
}
.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}
.footer-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    color: var(--text);
}

.footer-col h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: var(--text);
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col ul a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-col ul a:hover {
    color: var(--text);
}
.footer-col .btn-wa {
    margin-top: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
}
.footer-col .btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.2);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.footer-bottom .links {
    display: flex;
    gap: 20px;
}
.footer-bottom .links a {
    transition: var(--transition);
}
.footer-bottom .links a:hover {
    color: var(--text);
}

/* =======================
   BACK TO TOP
======================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    width: 46px;
    height: 46px;
    background: var(--surface);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.back-to-top.visible {
    display: flex;
}
.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/* =======================
   LOGIN MODAL
======================= */
.login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 12, 0.80);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    padding: 20px;
}
.login-overlay.is-open {
    display: flex;
}
.login-modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
}
.login-modal h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.login-modal .sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}
.login-modal .demo-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 2px solid var(--primary);
}
.login-modal label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.login-modal input[type="email"],
.login-modal input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: var(--transition);
}
.login-modal input:focus {
    outline: none;
    border-color: var(--primary);
}
.login-modal .row-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 0.8rem;
}
.login-modal .row-flex label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    cursor: pointer;
}
.login-modal .row-flex a {
    color: var(--primary-light);
    font-size: 0.8rem;
}
.login-modal .btn-login-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
}
.login-modal .btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(124, 92, 255, 0.2);
}
.login-modal .close-login {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.4rem;
    color: var(--text-muted);
    background: none;
    border: none;
}
.login-modal .close-login:hover {
    color: #fff;
}

/* =======================
   RESPONSIVE
======================= */

/* 1280px */
@media (max-width: 1280px) {
    .templates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .hero-showcase .showcase-panel:nth-child(5) {
        display: none;
    }
    .hero-showcase .showcase-panel {
        flex: 1 1 25%;
    }
    .showcase-panel:first-child,
    .showcase-panel:last-child {
        clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
    }
    .showcase-panel:last-child {
        clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .showcase-panel:first-child {
        clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
        border-left: none;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* 992px */
@media (max-width: 992px) {
    .templates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-showcase {
        height: 440px;
        padding: 0 12px;
    }
    .hero-showcase .showcase-panel {
        flex: 0 0 70%;
        clip-path: none !important;
        border-radius: 0;
        border: none;
        margin-right: 4px;
        scroll-snap-align: start;
        filter: brightness(1) saturate(1) !important;
    }
    .hero-showcase .showcase-panel:hover {
        flex: 0 0 70%;
        filter: brightness(1) saturate(1) !important;
    }
    .hero-showcase:hover .showcase-panel {
        filter: brightness(1) saturate(1) !important;
    }
    .hero-showcase .showcase-panel:nth-child(5) {
        display: flex;
    }
    .hero-showcase {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        flex-wrap: nowrap;
    }
    .showcase-panel:first-child {
        clip-path: none !important;
    }
    .showcase-panel:last-child {
        clip-path: none !important;
        border-right: none;
    }
    .hero-text {
        bottom: 30px;
        left: 20px;
        max-width: 50%;
    }
    .hero-text h1 {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
    }
    .hero {
        min-height: 580px;
        padding: 30px 0 50px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .steps-grid::before {
        display: none;
    }
    .hosting-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hosting-features {
        grid-template-columns: 1fr 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-visual .msg-bubble {
        max-width: 100%;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .preview-stage {
        padding: 16px 40px;
    }
    .preview-nav {
        width: 36px;
        height: 56px;
        font-size: 1.4rem;
    }
    .template-modal {
        height: min(800px, 92vh);
    }
    .service-item .left .desc {
        opacity: 1;
        max-width: 140px;
        margin-left: 8px;
    }
}

/* 768px */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 78px;
        left: 0;
        width: 100%;
        background: rgba(11, 16, 23, 0.96);
        backdrop-filter: blur(18px);
        padding: 24px 28px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .navbar-links.open {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
    .navbar-actions .btn-orcamento {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    .navbar-actions .btn-login {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hero-showcase {
        height: 380px;
    }
    .hero-showcase .showcase-panel {
        flex: 0 0 80%;
    }
    .hero-text {
        bottom: 20px;
        left: 16px;
        max-width: 70%;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    .hero-text .hero-btns .btn-primary,
    .hero-text .hero-btns .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .hero {
        min-height: 480px;
        padding: 20px 0 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .benefits-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 4px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 4px 0;
    }
    .benefits-list li {
        flex: 0 0 auto;
        padding: 0 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        font-size: 0.75rem;
        scroll-snap-align: start;
        white-space: nowrap;
    }
    .benefits-list li:last-child {
        border-right: none;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .step-item {
        text-align: left;
        padding: 0;
    }
    .step-item .step-number {
        font-size: 2.4rem;
    }

    .hosting-panel .hp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-list .service-item .left .desc {
        display: none;
    }

    .modal-header {
        padding: 12px 16px;
    }
    .modal-header .modal-title .name {
        font-size: 1rem;
    }
    .preview-stage {
        padding: 12px 32px;
    }
    .preview-nav {
        width: 30px;
        height: 44px;
        font-size: 1rem;
    }
    .preview-nav.prev {
        left: 4px;
    }
    .preview-nav.next {
        right: 4px;
    }
    .template-modal {
        height: 94vh;
        width: 100vw;
        border-radius: 0;
    }
    .modal-overlay {
        padding: 0;
    }
    .modal-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px 16px;
    }
    .modal-footer .footer-text small {
        display: none;
    }
    .modal-footer .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .modal-devices button {
        padding: 4px 10px;
        font-size: 0.6rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* 576px */
@media (max-width: 576px) {
    .templates-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .hero-showcase {
        height: 320px;
    }
    .hero-showcase .showcase-panel {
        flex: 0 0 88%;
    }
    .hero {
        min-height: 420px;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }
    .hero-text p {
        font-size: 0.85rem;
        max-width: 280px;
    }
    .hero-text {
        bottom: 14px;
        left: 12px;
        max-width: 85%;
    }
    .hero-text .hero-btns .btn-primary,
    .hero-text .hero-btns .btn-outline {
        font-size: 0.75rem;
        padding: 10px 20px;
    }

    .hosting-features {
        grid-template-columns: 1fr;
    }
    .hosting-panel .hp-grid {
        grid-template-columns: 1fr;
    }
    .hosting-panel {
        padding: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-visual .msg-bubble {
        font-size: 0.8rem;
        padding: 12px 16px;
    }

    .filter-bar {
        gap: 2px 12px;
    }
    .filter-btn {
        font-size: 0.7rem;
        padding: 6px 0;
    }

    .service-item {
        padding: 12px 16px;
    }
    .service-item .left .num {
        min-width: 24px;
        font-size: 0.7rem;
    }
    .service-item .left .name {
        font-size: 0.85rem;
    }

    .login-modal {
        padding: 28px 20px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* 400px */
@media (max-width: 400px) {
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hero-showcase {
        height: 280px;
    }
    .hero-showcase .showcase-panel {
        flex: 0 0 92%;
    }
    .navbar-actions .btn-orcamento {
        font-size: 0.6rem;
        padding: 6px 12px;
    }
    .navbar-actions .btn-login {
        font-size: 0.6rem;
        padding: 4px 10px;
    }
    .navbar-logo {
        font-size: 1rem;
    }
    .navbar-logo .symbol {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* =======================
   ANIMATIONS
======================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    .showcase-panel {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .showcase-panel.is-visible {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-showcase:hover .showcase-panel {
        filter: brightness(0.5) saturate(0.7) !important;
    }
    .hero-showcase .showcase-panel:hover {
        flex: 1 !important;
        filter: brightness(0.5) saturate(0.7) !important;
    }
    .template-card {
        transition: none !important;
    }
}