/* =========================
   RESET E VARIÁVEIS
   ========================= */
:root {
    --white: #ffffff;
    --bg: #f5f8fb;
    --muted: #64748b;
    --text: #0b2136;
    --brand: #006aff; /* Cor Principal (Azul) */
    --brand-2: #ff9800; /* Cor de Destaque (Laranja/Hospedagem) */
    --success: #00a86b;
    --card: #ffffff;
    --glass: rgba(11, 33, 54, 0.04);
    --radius: 12px;
    --container: 1200px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(180deg, var(--bg), #ffffff 60%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-size: 16px;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color .2s ease;
}

h1, h2, h3, h4 {
    color: var(--text);
    line-height: 1.2;
}

.small {
    font-size: 14px;
}

.muted {
    color: var(--muted);
}

.text-center {
    text-align: center;
}

/* =========================
   CONTAINER / LAYOUT
   ========================= */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1200;
    box-shadow: 0 4px 18px rgba(11, 33, 54, 0.04);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.brand .logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brand), #035aa6);
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

nav .links {
    display: flex;
    gap: 18px;
    align-items: center;
}

nav .links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}

nav .links a:hover {
    background: rgba(11, 33, 54, 0.03);
    color: var(--brand);
}

.cta-primary {
    background: linear-gradient(90deg, var(--brand), #1477e0);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(6, 86, 180, 0.12);
    transition: opacity .2s ease, transform .2s ease;
}

.cta-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
}

/* =========================
   HERO
   ========================= */
.hero {
    padding: 72px 0 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 480px;
    gap: 36px;
    align-items: center;
}

.hero-image-placeholder {
    /* Simulação de um bloco visual/imagem */
    background: linear-gradient(135deg, #e8f4ff, #d2e4ff);
    border-radius: 20px;
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    border: 1px solid rgba(0, 106, 255, 0.1);
}

.hero-image-placeholder .hero-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 33, 54, 0.1);
    width: 100%;
}

.hero-image-placeholder label {
    font-weight: 700;
    color: var(--brand);
    display: block;
    margin-bottom: 4px;
}


