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

:root {
    --p: #001789;
    --pd: #000f5c;
    --pl: #1a2fa0;
    --a: #C8FF00;
    --ad: #a8d600;
    --d: #0a0a0a;
    --g9: #1a1a2e;
    --g7: #4a4a5a;
    --g5: #7a7a8a;
    --g3: #d0d0d8;
    --g1: #f4f4f8;
    --w: #fff;
    --r: 12px;
    --rl: 20px;
    --s: 0 8px 40px rgba(0, 0, 0, .12);
    --t: all .3s cubic-bezier(.4, 0, .2, 1)
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--d);
    background: var(--w);
    line-height: 1.6;
    overflow-x: hidden
}

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

    .process-step p {
        color: var(--g5);
        line-height: 1.6;
    }

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--t);
    white-space: nowrap
}

.btn-primary {
    background: var(--p);
    color: var(--w);
    border-color: var(--p)
}

.btn-primary:hover {
    background: var(--pl);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 23, 137, .3)
}

.btn-accent {
    background: var(--a);
    color: var(--d);
    border-color: var(--a);
    font-weight: 700
}

.btn-accent:hover {
    background: var(--ad);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 255, 0, .3)
}

.btn-outline {
    background: transparent;
    color: var(--w);
    border-color: rgba(255, 255, 255, .4)
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--w)
}

.btn-outline-dark {
    background: transparent;
    color: var(--p);
    border-color: var(--p)
}

.btn-outline-dark:hover {
    background: var(--p);
    color: var(--w);
    transform: translateY(-2px)
}

.btn-whatsapp {
    background: #25D366;
    color: var(--w);
    border-color: #25D366
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, .3)
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem
}

.btn-small {
    padding: 8px 20px;
    font-size: .85rem
}

.btn-full {
    width: 100%
}

.btn-header {
    padding: 10px 24px;
    font-size: .9rem
}

/* TOP BAR */
.top-bar {
    background: var(--pd);
    color: var(--w);
    font-size: .8rem;
    padding: 8px 0
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.top-bar-left {
    display: flex;
    gap: 24px
}

.top-bar-left a {
    color: var(--w);
    transition: var(--t)
}

.top-bar-left a:hover {
    color: var(--a)
}

.top-bar-right {
    opacity: .8
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: var(--t)
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem
}

.logo-icon {
    background: var(--p);
    color: var(--a);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: .9rem;
    font-family: 'Courier New', monospace
}

.logo-text {
    color: var(--p)
}

.logo-img {
    height: 40px;
    display: block
}

.nav {
    display: flex;
    gap: 24px;
    flex: 1;
    justify-content: center;
    align-items: center
}

.nav-link {
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--g7);
    transition: var(--t)
}

.nav-link:hover,
.nav-link.active {
    color: var(--p);
    background: rgba(0, 23, 137, .06)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--w);
    border: 1px solid var(--g3);
    padding: 8px 0;
    border-radius: 12px;
    min-width: 220px;
    display: none;
    box-shadow: var(--s);
    z-index: 50
}

.nav-dropdown:hover .dropdown-menu {
    display: block
}

.dropdown-link {
    display: block;
    padding: 10px 18px;
    color: var(--g7);
    font-weight: 600
}

.dropdown-link:hover {
    background: var(--g1);
    color: var(--p)
}

@media(max-width:768px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        padding: 0
    }

    .nav-dropdown.open .dropdown-menu {
        display: block
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--d);
    transition: var(--t);
    border-radius: 2px
}

/* HERO */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 50%, #000a4a 100%);
    color: var(--w);
    padding: 80px 0 120px;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--a);
    top: -200px;
    right: -100px
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--w);
    bottom: -100px;
    left: -100px
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--a);
    top: 50%;
    left: 40%
}

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

.hero-badge {
    display: inline-block;
    background: rgba(200, 255, 0, .15);
    color: var(--a);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(200, 255, 0, .25)
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px
}

.hero h1 .highlight {
    color: var(--a)
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 32px;
    max-width: 500px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hero-trust {
    display: flex;
    gap: 32px;
    align-items: center
}

.trust-item {
    text-align: center
}

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--a)
}

.trust-label {
    font-size: .8rem;
    opacity: .7
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .2)
}

.hero-visual,
.hero-image-container,
.marketing-visual {
    position: relative
}

.hero-mockup {
    background: var(--w);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0, 0, 0, .15)
}

.mockup-browser {
    background: var(--g1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.browser-dots {
    display: flex;
    gap: 6px
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.browser-dots span:nth-child(1) {
    background: #ff5f57
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e
}

.browser-dots span:nth-child(3) {
    background: #28ca42
}

.browser-bar {
    flex: 1;
    background: var(--w);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .75rem;
    color: var(--g5)
}

.mockup-screen {
    padding: 20px;
    min-height: 300px
}

.mock-header {
    height: 12px;
    width: 60%;
    background: var(--g3);
    border-radius: 6px;
    margin-bottom: 16px
}

.mock-hero-img {
    height: 80px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: .3
}

.mock-content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.mock-line {
    height: 8px;
    background: var(--g1);
    border-radius: 4px
}

.mock-line.w80 {
    width: 80%
}

.mock-line.w60 {
    width: 60%
}

.mock-cards {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.mock-card {
    flex: 1;
    height: 60px;
    background: var(--g1);
    border-radius: 8px;
    border: 1px solid var(--g3)
}

.floating-card {
    position: absolute;
    background: var(--w);
    padding: 12px 18px;
    border-radius: var(--r);
    box-shadow: var(--s);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    z-index: 5
}

.floating-card strong {
    display: block;
    font-size: .85rem;
    color: var(--d)
}

.floating-card small {
    font-size: .75rem;
    color: var(--g5)
}

.fc-icon {
    font-size: 1.4rem
}

.card-ssl {
    top: 20%;
    right: -20px;
    animation-delay: .5s
}

.card-speed {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* TRUST BAR */
.trust-bar {
    background: var(--w);
    padding: 40px 0;
    border-bottom: 1px solid var(--g1);
    position: relative;
    z-index: 10;
    margin-top: -40px
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    background: var(--w);
    padding: 32px;
    border-radius: var(--rl);
    box-shadow: var(--s)
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 14px
}

.trust-bar-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 23, 137, .06);
    border-radius: var(--r);
    flex-shrink: 0
}

.trust-bar-item strong {
    display: block;
    font-size: .9rem;
    color: var(--d)
}

.trust-bar-item>div>span {
    font-size: .8rem;
    color: var(--g5)
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px
}

/* tighter spacing for services header */
.services .section-header {
    margin-bottom: 28px
}

.section-badge {
    display: inline-block;
    background: rgba(0, 23, 137, .08);
    color: var(--p);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 16px
}

.badge-light {
    background: rgba(255, 255, 255, .15);
    color: var(--w)
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.section-header p {
    font-size: 1.05rem;
    color: var(--g5);
    line-height: 1.6
}

/* HOW IT WORKS */
.how-it-works {
    padding: 100px 0;
    background: var(--g1)
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center
}

.step-card {
    background: var(--w);
    padding: 40px 32px;
    border-radius: var(--rl);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    transition: var(--t);
    flex: 1;
    max-width: 320px;
    position: relative
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--s)
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 23, 137, .08);
    position: absolute;
    top: 16px;
    right: 24px
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--d)
}

.step-card p {
    font-size: .95rem;
    color: var(--g5);
    line-height: 1.6
}

.step-connector {
    width: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px
}

.step-connector svg {
    width: 60px
}

.steps-cta {
    text-align: center;
    margin-top: 48px
}

/* SERVICES */
.services {
    padding: 40px 0 72px;
    background: var(--w)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.service-card {
    background: var(--w);
    border: 1px solid var(--g3);
    border-radius: var(--rl);
    padding: 40px 32px;
    transition: var(--t);
    position: relative;
    overflow: hidden
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--s);
    border-color: transparent
}

.service-card-featured {
    border: 2px solid var(--p);
    background: linear-gradient(180deg, rgba(0, 23, 137, .02) 0%, var(--w) 100%)
}

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--a);
    color: var(--d);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700
}

