/*
Theme Name: G4 Smart Solutions
Author: Daniel Mello
Description: Tema leve para venda de hospedagem
Version: 3.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-1: #000066;
    --blue-2: #05053f;
    --blue-3: #0a0a85;
    --orange: #ff6600;
    --orange-dark: #e65c00;
    --white: #ffffff;
    --text: #1f2430;
    --muted: #667085;
    --bg: #f5f7fb;
    --card: #ffffff;
    --border: #e9edf5;
    --shadow: 0 12px 35px rgba(8, 15, 52, 0.08);
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.narrow {
    max-width: 820px;
    margin: 0 auto;
}

/* HEADER */
.site-header {
    background: rgba(0, 0, 102, 0.96);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.header-flex {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
}

.logo a {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.4px;
    padding: 5px 0;
}

.logo img {
    max-height: 52px;
    width: auto;
}

.main-nav .menu,
header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
}

header nav ul li a:hover {
    color: var(--orange);
}

header nav ul li:last-child a {
    background: var(--orange);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.18);
}

header nav ul li:last-child a:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* BOTÕES */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--orange);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 14px 28px rgba(255, 102, 0, 0.22);
}

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* HERO */
.hero {
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.premium-hero {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.12), transparent 25%),
        linear-gradient(135deg, var(--blue-1), var(--blue-2));
    padding: 120px 20px 110px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;
    max-width: 980px;
    margin: 0 auto 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 21px;
    max-width: 820px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-mini-benefits {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-mini-benefits span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
}

/* SECTIONS */
.section {
    padding: 90px 20px;
}

.section-soft {
    background: linear-gradient(180deg, #f7f9fd 0%, #f2f5fb 100%);
}

.section-dark {
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    color: var(--white);
    text-align: center;
}

.section h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: var(--blue-1);
    text-align: center;
    letter-spacing: -0.8px;
}

.section p {
    max-width: 820px;
    margin: 0 auto 14px;
    text-align: center;
    font-size: 18px;
    color: var(--muted);
}

.section-dark h2 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.88);
}

/* PAGE */
.page-banner {
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    color: var(--white);
    text-align: center;
    padding: 90px 20px;
}

.page-banner h1 {
    font-size: 48px;
    margin: 0;
}

.page-content {
    background: var(--white);
    padding: 70px 20px;
}

.page-content .container {
    max-width: 1000px;
}

/* PLANS */
.plan-cards {
    display: flex;
    gap: 26px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 42px;
}

.plan-card {
    position: relative;
    background: var(--card);
    border-radius: 22px;
    padding: 34px 26px;
    width: 340px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
}

.plan-card.featured {
    border: 2px solid var(--orange);
    transform: translateY(-8px);
    box-shadow: 0 18px 44px rgba(255, 102, 0, 0.12);
}

.plan-card.featured:hover {
    transform: translateY(-12px);
}

.plan-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff2e8;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 40px;
    color: var(--blue-1);
    margin-bottom: 8px;
    letter-spacing: -0.6px;
}

.plan-card .price {
    font-size: 46px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 18px;
}

.plan-card p {
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--muted);
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.plan-card ul li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.plan-card .btn-primary {
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(255, 102, 0, 0.18);
}

/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.feature-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.feature-box h3 {
    font-size: 24px;
    color: var(--blue-1);
    margin-bottom: 10px;
}

.feature-box p {
    text-align: left;
    margin: 0;
    font-size: 16px;
    color: var(--muted);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(180deg, #f7f9fd 0%, #eef2fb 100%);
}

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    color: var(--white);
    padding: 70px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-col p,
.footer-col li {
    color: #cccccc;
    font-size: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--white);
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--orange);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-btn:hover {
    background: var(--orange-dark);
    color: var(--white) !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    color: var(--white);
    margin: 0;
}

/* WHATS FLOAT */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    z-index: 9999;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 19px;
    }

    .section h2 {
        font-size: 36px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .header-flex {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }

    header nav ul,
    .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .premium-hero {
        padding: 90px 20px 80px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 17px;
    }

    .section {
        padding: 70px 20px;
    }

    .section h2 {
        font-size: 30px;
    }

    .page-banner h1 {
        font-size: 34px;
    }

    .plan-card {
        width: 100%;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-6px);
    }

    .logo a {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.domain-search {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.domain-search input {
    width: 360px;
    max-width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background: rgba(255,255,255,0.96);
    color: #1f2430;
}

.domain-search input::placeholder {
    color: #667085;
}

.domain-search button {
    background: #FF6600;
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.domain-search {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.domain-search input {
    width: 360px;
    max-width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background: rgba(255,255,255,0.96);
    color: #1f2430;
}

.domain-search input::placeholder {
    color: #667085;
}

.domain-search button {
    background: #FF6600;
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.domain-search button:hover {
    background: #e65c00;
    transform: translateY(-2px);
}
.domain-search {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.domain-search input {
    width: 360px;
    max-width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background: rgba(255,255,255,0.96);
    color: #1f2430;
}

.domain-search input::placeholder {
    color: #667085;
}

.domain-search button {
    background: #FF6600;
    color: #ffffff;
    border: none;
    padding: 15px 22px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.domain-search button:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

.domain-note {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.78) !important;
}
.domain-result-box {
    padding: 40px 20px 80px;
}

.domain-card {
    background: #ffffff;
    border: 1px solid #e9edf5;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(8, 15, 52, 0.08);
    padding: 40px 30px;
    text-align: center;
}

.domain-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff2e8;
    color: #ff6600;
    font-size: 13px;
    font-weight: 700;
}

.domain-card h2 {
    color: #000066;
    font-size: 34px;
    margin-bottom: 12px;
}

.domain-name {
    font-size: 32px;
    font-weight: 800;
    color: #ff6600;
    margin-bottom: 18px;
    word-break: break-word;
}

.domain-text {
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 17px;
    color: #667085 !important;
}

.domain-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.domain-info {
    background: #f7f9fd;
    border-radius: 16px;
    padding: 22px;
}

.domain-info p {
    margin-bottom: 10px;
    color: #1f2430 !important;
}

.domain-alert {
    color: #667085 !important;
    font-size: 14px;
}

.domain-wa-btn {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #ffffff !important;
}

.domain-wa-btn:hover {
    background: #1ebe5b !important;
    border-color: #1ebe5b !important;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .domain-card {
        padding: 28px 20px;
    }

    .domain-card h2 {
        font-size: 28px;
    }

    .domain-name {
        font-size: 24px;
    }
}