.eyebrow {
    display: inline-block;
    background: linear-gradient(90deg, #e8f4ff, #fff5eb);
    color: var(--brand);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.hero h1 {
    margin: 18px 0 12px;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
}

.hero p.lead {
    color: var(--muted);
    font-size: 18px;
    max-width: 680px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.hero-actions .btn {
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s ease, transform .2s ease;
}

.hero-actions .primary {
    background: var(--brand);
    color: white
}

.hero-actions .secondary {
    background: transparent;
    border: 1px solid rgba(11, 33, 54, 0.1);
    color: var(--text);
}

.hero-actions .secondary:hover {
    background: rgba(11, 33, 54, 0.03);
    transform: translateY(-1px);
}

.hero-metadata {
    margin-top: 18px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-weight: 600;
}

.small-btn {
    padding: 8px 14px;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.btn {
    border: none;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    transition: opacity .2s ease, transform .2s ease;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* =========================
   SERVICES (DETALHADOS)
   ========================= */
.service-detail-block {
    display: grid;
    grid-template-columns: 80px 3fr 1fr; /* Colunas: Ícone | Conteúdo | Features */
    gap: 24px;
    align-items: flex-start;
    padding: 30px;
    margin-bottom: 24px;
    border-radius: 14px;
    background: var(--card);
    border: 1px solid var(--glass);
    box-shadow: 0 8px 24px rgba(11, 33, 54, 0.04);
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.svc-purple {
    background: linear-gradient(180deg, #6a00ff, #3b00c9);
}

.svc-green {
    background: linear-gradient(180deg, #00b07a, #008f5b);
}

.svc-yellow {
    background: linear-gradient(180deg, #ffcc00, #ffb400);
}

.service-detail-content h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.service-detail-content p {
    margin: 0 0 12px;
    color: var(--text);
}

.service-detail-cta {
    margin-top: 16px;
    display: inline-block;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: var(--bg);
    color: var(--brand);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.service-detail-features {
    padding-left: 20px;
    border-left: 1px solid var(--glass);
}

.service-detail-features h4 {
    margin-top: 0;
    font-size: 16px;
    color: var(--brand);
    font-weight: 700;
}

.service-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-features li {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 4px;
}

/* Ajustes específicos para CORES */

/* Bloco Verde/Servidores/Cloud/Infra */
.service-detail-block:nth-child(2) .service-detail-features h4 {
    color: var(--success);
}

.service-detail-block:nth-child(2) .service-detail-features {
    border-left-color: rgba(0, 176, 122, 0.2);
}

.service-detail-block:nth-child(2) .tags span {
    color: var(--success);
    background: #e6fff6;
}

/* Bloco Amarelo/Hospedagem/HostGator Style */
.service-detail-block:nth-child(3) .service-detail-features h4 {
    color: var(--brand-2);
}

.service-detail-block:nth-child(3) .service-detail-features {
    border-left-color: rgba(255, 152, 0, 0.2);
}

.service-detail-block:nth-child(3) .tags span {
    color: var(--brand-2);
    background: #fff5e0;
}


/* =========================
   PLANS (CONTRATOS DE SERVIÇOS)
   ========================= */
.plans {
    margin-top: 24px;
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    background: var(--card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--glass);
    box-shadow: 0 8px 24px rgba(11, 33, 54, 0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11, 33, 54, 0.08);
}

.plan-highlight {
    border: 2px solid var(--brand);
    box-shadow: 0 10px 30px rgba(0, 106, 255, 0.15);
}

.plan-title {
    font-weight: 800;
    font-size: 22px
}

.plan-price {
    font-weight: 900;
    color: var(--brand);
    font-size: 32px;
    line-height: 1;
}

.plan-highlight .plan-price {
    color: var(--brand);
}

.plan-features {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(11, 33, 54, 0.08);
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    color: var(--muted);
    position: relative;
    padding-left: 20px;
}

.plan-features li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 10px;
}

/* =========================
   HOSTING PLANS (PLANO DE HOSPEDAGEM)
   ========================= */
.plans-hosting {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.plan-host-card {
    background: var(--card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--glass);
    box-shadow: 0 8px 24px rgba(11, 33, 54, 0.04);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.plan-host-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(11, 33, 54, 0.08);
}

.plan-host-highlight {
    border: 2px solid var(--brand-2);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.plan-price-group {
    display: flex;
    align-items: flex-end;
    margin-top: 10px;
    margin-bottom: 10px;
}

.plan-price-group .plan-price {
    font-weight: 900;
    color: var(--brand-2);
    font-size: 32px;
    line-height: 1;
}

.plan-price-group .small {
    margin-left: 4px;
    margin-bottom: 4px;
}

.plan-tag {
    color: var(--brand-2);
    font-weight: 700;
    text-transform: uppercase;
}

.plan-features-host {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px dashed rgba(11, 33, 54, 0.04);
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    flex-grow: 1;
}

.plan-features-host li {
    padding: 8px 0;
    color: var(--text);
    position: relative;
    padding-left: 20px;
    font-size: 15px;
}

.plan-features-host li:before {
    content: "✔️";
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 10px;
    color: var(--brand-2);
}


/* =========================
   GERAIS / CONTENT
   ========================= */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 4px solid var(--bg);
    box-shadow: 0 8px 20px rgba(0, 106, 255, 0.2);
}

.process-step h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

.process-step p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
}

.clients {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.client {
    padding: 12px 24px;
    border: 1px solid var(--glass);
    border-radius: 8px;
    font-weight: 600;
    color: var(--muted);
    opacity: 0.8;
    background: var(--card);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    padding: 24px;
    border-left: 4px solid var(--brand);
    background: #f7f9fc;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 12px rgba(11, 33, 54, 0.05);
}

.quote {
    font-style: italic;
    color: var(--text);
    font-size: 17px;
}

/* =========================
   CONTACT
   ========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.contact {
    background: var(--card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--glass);
    box-shadow: 0 8px 20px rgba(11, 33, 54, 0.04);
}

.contact label {
    display: block;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 15px;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(11, 33, 54, 0.1);
    resize: vertical;
}

.contact button {
    margin-top: 24px;
    width: 100%;
}

.contact-info {
    padding: 24px;
    background: #eaf1f9;
    border-radius: 12px;
    border: 1px solid rgba(0, 106, 255, 0.1);
}

.contact-info h4 {
    margin-top: 0;
    font-size: 17px;
    color: var(--brand);
}

/* =========================
   FOOTER
   ========================= */
footer {
    background: #0b2136;
    color: white;
    padding: 30px 0 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

footer h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 12px;
}

footer a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 8px;
    transition: color .2s ease;
}

footer a:hover {
    color: var(--brand);
}

/* =========================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================= */

@media (max-width: 1200px) {
    .service-detail-block {
        grid-template-columns: 80px 3fr 1.5fr;
    }
}

@media (max-width: 1000px) {
    /* Menu Mobile */
    .menu-toggle {
        display: block
    }

    nav .links {
        display: none;
    }

    nav .links[aria-expanded="true"] {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 84px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    nav .links[aria-expanded="true"] a {
        padding: 10px 0;
        border-radius: 0;
    }

    /* Grids principais quebram para 1 coluna */
    .hero-grid {
        grid-template-columns:1fr;
        gap: 24px;
    }

    .hero-image-placeholder {
        order: -1;
        height: 250px;
    }

    .contact-grid {
        grid-template-columns:1fr
    }

    /* Serviços quebram o layout em bloco */
    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-detail-icon {
        display: none;
    }

    .service-detail-features {
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed var(--glass);
        padding-top: 16px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero {
        padding: 40px 0
    }

    .process-steps, .plans, .plans-hosting, .testimonials {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .tags {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .tags span {
        text-align: center;
        width: 100%;
    }
}


/* small animation helpers */
.fade-in {
    animation: fadeIn .6s ease both;
}


@keyframes WaveWhatsApp {
    0% {
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.whatsapp-plug-icon2 {
    position: relative !important;
    left: 10px;
    display: none;
    top: 0;
}

.whatsapp-plug-icon2.active {
    display: block;
    transition: .5s;
}

.whatsapp-plug-icon {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    cursor: pointer;
    background-color: #0ba360;
    transition: .3s;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/whatsapp.svg');
    background-size: 50% auto;
    display: none;
}

.whatsapp-plug-icon.active {
    display: block;
    transition: .5s;
}

.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before {
    content: '';
    position: absolute;
    opacity: 0;
    border: 4px solid #0ba360;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    animation: WaveWhatsApp 1.5s ease infinite;
    animation-delay: 0s;
}

.whatsapp-plug-icon::after {
    animation-delay: .5s;
}

.whatsapp-plug-icon {
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px)
    }
    to {
        opacity: 1;
        transform: none
    }
}