.service-icon-wrap {
    margin-bottom: 24px
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(0, 23, 137, .06);
    border-radius: var(--r);
    margin-bottom: 24px
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--d)
}

.service-card>p {
    font-size: .95rem;
    color: var(--g5);
    line-height: 1.6;
    margin-bottom: 24px
}

.service-features {
    margin-bottom: 28px
}

.service-features li {
    padding: 6px 0;
    font-size: .9rem;
    color: var(--g7)
}


/* SERVICES CAROUSEL */
.services-carousel {
    position: relative;
    display: flex;
    align-items: flex-start
}

.services-track {
    display: flex;
    gap: 44px;
    overflow-x: auto;
    padding: 8px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    justify-content: flex-start
}

.services-track .service-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    align-self: flex-start;
    margin-top: 0
}

/* strong specificity to avoid overrides during animations */
.services .services-track .service-card {
    align-self: flex-start;
    margin-top: 0 !important
}

.services-track .service-card {
    display: flex;
    flex-direction: column
}

.services-track .service-card .service-icon-wrap {
    flex: 0 0 auto
}

.services-track .service-card h3 {
    flex: 0 0 auto
}

.services-track .service-card p {
    flex: 0 0 auto
}

.services-track .service-card .service-features {
    flex: 1 0 auto;
    margin-bottom: 16px
}

.services-track .service-card .btn {
    margin-top: auto
}

.services-track .service-card {
    min-height: 420px
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--w);
    border: 1px solid var(--g3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--s);
    z-index: 6;
    font-size: 1.3rem
}

.carousel-btn.prev {
    left: 8px
}

.carousel-btn.next {
    right: 8px
}

.services-track::-webkit-scrollbar {
    height: 8px
}

.services-track::-webkit-scrollbar-thumb {
    background: var(--g3);
    border-radius: 8px
}

@media(max-width:1024px) {
    .services-track .service-card {
        flex: 0 0 80%;
    }
}

@media(max-width:768px) {
    .carousel-btn {
        display: none
    }

    .services-track {
        gap: 20px;
        padding: 8px
    }
}

/* WHY CHOOSE */
.why-choose {
    padding: 100px 0;
    background: var(--g1)
}

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

.why-choose-left .section-badge {
    margin-bottom: 16px
}

.why-choose-left h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.why-choose-left>p {
    font-size: 1.05rem;
    color: var(--g5);
    line-height: 1.6;
    margin-bottom: 32px
}

.why-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.why-tab {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--g3);
    background: var(--w);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
    color: var(--g7);
    font-family: inherit
}

.why-tab:hover {
    border-color: var(--p);
    color: var(--p)
}

.why-tab.active {
    background: var(--p);
    color: var(--w);
    border-color: var(--p)
}

.why-tab-content {
    display: none;
    animation: fadeIn .4s ease
}

.why-tab-content.active {
    display: block
}

.why-tab-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--d)
}

.why-tab-content p {
    font-size: .95rem;
    color: var(--g5);
    line-height: 1.7
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

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

.why-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 400px
}

.why-img-card {
    border-radius: var(--rl);
    overflow: hidden
}

.why-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--w);
    border: 1px solid var(--g3);
    border-radius: var(--rl)
}

.why-img-placeholder span {
    font-size: 2.5rem;
    margin-bottom: 8px
}

.why-img-placeholder p {
    font-size: .85rem;
    font-weight: 600;
    color: var(--g7)
}

.why-img-1 {
    grid-row: span 2
}

.why-img-1 .why-img-placeholder {
    background: linear-gradient(135deg, rgba(0, 23, 137, .05), rgba(0, 23, 137, .12))
}

.why-img-2 .why-img-placeholder {
    background: linear-gradient(135deg, rgba(200, 255, 0, .1), rgba(200, 255, 0, .2))
}

.why-img-3 .why-img-placeholder {
    background: linear-gradient(135deg, rgba(0, 23, 137, .03), rgba(0, 23, 137, .08))
}

/* DOMAINS */
.domains {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%);
    color: var(--w)
}

.domains .section-header p {
    color: rgba(255, 255, 255, .7)
}

.domains .section-header h2 {
    color: var(--w)
}

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

.domain-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--rl);
    padding: 36px 28px;
    text-align: center;
    transition: var(--t);
    position: relative
}

.domain-card:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2)
}

.domain-ext {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--a)
}

.domain-price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: .8
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1
}

.price-period {
    font-size: .9rem;
    opacity: .7
}

.domain-badge-popular {
    display: inline-block;
    background: var(--a);
    color: var(--d);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 16px
}

.domain-features {
    margin-bottom: 24px;
    text-align: left
}

.domain-features li {
    padding: 6px 0;
    font-size: .85rem;
    opacity: .85
}

.domains-help {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    opacity: .8
}

.domains-help a {
    color: var(--a);
    font-weight: 600;
    text-decoration: underline
}

/* STATS */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--g9) 0%, #0d0d2b 50%, var(--pd) 100%);
    color: var(--w);
    position: relative;
    overflow: hidden
}

.stats-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none
}

.stats-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .05
}

.stats-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--a);
    top: -150px;
    right: -100px
}

.stats-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--pl);
    bottom: -100px;
    left: -50px
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2
}

.stats-text .section-badge {
    margin-bottom: 16px
}

.stats-text h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.5px;
    color: var(--w)
}

.stats-text>p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 32px
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.stat-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rl);
    padding: 28px 24px;
    transition: var(--t);
    text-align: center
}

.stat-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3)
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(200, 255, 0, .1);
    border: 1px solid rgba(200, 255, 0, .2);
    border-radius: var(--r);
    margin-bottom: 16px
}

.stat-card-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--a);
    line-height: 1;
    margin-bottom: 6px
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700
}

.stat-card-label {
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    margin-bottom: 16px
}

.stat-card-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--a), var(--ad));
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
    width: 0%
}

/* PORTFOLIO */
.portfolio {
    padding: 100px 0;
    background: var(--g1)
}

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

.portfolio-item {
    transition: var(--t)
}

.portfolio-item:hover {
    transform: translateY(-8px)
}

.portfolio-thumb {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer
}

.portfolio-placeholder {
    width: 100%;
    height: 220px;
    background: var(--w);
    border: 1px solid var(--g3);
    padding: 16px;
    display: flex;
    flex-direction: column
}

.portfolio-placeholder.p2 {
    background: #f8f8ff
}

.portfolio-placeholder.p3 {
    background: #f5f9f5
}

.portfolio-placeholder.p4 {
    background: #fdf8f0
}

.pp-header {
    height: 10px;
    width: 50%;
    background: var(--g3);
    border-radius: 4px;
    margin-bottom: 12px
}

.pp-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.pp-block {
    height: 60px;
    background: linear-gradient(135deg, var(--p), var(--pl));
    border-radius: 8px;
    opacity: .15
}

.pp-block.wide {
    height: 50px
}

.pp-block.tall {
    height: 90px;
    width: 60%
}

.pp-lines {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pp-line {
    height: 6px;
    width: 100%;
    background: var(--g3);
    border-radius: 4px
}

.pp-line.short {
    width: 60%
}

.pp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1
}

.pp-square {
    background: linear-gradient(135deg, var(--p), var(--pl));
    border-radius: 8px;
    opacity: .12
}

.pp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 23, 137, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t)
}

.portfolio-overlay span {
    color: var(--w);
    font-weight: 600;
    font-size: .95rem
}

.portfolio-thumb:hover .portfolio-overlay {
    opacity: 1
}

.portfolio-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px
}

.portfolio-tag {
    font-size: .8rem;
    color: var(--g5);
    font-weight: 500
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
    background: var(--w)
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.testimonial-card {
    background: var(--w);
    border: 1px solid var(--g3);
    border-radius: var(--rl);
    padding: 36px 32px;
    transition: var(--t)
}

.testimonial-card:hover {
    box-shadow: var(--s);
    border-color: transparent;
    transform: translateY(-4px)
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 1.1rem
}

.testimonial-text {
    font-size: .95rem;
    color: var(--g7);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--p);
    color: var(--w);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0
}

.testimonial-author strong {
    display: block;
    font-size: .95rem;
    color: var(--d)
}

.testimonial-author span {
    font-size: .8rem;
    color: var(--g5)
}

/* MARKETING */
.marketing {
    padding: 100px 0;
    background: var(--w);
    overflow: hidden
}

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

.marketing-right .section-badge {
    margin-bottom: 16px
}

.marketing-right h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.marketing-desc {
    font-size: 1.05rem;
    color: var(--g5);
    line-height: 1.7;
    margin-bottom: 36px
}

.marketing-services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px
}

.mkt-service-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--r);
    transition: var(--t);
    border: 1px solid transparent
}

.mkt-service-item:hover {
    background: var(--g1);
    border-color: var(--g3)
}

.mkt-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 23, 137, .06);
    border-radius: var(--r);
    font-size: 1.4rem;
    flex-shrink: 0
}

.mkt-service-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--d)
}

.mkt-service-item p {
    font-size: .9rem;
    color: var(--g5);
    line-height: 1.6
}

.marketing-dashboard {
    background: var(--w);
    border-radius: var(--rl);
    box-shadow: 0 16px 60px rgba(0, 0, 0, .15);
    overflow: hidden;
    border: 1px solid var(--g3)
}

.dash-header {
    background: var(--g1);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--g3)
}

.dash-dots {
    display: flex;
    gap: 6px
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.dash-dots span:nth-child(1) {
    background: #ff5f57
}

.dash-dots span:nth-child(2) {
    background: #ffbd2e
}

.dash-dots span:nth-child(3) {
    background: #28ca42
}

.dash-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--g7)
}

.dash-body {
    padding: 24px
}

.dash-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px
}

.dash-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--g1);
    border-radius: var(--r)
}

.dash-stat-icon {
    font-size: 1.6rem
}

.dash-stat-card strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--p)
}

.dash-stat-card small {
    font-size: .75rem;
    color: var(--g5)
}

.dash-chart {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--g1);
    border-radius: var(--r)
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 140px
}

.chart-bar {
    flex: 1;
    background: rgba(0, 23, 137, .15);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease-in-out;
    min-height: 20px
}

.chart-bar.highlight-bar {
    background: var(--p)
}

.chart-bar span {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .65rem;
    color: var(--g5);
    font-weight: 500
}

.chart-bar.highlight-bar span {
    color: var(--p);
    font-weight: 700
}

.dash-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dash-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--g1);
    border-radius: 8px;
    font-size: .85rem
}

.metric-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0
}

.metric-dot.green {
    background: #28ca42
}

.metric-dot.blue {
    background: var(--p)
}

.metric-dot.yellow {
    background: #ffbd2e
}

.dash-metric span {
    flex: 1;
    color: var(--g7)
}

.dash-metric strong {
    color: var(--d);
    font-weight: 700
}

.card-roi {
    top: 10%;
    right: -30px;
    animation-delay: .3s
}

.card-leads {
    bottom: 15%;
    left: -30px;
    animation-delay: .8s
}

/* SOCIAL MEDIA */
.social-media {
    padding: 100px 0;
    background: var(--g1);
    overflow: hidden
}

.social-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: flex-start
}

.social-feed-area {
    position: relative;
    display: flex;
    justify-content: center
}

.social-phone-mockup {
    width: 300px;
    background: var(--w);
    border-radius: 36px;
    border: 4px solid var(--g9);
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0, 0, 0, .15)
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--g9);
    margin: 0 auto;
    border-radius: 0 0 18px 18px
}

.phone-screen {
    padding: 8px 0
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px
}

.insta-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    flex-shrink: 0
}

.insta-user {
    flex: 1
}

.insta-user strong {
    display: block;
    font-size: .85rem;
    color: var(--d)
}

.insta-user span {
    font-size: .7rem;
    color: var(--g5)
}

.insta-more {
    color: var(--g5);
    font-weight: 900;
    letter-spacing: 1px
}

.insta-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden
}

.insta-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--p), var(--pl), #3a4fd0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--w)
}

.insta-img-placeholder span {
    font-size: 3rem;
    margin-bottom: 8px
}

.insta-img-placeholder p {
    font-size: .85rem;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
    opacity: .9
}

.insta-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px
}

.insta-action-left {
    display: flex;
    gap: 14px;
    font-size: 1.2rem
}

.insta-actions>span {
    font-size: 1.2rem
}

.insta-likes {
    padding: 0 14px;
    font-size: .8rem;
    margin-bottom: 6px
}

.insta-likes strong {
    color: var(--d)
}

.insta-caption {
    padding: 0 14px 16px;
    font-size: .78rem;
    color: var(--g7);
    line-height: 1.5
}

.insta-caption strong {
    color: var(--d)
}

.card-followers {
    top: 5%;
    right: -60px;
    animation-delay: .2s
}

.card-engagement {
    bottom: 10%;
    right: -50px;
    animation-delay: .7s
}

.social-services-area {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.social-service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.social-service-card {
    background: var(--w);
    border: 1px solid var(--g3);
    border-radius: var(--rl);
    padding: 28px 24px;
    transition: var(--t)
}

.social-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--s);
    border-color: transparent
}

.ssc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.ssc-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 23, 137, .06);
    border-radius: 8px;
    flex-shrink: 0
}

.ssc-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--d)
}

.social-service-card>p {
    font-size: .88rem;
    color: var(--g5);
    line-height: 1.6;
    margin-bottom: 16px
}

.ssc-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.ssc-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 23, 137, .06);
    color: var(--p);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600
}

.social-platforms {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.platform-label {
    font-size: .9rem;
    font-weight: 600;
    color: var(--g7)
}

.platform-icons {
    display: flex;
    gap: 12px
}

.platform-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: var(--w);
    border-radius: var(--r);
    border: 1px solid var(--g3);
    transition: var(--t);
    cursor: default
}

.platform-icon-item:hover {
    border-color: var(--p);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    transform: translateY(-3px)
}

.platform-icon-item span {
    font-size: 1.5rem
}

.platform-icon-item small {
    font-size: .65rem;
    font-weight: 600;
    color: var(--g5)
}

/* CTA FINAL */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%);
    color: var(--w);
    text-align: center
}

.cta-final-content {
    max-width: 700px;
    margin: 0 auto
}

.cta-final h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.5px
}

.cta-final p {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 36px;
    line-height: 1.6
}

.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px
}

.cta-guarantees {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .9rem;
    opacity: .8
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--g1)
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start
}

.faq-left .section-badge {
    margin-bottom: 16px
}

.faq-left h2 {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px
}

.faq-left>p {
    font-size: 1rem;
    color: var(--g5);
    line-height: 1.6;
    margin-bottom: 28px
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-item {
    background: var(--w);
    border-radius: var(--r);
    border: 1px solid var(--g3);
    overflow: hidden;
    transition: var(--t)
}

.faq-item.active {
    border-color: var(--p);
    box-shadow: 0 4px 20px rgba(0, 23, 137, .08)
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--d);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: inherit
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--p);
    transition: var(--t);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 23, 137, .06)
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--p);
    color: var(--w)
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    font-size: .95rem;
    color: var(--g5);
    line-height: 1.7
}

/* FOOTER */
.footer {
    background: var(--g9);
    color: var(--w);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px
}

.footer-logo {
    margin-bottom: 16px
}

.footer-logo img.footer-logo-img {
    height: 36px;
    display: block
}

.footer-logo .logo-text {
    color: var(--w)
}

.footer-about>p {
    font-size: .9rem;
    color: var(--g5);
    line-height: 1.6;
    margin-bottom: 20px
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    font-size: 1.1rem;
    transition: var(--t)
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    display: block
}

.footer-social a:hover {
    background: var(--p);
    transform: translateY(-2px)
}

.footer-col .material-icons {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--w)
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--w)
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: .95rem;
    color: var(--g5);
    transition: var(--t);
    line-height: 1.2
}

.footer-col ul li a:hover {
    color: var(--a)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 24px 0;
    text-align: center
}

.footer-bottom p {
    font-size: .85rem;
    color: var(--g5)
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--t);
    animation: pulse 2s infinite;
    color: #fff
}

.whatsapp-float svg {
    width: 36px;
    height: 36px
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .4)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transition: opacity .8s ease, transform .8s ease
}

[data-animate].visible {
    opacity: 1;
    transform: none
}

[data-animate="fade-up"] {
    transform: translateY(40px)
}

[data-animate="fade-left"] {
    transform: translateX(-60px)
}

[data-animate="fade-right"] {
    transform: translateX(60px)
}

[data-animate="scale"] {
    transform: scale(.9)
}

/* RESPONSIVE 1024 */
@media(max-width:1024px) {
    .hero h1 {
        font-size: 2.5rem
    }

    .hero-content,
    .marketing-layout,
    .why-choose-layout,
    .stats-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto
    }

    .domains-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .marketing-left {
        order: 2;
        max-width: 500px;
        margin: 0 auto
    }

    .marketing-right {
        order: 1
    }

    .social-showcase {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .social-feed-area {
        justify-content: center
    }

    .stats-inner {
        text-align: center
    }
}

/* RESPONSIVE 768 */
@media(max-width:768px) {
    .top-bar-left {
        flex-direction: column;
        gap: 4px
    }

    .top-bar-right {
        display: none
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--w);
        flex-direction: column;
        padding: 80px 32px 32px;
        box-shadow: 0 16px 60px rgba(0, 0, 0, .15);
        transition: right .4s ease;
        z-index: 1000;
        gap: 0
    }

    .nav.active {
        right: 0
    }

    .nav-link {
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 1rem;
        border-bottom: 1px solid var(--g1)
    }

    .mobile-toggle {
        display: flex
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px)
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }

    .header-actions .btn-header {
        display: none
    }

    .hero {
        padding: 60px 0 80px;
        min-height: auto
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero-description {
        max-width: 100%
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center
    }

    .hero-trust {
        justify-content: center
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto
    }

    .card-ssl {
        right: 0;
        top: 10%
    }

    .card-speed {
        left: 0;
        bottom: 10%
    }

    .trust-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px
    }

    .steps-grid {
        flex-direction: column;
        align-items: center
    }

    .step-connector {
        transform: rotate(90deg);
        width: 60px;
        padding-top: 0
    }

    .step-card {
        max-width: 100%
    }

    .section-header h2 {
        font-size: 1.8rem
    }

    .domains-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-final h2 {
        font-size: 1.8rem
    }

    .cta-final-buttons,
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 8px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .why-image-grid {
        height: 300px
    }

    .faq-left h2,
    .marketing-right h2 {
        font-size: 1.8rem
    }

    .card-roi {
        right: -10px;
        top: 5%
    }

    .card-leads {
        left: -10px
    }

    .social-phone-mockup {
        width: 260px
    }

    .card-followers {
        right: -20px;
        top: 0
    }

    .card-engagement {
        right: -10px;
        bottom: 5%
    }

    .social-service-cards {
        grid-template-columns: 1fr
    }

    .social-platforms {
        flex-direction: column;
        align-items: flex-start
    }

    .platform-icons {
        flex-wrap: wrap
    }
}

/* RESPONSIVE 480 */
@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .hero h1 {
        font-size: 1.7rem
    }

    .trust-bar-grid {
        grid-template-columns: 1fr
    }

    .hero-trust {
        flex-direction: column;
        gap: 16px
    }

    .trust-divider {
        width: 40px;
        height: 1px
    }

    .floating-card {
        display: none
    }

    .stats-grid {
        grid-template-columns: 1fr
    }

    .social-phone-mockup {
        width: 240px
    }
}

/* PORTFOLIO THUMB - FORÇAR TAMANHO E MOSTRAR TOPO */
.portfolio-thumb {
    height: 220px;
    overflow: hidden;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.portfolio-full-grid .portfolio-thumb {
    height: 280px;
}

/* LUCIDE ICONS SUPPORT */
.lucide {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: middle;
    stroke-width: 2px;
}/* CTA INTERMEDIÁRIA */
.cta-mid {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 50%, #000a4a 100%);
    color: var(--w);
    text-align: center;
    border-radius: var(--rl);
    margin: 80px 24px 60px;
    /* Added 60px bottom margin as requested */
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 23, 137, .2)
}

.cta-mid-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.cta-mid h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2
}

.cta-mid p {
    font-size: 1.1rem;
    opacity: .9;
    margin-bottom: 32px;
    line-height: 1.6
}

/* =========================================
   SERVICES PAGES STYLES (ADDED RESTORATION)
   ========================================= */

/* Hero Section */
.srv-hero {
    position: relative;
    background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%);
    color: var(--w);
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.srv-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.srv-hero h1 .hl {
    color: var(--a);
}

.srv-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.srv-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.srv-shape1 {
    width: 400px;
    height: 400px;
    background: var(--w);
    top: -100px;
    right: -100px;
}

.srv-shape2 {
    width: 300px;
    height: 300px;
    background: var(--a);
    bottom: -50px;
    left: -50px;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 0.9rem;
    transition: var(--t);
}

.back-link:hover {
    color: var(--w);
    transform: translateX(-4px);
}

/* Service Sections */
.srv-section {
    padding: 100px 0;
    background: var(--w);
}

.srv-section.alt {
    background: var(--g1);
}

.srv-section.dark {
    background: var(--g9);
    color: var(--w);
}

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

/* Funnel visual (marketing-digital) */
.funnel-section {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: stretch;              /* allow steps to fill the column vertically */
}

.funnel-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    height: 100%;
    justify-content: space-between;   /* distribute steps to fill available height */
}

.funnel-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 20px;               /* increased padding/height */
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
    border: 1px solid var(--g3);
    transition: var(--t);
    color: var(--d);
    font-weight: 700;
    font-size: 1rem;
    min-height: 88px;                 /* taller steps */
    flex: 1 1 auto;                   /* allow equal-height stretching */
}

.funnel-step i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 23, 137, 0.05);
    color: var(--p);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.funnel-step small {
    display: block;
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--g5);
}

.funnel-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0,23,137,0.12);
    box-shadow: 0 10px 30px rgba(2,6,23,0.06);
}

@media (max-width: 1024px) {
    .funnel-section { grid-template-columns: 1fr; }
    .funnel-visual { margin-top: 18px; justify-content: flex-start; }
    .funnel-step { min-height: auto; padding: 16px; flex: none; }
}

/* Dark cards ("Por Que Nós") - improved */
.srv-section.dark .dark-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    align-items: stretch;        /* stretch para igualar altura das células */
    grid-auto-rows: 1fr;        /* garante linhas uniformes quando possível */
}

.srv-section.dark .dark-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 20px;
    border-radius: 12px;
    min-height: 180px;          /* base igual para todos */
    height: 100%;               /* permite que o grid estique o cartão */
    transition: var(--t);
    color: var(--w);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv-section.dark .dark-card h4 {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--w);
}

.srv-section.dark .dark-card h4 i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    color: var(--p);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.srv-section.dark .dark-card p {
    margin: 0;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 8px;
    flex: 1;
}

.srv-section.dark .dark-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.45);
    border-color: rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

@media (max-width: 992px) {
    .srv-section.dark .dark-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .srv-section.dark .dark-cards-grid { grid-template-columns: 1fr; }
    .srv-section.dark .dark-card { padding: 16px; }
}

/* Features Grid */
.srv-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.srv-feat {
    background: var(--w);
    padding: 32px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    transition: var(--t);
    height: 100%;
}

.srv-feat:hover {
    transform: translateY(-8px);
    box-shadow: var(--s);
    border-color: transparent;
}

.srv-feat-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--p);
    width: 56px;
    height: 56px;
    background: rgba(0, 23, 137, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.srv-feat h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--d);
}

.srv-feat p {
    font-size: 0.95rem;
    color: var(--g5);
    line-height: 1.6;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    background: var(--w);
    padding: 40px;
    border-radius: var(--rl);
    box-shadow: var(--s);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

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

.stat-item .num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--p);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--g5);
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: var(--w);
    padding: 40px 32px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    transition: var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--p);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 23, 137, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--a);
    color: var(--d);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--d);
    margin-bottom: 16px;
}

.pricing-price {
    margin-bottom: 24px;
}

.pricing-price small {
    display: block;
    font-size: 0.85rem;
    color: var(--g5);
    margin-bottom: 4px;
}

.pricing-price strong {
    font-size: 2.5rem;
    color: var(--p);
    line-height: 1;
}

.pricing-list {
    margin-bottom: 32px;
    flex: 1;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--g7);
}

.pricing-list li i {
    color: #2ecc71;
    width: 20px; 
    height: 20px;
    flex-shrink: 0;
}

/* CTA Section */
.srv-cta {
    padding: 80px 0;
    background: var(--g1);
    text-align: center;
}

.srv-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff !important;
}

.srv-cta p {
    font-size: 1.1rem;
    color: var(--g5);
    margin-bottom: 32px;
}

.srv-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Social Media Specifics */
.result-cards {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: nowrap;            /* keep all cards on a single line */
    overflow-x: auto;            /* allow horizontal scroll on very small screens */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;         /* space for scrollbar */
}

.result-card {
    background: var(--w);
    padding: 12px;               /* smaller to fit in one line */
    border-radius: var(--rl);
    text-align: center;
    border: 1px solid var(--g3);
    box-shadow: var(--s);
    flex: 0 0 200px;             /* fixed width but shrinkable on small screens */
    min-width: 140px;
}

.result-card .num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--p);
    margin-bottom: 4px;
}

.result-card .label {
    font-size: 0.95rem;
    white-space: nowrap;         /* keep label in one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-mock {
    width: 280px;
    background: var(--w);
    border-radius: 36px;
    border: 8px solid var(--d);
    padding: 12px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.phone-body {
    background: #fafafa;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

.ph-header {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--w);
}

.ph-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.ph-user {
    font-weight: 600;
    font-size: 0.85rem;
    flex: 1;
}

.ph-img {
    height: 280px;
    background: var(--g3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--w);
}

.ph-actions {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--d);
}

.ph-likes {
    padding: 0 12px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.ph-caption {
    padding: 0 12px;
    font-size: 0.8rem;
    color: var(--g5);
    line-height: 1.4;
}

/* Social Cards Grid */
.social-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 40px auto 0;
}

.social-card-full {
    display: flex;
    gap: 24px;
    background: var(--w);
    padding: 32px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    align-items: flex-start;
}

.scf-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 23, 137, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--p);
    flex-shrink: 0;
}

.scf-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--d);
}

.scf-text p {
    font-size: 0.95rem;
    color: var(--g5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.scf-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.scf-tag {
    background: var(--g1);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--g7);
}

/* Platforms (Social Media page) */
.platforms-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 28px;
    align-items: stretch;
}

.platform-card {
    background: var(--w);
    border: 1px solid var(--g3);
    padding: 20px 18px;
    border-radius: 14px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--t);
    box-shadow: 0 6px 30px rgba(2,6,23,0.03);
}

.platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(2,6,23,0.06);
    border-color: rgba(0,23,137,0.08);
}

.p-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0,23,137,0.06);
    color: var(--p);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.platform-card h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--d);
}

.platform-card p {
    margin: 0;
    color: var(--g5);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (min-width: 1200px) {
    .platforms-section { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 768px) {
    .platform-card { min-height: 140px; padding: 16px; }
}



/* Process Flow (improved) */
.pf-steps, .process-flow {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    position: relative;
    align-items: stretch;
}

.pf-steps::before, .process-flow::before {
    content: '';
    position: absolute;
    top: 56px;               /* linha alinhada ao centro dos círculos */
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--g3);
    z-index: 0;
}

.pf-step {
    position: relative;
    z-index: 1;
    background: var(--w);
    padding: 20px 18px;      /* mais espaço interno */
    text-align: center;
    flex: 1;
    border-radius: 14px;
    border: 1px solid var(--g3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 150px;       /* preenche melhor a área */
}

.pf-num {
    width: 64px;
    height: 64px;
    background: var(--p);
    color: var(--w);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 8px;
    border: 4px solid var(--w);
    box-shadow: 0 6px 18px rgba(2,6,23,0.04);
}

.pf-step h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--d);
}

.pf-step p {
    font-size: 0.95rem;
    color: var(--g5);
    line-height: 1.4;
    margin-top: 6px;
}

.pf-step:hover {
    transform: translateY(-6px);
    transition: var(--t);
    box-shadow: 0 14px 40px rgba(2,6,23,0.06);
}

@media (max-width: 992px) {
    .pf-steps, .process-flow {
        flex-direction: column;
        gap: 18px;
    }
    .pf-steps::before, .process-flow::before { display: none; }
    .pf-step { min-height: auto; padding: 14px; }
}


.check-list {
    margin: 24px 0 32px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--g7);
    line-height: 1.5;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 800;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: var(--w);
}

.compare-table-wrapper {
    overflow-x: auto;
    border-radius: var(--rl);
    box-shadow: var(--s);
    border: 1px solid var(--g3);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th, .compare-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--g1);
    text-align: center;
    font-size: 0.95rem;
}

.compare-table th {
    background: var(--g1);
    font-weight: 700;
    color: var(--d);
}

.compare-table th:first-child, .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--d);
    position: sticky;
    left: 0;
    background: inherit;
    z-index: 1;
}

.compare-table tr:hover {
    background-color: #f9fafb;
}

.compare-hl {
    /* Simplified subtle green tint for Coder Master column */
    background-color: rgba(46,204,113,0.06);
    color: var(--d);
    font-weight: 700;
}

/* RESPONSIVE FOR SERVICES */

@media (max-width: 1024px) {
    .srv-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-cards, .srv-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* keep .result-cards as single-line flex; removed grid override */
    
    .stats-bar {
        margin-top: 0;
        flex-wrap: wrap;
        gap: 20px;
    }

    .pf-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .srv-hero h1 {
        font-size: 2.2rem;
    }
    
    .pricing-cards, .srv-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 32px;
    }
    
    .social-card-full {
        flex-direction: column;
        text-align: center;
    }
    
    .scf-icon {
        margin: 0 auto;
    }
    
    .scf-tags {
        justify-content: center;
    }
    
    .pf-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .pf-step {
        padding: 0;
    }
    
    .srv-grid {
        gap: 40px;
    }
    
    .phone-mock {
        width: 100%;
        max-width: 280px;
    }
}
/* --- PÁGINAS INTERNAS (Restaurado) --- */

/* CONTATO */
.contato-hero {
    background: linear-gradient(135deg, var(--p), var(--pd));
    color: var(--w);
    padding: 120px 0 60px;
    text-align: center
}

.contato-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px
}

.contato-hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 500px;
    margin: 0 auto
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--w);
    opacity: .8;
    font-size: .9rem;
    margin-bottom: 20px;
    transition: var(--t)
}

.back-home:hover {
    opacity: 1
}

.contato-section {
    padding: 80px 0 100px;
    background: var(--g1)
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contato-info-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--d)
}

.contato-info-header p {
    font-size: 1rem;
    color: var(--g5);
    line-height: 1.6
}

.contato-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--w);
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    transition: var(--t)
}

.contato-card:hover {
    border-color: var(--p);
    box-shadow: 0 8px 30px rgba(0, 23, 137, .08);
    transform: translateY(-2px)
}

.contato-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(0, 23, 137, .06);
    border-radius: var(--r);
    flex-shrink: 0
}

.contato-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--d);
    margin-bottom: 4px
}

.contato-card p {
    font-size: .9rem;
    color: var(--g5);
    line-height: 1.5
}

.contato-card a {
    color: var(--p);
    font-weight: 600;
    transition: var(--t)
}

.contato-card a:hover {
    color: var(--pl)
}

.contato-horarios {
    padding: 24px;
    background: var(--w);
    border-radius: var(--rl);
    border: 1px solid var(--g3)
}

.contato-horarios h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--d);
    display: flex;
    align-items: center;
    gap: 8px
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--g1);
    font-size: .9rem
}

.horario-item:last-child {
    border-bottom: none
}

.horario-item span:first-child {
    color: var(--g7)
}

.horario-item span:last-child {
    font-weight: 600;
    color: var(--d)
}

.contato-social {
    display: flex;
    gap: 12px
}

.contato-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 23, 137, .06);
    font-size: 1.2rem;
    transition: var(--t);
    border: 1px solid var(--g3)
}

.contato-social a:hover {
    background: var(--p);
    border-color: var(--p);
    transform: translateY(-2px)
}

.form-card {
    background: var(--w);
    border-radius: var(--rl);
    padding: 40px;
    border: 1px solid var(--g3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.form-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--d)
}

.form-card>p {
    font-size: .9rem;
    color: var(--g5);
    margin-bottom: 28px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px
}

.form-group.full {
    grid-column: 1/-1
}

.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--g7)
}

.form-label .required {
    color: #e53e3e
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--g3);
    border-radius: var(--r);
    font-size: .95rem;
    font-family: inherit;
    color: var(--d);
    background: var(--w);
    transition: var(--t);
    outline: none
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--p);
    box-shadow: 0 0 0 3px rgba(0, 23, 137, .08)
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--g3)
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center
}

.form-submit {
    width: 100%;
    margin-top: 8px
}

.form-msg {
    padding: 16px 20px;
    border-radius: var(--r);
    font-size: .9rem;
    font-weight: 600;
    display: none;
    margin-top: 16px;
    text-align: center
}

.form-msg.success {
    display: block;
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0
}

.form-msg.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
}

.form-msg.loading {
    display: block;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe
}

.form-privacy {
    font-size: .8rem;
    color: var(--g5);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5
}

.mapa-section {
    padding: 0;
    background: var(--g1)
}

.mapa-container {
    width: 100%;
    height: 350px;
    border-radius: var(--rl);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 24px
}

.mapa-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: var(--rl)
}

@media(max-width:768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contato-hero h1 {
        font-size: 2rem
    }

    .contato-hero {
        padding: 100px 0 40px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .form-card {
        padding: 28px 20px
    }

    .mapa-container {
        padding: 0 16px
    }
}
/* --- PORTFOLIO PAGE STYLES (Restaurado) --- */

.portfolio-page-hero {
    background: linear-gradient(135deg, var(--p), var(--pd));
    color: var(--w);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.portfolio-page-hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-full-section {
    padding: 80px 0;
    background: var(--g1);
}

.portfolio-filtros {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* JS uses 'filtro-btn' */
.filtro-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid var(--g3);
    background: var(--w);
    font-weight: 600;
    color: var(--g7);
    cursor: pointer;
    transition: var(--t);
    font-size: 0.95rem;
    font-family: inherit;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: var(--p);
    color: var(--w);
    border-color: var(--p);
    box-shadow: 0 4px 15px rgba(0, 23, 137, 0.2);
}

.portfolio-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Portfolio Item Styles (used by JS) */
.portfolio-item {
    background: var(--w);
    border-radius: var(--rl);
    overflow: hidden;
    border: 1px solid var(--g3);
    transition: var(--t);
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--p);
}

.portfolio-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--g2);
    position: relative;
    overflow: hidden;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 23, 137, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t);
    text-decoration: none;
    cursor: pointer;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    color: var(--w);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border: 1px solid var(--w);
    border-radius: 50px;
    transition: var(--t);
    background: transparent;
}

.portfolio-overlay span:hover {
    background: var(--w);
    color: var(--p);
}

.portfolio-item h4 {
    padding: 20px 20px 8px;
    /* header padding */
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--d);
    margin: 0;
}

.portfolio-tag {
    display: inline-block;
    padding: 0 20px 20px;
    /* footer padding */
    font-size: 0.85rem;
    color: var(--g5);
    font-weight: 500;
}

.portfolio-counter {
    text-align: center;
    margin-top: 40px;
    color: var(--g5);
    font-weight: 500;
}

/* PROCESS-GRID: alinhamento consistente dos passos (fix para textos desalinhados) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    align-items: stretch;
    grid-auto-rows: 1fr; /* força mesmas alturas entre colunas */
}

.process-step {
    background: var(--w);
    border: 1px solid var(--g3);
    border-radius: var(--r);
    padding: 12px 18px; /* reduzir padding superior para aproximar do topo */
    display: flex;
    flex-direction: column; /* Número acima -> título -> descrição */
    justify-content: flex-start;
    gap: 8px;
    height: 100%; /* herda a altura da grid-auto-rows */
    transition: var(--t);
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--s);
}

.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--d);
    background: linear-gradient(135deg, var(--a), var(--ad));
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.process-step h4 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--d);
}

.process-step p {
    margin: 0;
    color: var(--g5);
    line-height: 1.6;
    margin-top: 0;
}

.process-step > .process-num {
    margin-bottom: 6px;
    align-self: flex-start;
}

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

@media (max-width: 992px) {
    .portfolio-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .portfolio-page-hero h1 {
        font-size: 2.2rem;
    }
}
/* --- SERVICE PAGES COMMON STYLES (Restaurado) --- */

/* Hero */
.srv-hero {
    background: linear-gradient(135deg, var(--p), var(--pd));
    color: var(--w);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.srv-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.srv-shape1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.srv-shape2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
}

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

.srv-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.srv-hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
    transition: var(--t);
}

.back-link:hover {
    color: var(--w);
}

/* Sections */
.srv-section {
    padding: 80px 0;
}

.srv-section.alt {
    background: var(--g1);
}

/* Features Grid */
.srv-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.srv-feat {
    background: var(--w);
    padding: 30px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    transition: var(--t);
    height: 100%;
}

.srv-feat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--p);
}

.srv-feat-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 23, 137, 0.05);
    color: var(--p);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.srv-feat h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--d);
}

.srv-feat p {
    font-size: 0.95rem;
    color: var(--g5);
    line-height: 1.6;
}

/* Service Grid (Text + Visual) */
.srv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.srv-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--d);
}

.srv-text p {
    font-size: 1.05rem;
    color: var(--g5);
    margin-bottom: 20px;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--g6);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--p);
    font-weight: bold;
}

/* Server Visual (Hospedagem) */
.server-visual {
    background: var(--w);
    padding: 30px;
    border-radius: var(--rl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--g3);
}

.server-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--g2);
}

.server-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.server-icon {
    width: 40px;
    height: 40px;
    background: var(--g1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
}

.server-info {
    flex: 1;
}

.server-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--d);
}

.server-info span {
    font-size: 0.85rem;
    color: var(--g5);
}

.server-status {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--w);
    padding: 40px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    text-align: center;
    transition: var(--t);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--p);
    box-shadow: 0 20px 40px rgba(0, 23, 137, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--p);
    color: var(--w);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--d);
}

.original-price {
    text-decoration: line-through;
    color: var(--g4);
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--p);
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--g5);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--g2);
    color: var(--g6);
}

.pricing-features li:last-child {
    border: none;
}

.pricing-features li i {
    color: #22c55e;
    width: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Social Media Specifics */
.social-card-full {
    background: var(--w);
    padding: 40px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.scf-icon {
    width: 80px;
    height: 80px;
    background: var(--g1);
    border-radius: var(--rl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--p);
    flex-shrink: 0;
}

.scf-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--d);
}

.scf-text p {
    font-size: 1rem;
    color: var(--g5);
    margin-bottom: 15px;
}

.scf-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scf-tag {
    background: var(--g2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--g6);
    font-weight: 500;
}

/* Result Cards (section-specific: `.srv-section`) */
.srv-section .result-cards {
    display: flex;
    gap: 20px;                        /* mais espaçamento entre boxes */
    margin-top: 32px;
    justify-content: center;
    flex-wrap: nowrap;                /* keep one row */
    overflow-x: auto;                /* allow horizontal scroll on very narrow screens */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.srv-section .result-card {
    background: var(--w);
    padding: 18px;                   /* mantido para presença visual */
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    text-align: center;
    flex: 0 0 240px;                 /* coluna um pouco maior */
    min-width: 180px;
    box-shadow: none;                /* sombra removida */
}

.srv-section .result-card .num {
    font-size: 1.8rem;               /* números mais visíveis */
    font-weight: 800;
    color: var(--p);
    margin-bottom: 6px;
}

.srv-section .result-card .label {
    font-size: 1rem;
    white-space: nowrap;              /* manter em uma linha */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* keep existing generic `.result-icon` / `h3` / `p` rules for other usages */
.result-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 23, 137, 0.05);
    color: var(--p);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--d);
}

.result-card p {
    font-size: 0.95rem;
    color: var(--g5);
} 

/* Responsive */
@media (max-width: 992px) {
    .srv-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    /* .result-cards left as horizontal flex in `.srv-section` — removed grid stacking */

    .social-card-full {
        flex-direction: column;
        text-align: center;
    }
}
/* --- MORE SERVICE STYLES (Restaurado 2) --- */

/* MARKETING DIGITAL */
.mkt-service-full {
    display: flex;
    gap: 30px;
    background: var(--w);
    padding: 40px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    margin-bottom: 30px;
    align-items: flex-start;
    transition: var(--t);
}

.mkt-service-full:hover {
    border-color: var(--p);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.mkt-sf-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 23, 137, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--p);
    flex-shrink: 0;
}

.mkt-sf-text {
    flex: 1;
}

.mkt-sf-text h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--d);
}

.mkt-sf-text p {
    font-size: 1rem;
    color: var(--g5);
    margin-bottom: 15px;
}

.mkt-sf-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mkt-sf-tag {
    background: var(--g1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--g7);
}

/* SOCIAL MEDIA - PHONE MOCKUP */
.phone-mock {
    width: 300px;
    background: var(--w);
    border-radius: 40px;
    border: 8px solid var(--d);
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
}

.phone-notch-sm {
    width: 100px;
    height: 20px;
    background: var(--d);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 2;
}

.phone-body {
    background: #fafafa;
    border-radius: 28px;
    overflow: hidden;
    height: 550px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ph-header {
    padding: 40px 15px 10px;
    /* Top padding for notch */
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--w);
    border-bottom: 1px solid var(--g2);
}

.ph-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.ph-user {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--d);
    flex: 1;
}

.ph-img {
    height: 300px;
    background: var(--g2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g4);
    font-size: 3rem;
}

.ph-actions {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    color: var(--d);
}

.ph-likes {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0 15px 5px;
    color: var(--d);
}

.ph-caption {
    font-size: 0.85rem;
    padding: 0 15px;
    color: var(--g6);
    line-height: 1.4;
}

.social-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* REGISTRO DE DOMÍNIO - ANALOGY CARD */
.analogy-card {
    background: var(--w);
    padding: 30px;
    border-radius: var(--rl);
    border: 1px solid var(--g3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.analogy-card h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--d);
    border-bottom: 1px solid var(--g2);
    padding-bottom: 15px;
}

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

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

.analogy-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analogy-row strong {
    display: block;
    font-size: 1rem;
    color: var(--d);
    margin-bottom: 4px;
}

.analogy-row span {
    font-size: 0.9rem;
    color: var(--g5);
    line-height: 1.4;
    display: block;
}

/* DOMAIN SEARCH */
.domain-search-box {
    background: var(--w);
    padding: 40px;
    border-radius: var(--rl);
    box-shadow: var(--s);
    text-align: center;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.domain-input-group {
    display: flex;
    gap: 10px;
    margin: 0 auto;
}

.domain-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--g3);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: var(--t);
}

.domain-input:focus {
    border-color: var(--p);
}

@media (max-width: 768px) {
    .mkt-service-full {
        flex-direction: column;
        text-align: center;
    }

    .mkt-sf-icon {
        margin: 0 auto 20px;
    }

    .mkt-sf-tags {
        justify-content: center;
    }

    .domain-input-group {
        flex-direction: column;
    }

    .phone-mock {
        width: 100%;
        max-width: 300px;
    }

    .domain-search-box {
        margin-top: 0;
        padding: 30px 20px;
    }
}

/* ---- page-specific: registro-de-dominio fixes ---- */
/* alias for markup that uses `.domain-input-row` */
.domain-input-row {
    display: flex;
    gap: 10px;
    max-width: 680px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .domain-input-row { flex-direction: column; }
}

/* Extension cards (EXTENSÕES) */
.ext-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
    align-items: stretch;
}

.ext-card {
    position: relative;
    background: var(--w);
    border: 1px solid var(--g3);
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--s);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 260px;
    transition: var(--t);
}

.ext-card.popular {
    border-color: var(--p);
    box-shadow: 0 12px 30px rgba(0,23,137,0.06);
}

.ext-pop-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--p);
    color: var(--w);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ext-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--d);
}

.ext-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--p);
}

.ext-price span { font-size: .9rem; color: var(--g5); font-weight:700; margin-left:6px; }

.ext-desc {
    color: var(--g5);
    font-size: .95rem;
    line-height: 1.5;
    margin-top: 6px;
    flex: 1; /* pushes button to bottom so all cards align */
}

.ext-card a.btn-full { margin-top: 8px; }

.ext-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(2,6,23,0.06); }

@media (max-width: 992px) {
    .ext-cards { grid-template-columns: repeat(2, 1fr); }
    .ext-card { min-height: 220px; }
}
@media (max-width: 600px) { .ext-cards { grid-template-columns: 1fr; } }

/* Compact FAQ (faq-mini) used on registro-de-dominio */
.faq-mini {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--w);
    box-shadow: var(--s);
}

.faq-mini-item { border-bottom: 1px solid var(--g1); }
.faq-mini-item:last-child { border-bottom: none; }

.faq-mini-q {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    background: transparent;
    border: 0;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-mini-icon { font-weight: 800; color: var(--p); }

.faq-mini-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease, padding .25s ease;
    padding: 0 20px;
}

.faq-mini-item.active .faq-mini-a {
    max-height: 400px;
    padding: 16px 20px 20px;
}

.faq-mini-a p { margin: 0; color: var(--g5); line-height: 1.6; }

/* ---- end page-specific fixes ---- */

/* Domain hero — improved spacing & visuals for registro-de-dominio */
.domain-hero {
    padding: 100px 0;                                  /* mais espaço acima/abaixo */
    background: linear-gradient(180deg, var(--g1) 0%, var(--w) 100%);
}

.domain-hero .domain-search-box {
    margin-top: 0;                                     /* não sobrepor o bloco */
    max-width: 720px;
    padding: 44px;
    border-radius: 18px;
    box-shadow: 0 28px 60px rgba(2,6,23,0.06);
    border: 1px solid rgba(2,6,23,0.04);
}

.domain-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: center;
}

.domain-suggestions { margin-top: 12px; display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.chips { display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.chip {
    background: transparent;
    border: 1px solid var(--g3);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .9rem;
    cursor: pointer;
    transition: var(--t);
    color: var(--d);
}
.chip:hover { background: var(--p); color: var(--w); border-color: var(--p); transform: translateY(-2px); }

.domain-note { margin-top: 12px; font-size: .9rem; color: var(--g5); }

.domain-helpers { display:flex; flex-direction:column; gap:12px; }
.domain-helpers .help-item {
    display:flex;
    gap:12px;
    background: var(--w);
    border: 1px solid var(--g3);
    padding: 12px;
    border-radius: 12px;
    align-items: center;
}
.domain-helpers .help-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,23,137,0.06);
    color: var(--p);
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.domain-helpers .help-item div { display:flex; flex-direction:column; gap:4px; }
.domain-helpers .help-item strong { font-size: 1rem; color: var(--d); font-weight: 700; }
.domain-helpers .help-item span { color: var(--g5); font-size: .95rem; }

@media (max-width: 992px) {
    .domain-hero { padding: 60px 0; }
    .domain-hero .domain-search-box { padding: 30px; }
    .domain-hero-grid { grid-template-columns: 1fr; }
}

/* SERVICE VISUAL MOCKS */
.srv-section {
    padding: 60px 0;
}

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

.srv-grid { grid-auto-flow: dense }

.srv-grid.reverse {
    /* explicit placement: keep markup order but force text left, visual right */
    grid-template-columns: 1fr 1fr;
}
.srv-grid.reverse .srv-text { grid-column: 1 }
.srv-grid.reverse .srv-visual { grid-column: 2 }

.srv-text {
    padding: 8px 4px;
}

.srv-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.srv-visual-card {
    width: 560px;
    max-width: 94%;
    background: #ffffff;
    border: 1px solid rgba(17,24,39,0.06);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(10,10,20,0.12);
    overflow: hidden;
}

.srv-visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(0,0,0,0.02), transparent);
    border-bottom: 1px solid var(--g1);
    font-size: .85rem;
    color: var(--g5);
}

.srv-visual-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}
.srv-visual-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
}
.srv-visual-dots span:nth-child(1){ background:#ff5f57 }
.srv-visual-dots span:nth-child(2){ background:#ffbd2e }
.srv-visual-dots span:nth-child(3){ background:#28c840 }

.srv-visual-body{
    padding:22px;
    background: #fafbfd;
}

.srv-mock-bar{ height:12px; background:rgba(15,23,42,0.06); border-radius:8px; width:80%; margin-bottom:14px; border:1px solid rgba(0,0,0,0.03) }
.srv-mock-hero{ height:110px; background: linear-gradient(135deg,#E8FF9A,#B4D600); border-radius:8px; margin-bottom:12px; border:1px solid rgba(0,0,0,0.03) }
.srv-mock-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:12px }
.srv-mock-card{ height:80px; background:#f3f5f8; border-radius:8px; border:1px solid rgba(15,23,42,0.04) }
.srv-mock-line{ height:12px; background:rgba(15,23,42,0.06); border-radius:8px; margin-bottom:10px; width:100% }
.w70{ width:70% }

/* Make CTA visible even if inline opacity was set low */
.srv-visual-body > div:first-child { opacity: 1 !important; }

/* Slightly increase visual container height for better presence */
.srv-visual { min-height: 260px; }

/* Process Grid (steps) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 28px;
    align-items: stretch;
    grid-auto-rows: 1fr;
}
.process-step {
    background: var(--w);
    border: 1px solid rgba(17,24,39,0.04);
    padding: 22px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(10,10,20,0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    transition: transform .22s var(--t), box-shadow .22s var(--t);
}
.process-step:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(10,10,20,0.12);
}
.process-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg,var(--p),#123a9e 80%);
    color: var(--w);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(10,10,20,0.06);
}
.process-step h4 { margin: 6px 0 8px; font-size: 1.05rem }
.process-step p { margin: 0; color: var(--g5); line-height:1.6; margin-top: auto }

@media (max-width: 900px){
    .process-grid { grid-template-columns: 1fr; }
    .process-num { margin-bottom: 8px }
}

@media (max-width: 900px){
    .srv-grid{ grid-template-columns: 1fr; text-align: center }
    .srv-visual-card{ width:100%; max-width:560px; margin: 0 auto }
    .srv-mock-grid{ grid-template-columns: repeat(2,1fr) }
}

/* TEMP FIX: hide stray text nodes inside .srv-visual while debugging
   This zeroes the font on the container and restores it for expected children.
   Keep temporary — we'll remove after root cause is confirmed. */
.srv-visual { font-size: 0 !important; }
.srv-visual-header { font-size: .85rem !important; }
.srv-visual-header span { font-size: .75rem !important; }

/* OVERRIDE: Forçar alinhamento superior consistente dos passos (resolve margin-top:auto conflitante) */
.process-grid { align-items: start; }
.process-step { padding-top: 12px !important; padding-bottom: 16px !important; }
.process-step > .process-num { margin-bottom: 8px !important; align-self: flex-start !important; }
.process-step h4 { margin: 6px 0 6px !important; }
.process-step p { margin: 0 !important; margin-top: 0 !important; line-height: 1.6 !important; }

@media (max-width: 900px) {
    .process-step { padding-top: 10px !important; padding-bottom: 12px !important; }
}
.srv-visual-body { font-size: .95rem !important; }
.srv-visual-body * { font-size: inherit !important; }


/* ====== LOCAL FIXES: restore visuals and equalize pricing cards ====== */

/* Remove temporary debug zero-font rule by restoring normal font sizing */
.srv-visual { font-size: initial !important; }
.srv-visual-header { font-size: .85rem !important; }
.srv-visual-header span { font-size: .75rem !important; }

/* Ensure pricing cards line up and have equal heights */
.pricing-cards { align-items: stretch; grid-auto-rows: 1fr; }
.pricing-card { display: flex; flex-direction: column; height: 100%; }
.pricing-card .pricing-list { flex: 1 1 auto; }
.pricing-card .btn { margin-top: auto; }

/* Keep pricing cards white inside dark section and ensure buttons are readable */
.srv-section.dark .pricing-card {
    background: var(--w);
    border-color: var(--g3);
    color: var(--d);
}
.srv-section.dark .pricing-card h3,
.srv-section.dark .pricing-card .pricing-price strong,
.srv-section.dark .pricing-card p,
.srv-section.dark .pricing-list li {
    color: var(--d);
}
/* Make outline buttons visible on white cards (use brand color) */
.pricing-card .btn-outline {
    color: var(--p);
    border-color: var(--p);
    background: transparent;
}
.pricing-card .btn-outline:hover {
    background: var(--p);
    color: var(--w);
}

/* Keep featured card prominent but avoid overflow on small screens */
@media (max-width: 768px) {
    .pricing-card.featured { transform: scale(1); }
}

/* Small tweak: ensure srv-visual card content remains readable */
.srv-visual-card { background-clip: padding-box; }

/* End local fixes */

/* ====== Ajuste: largura do server-visual (Hospedagem) ====== */
/* Mantém o visual consistente com outros mocks e responsivo */
.server-visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .server-visual {
        max-width: 100%;
        padding: 0 12px;
    }
}

/* fim do ajuste de largura */

/* ====== Compare table visuals (melhoria de aparência e responsividade) ====== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--s);
    border: 1px solid var(--g3);
    background: var(--w);
}
.compare-table th,
.compare-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: .95rem;
    border-bottom: 1px solid var(--g1);
}
.compare-table thead th {
    background: linear-gradient(90deg, rgba(0,23,137,0.04), rgba(0,23,137,0.02));
    color: var(--d);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 2;
}
.compare-table tbody tr:nth-child(even) {
    background: rgba(0,0,0,0.02);
}
.compare-table .compare-hl {
    background: linear-gradient(90deg, rgba(11,102,255,0.05), transparent);
    font-weight: 700;
    color: var(--d);
}

@media (max-width: 768px) {
    .compare-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .compare-table th,
    .compare-table td {
        padding: 12px;
    }
}

/* Simplified column highlight: subtle blue background only */
.compare-table .compare-hl {
    background-color: rgba(11,102,255,0.06);
    color: var(--d);
    font-weight: 700;
    transition: background .18s ease;
}

/* Keep header cell consistent but simple */
.compare-table thead .compare-hl {
    background-color: rgba(11,102,255,0.08);
    color: var(--d);
    font-weight: 800;
}

@media (max-width: 768px) {
    .compare-table .compare-hl { padding-left: 16px; }
}

/* fim das melhorias da tabela */
