     /* Estilos Globais */
        :root {
            --primary-color: #7E57C2;
            --secondary-color: #9575CD;
            --dark-primary-color: #ffffff;
            --dark-secondary-color: #311B92;
            --light-text-color: #F5F5F5;
            --lighter-text-color: #FFFFFF;
            --text-color-dark-bg: #D1C4E9;
            --text-color-light-bg: #2A2A2A;
            --white-color: #ffffff;
            --border-color-dark: #B39DDB;
            --border-color-light: #E0E0E0;
            --font-family: 'Poppins', sans-serif;
            --border-radius: 6px;
            --shadow-dark: rgba(0, 0, 0, 0.1);
            --shadow-light: rgba(0, 0, 0, 0.05);
            --text-medium: #555;
            --purple-accent: #7E57C2;
            --green-accent: #27AE60;
            --orange-accent: #FF6D00;
        }

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

        body {
            font-family: var(--font-family);
            line-height: 1.6;
            color: var(--text-color-light-bg);
            background-color: var(--white-color);
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        ul {
            list-style: none;
        }

        /* Container principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* Seções */
        section {
            padding: 60px 0;
            width: 100%;
        }

        /* Botões */
        .button {
            display: inline-block;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .button.primary {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: 2px solid var(--primary-color);
        }

        .button.primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .button.outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .button.outline:hover {
            background-color: var(--primary-color);
            color: var(--white-color);
        }

        /* Títulos */
        h1, h2, h3 {
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
        }

        h1 {
            font-size: 3.2em;
            letter-spacing: -1px;
            color: var(--text-color-light-bg);
        }

        h2 {
            font-size: 2.8em;
            text-align: center;
            margin-bottom: 50px;
            font-weight: 600;
            color: var(--text-color-light-bg);
        }

        h3 {
            font-size: 1.6em;
            font-weight: 600;
        }

        p {
            margin-bottom: 20px;
            font-size: 1.1em;
        }

        /* Header */
        .main-header {
            background-color: var(--white-color);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 50px;
            transition: transform 0.3s ease;
            filter: brightness(0) saturate(0.5) contrast(1.2);
        }

        .logo img:hover {
            transform: scale(1.05);
        }

        /* Navegação */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 40px;
            font-size: 1.05em;
        }

        .main-nav ul {
            display: flex;
            gap: 35px;
        }

        .main-nav .nav-link {
            font-weight: 500;
            color: var(--text-color-light-bg);
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .main-nav .nav-link::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -8px;
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s ease, background-color 0.3s ease;
            border-radius: 2px;
        }

        .main-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .main-nav .nav-link:hover::after {
            width: 100%;
            background-color: var(--primary-color);
        }

        /* Seletor de idioma */
        .lang-selector {
            position: relative;
            cursor: pointer;
            margin-left: 20px;
            user-select: none;
        }

        .lang-selector .selected-lang {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border: 1px solid var(--border-color-dark);
            border-radius: var(--border-radius);
            font-weight: 500;
            color: var(--light-text-color);
            background-color: var(--dark-secondary-color);
            transition: all 0.2s ease;
        }

        .lang-selector .selected-lang:hover {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(126, 87, 194, 0.2);
        }

        .lang-selector .selected-lang img {
            width: 22px;
            height: 16px;
            object-fit: cover;
            border-radius: 2px;
        }

        .lang-selector .selected-lang .fas {
            font-size: 0.8em;
            margin-left: 5px;
            transition: transform 0.3s ease;
            color: var(--primary-color);
        }

        .lang-selector.open .selected-lang .fas {
            transform: rotate(180deg);
        }

        .lang-dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--dark-secondary-color);
            min-width: 180px;
            box-shadow: 0px 8px 16px 0px var(--shadow-dark);
            z-index: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            top: calc(100% + 10px);
            left: 0;
            border: 1px solid var(--border-color-dark);
        }

        .lang-dropdown-content a {
            color: var(--light-text-color);
            padding: 12px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .lang-dropdown-content a img {
            width: 22px;
            height: 16px;
            object-fit: cover;
            border-radius: 2px;
        }

        .lang-dropdown-content a:hover {
            background-color: var(--dark-primary-color);
            color: var(--primary-color);
        }

        .lang-selector.open .lang-dropdown-content {
            display: block;
        }

        /* Menu mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none;
            outline: none;
            z-index: 1001;
        }

        .menu-toggle .bar {
            width: 28px;
            height: 3px;
            background-color: var(--text-color-light-bg);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .menu-toggle.open .bar:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .menu-toggle.open .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.open .bar:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Hero Section */
        .hero-domain {
            background-color: var(--white-color);
            color: var(--text-color-light-bg);
            padding: 20px 0 40px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-domain .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-content-left {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .hero-domain h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
        }

        .hero-domain p {
            color: var(--text-color-light-bg);
            font-size: 1.2em;
            margin: 0 0 30px 0;
            font-weight: 400;
        }

        .hero-domain .price-from {
            font-size: 1.4em;
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 20px;
            margin-bottom: 30px;
        }

        .hero-domain .button.primary {
            padding: 16px 40px;
            font-size: 1.2em;
            font-weight: 600;
            border: none;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            border-radius: 50px;
        }

        .hero-domain .button.primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.3);
        }

        .hero-image-right {
            flex: 1;
            min-width: 300px;
            max-width: 100%;
            text-align: center;
        }

        .hero-image-right img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }

        /* Seção de Planos */
        .plans-wrapper {
            overflow: hidden;
            position: relative;
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        .plans {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 20px 0;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .plans::-webkit-scrollbar {
            display: none;
        }

        .plan {
            min-width: 280px;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: 0 4px 10px var(--shadow-light);
            border: 1px solid var(--border-color-light);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .plan.highlighted {
            border: 2px solid var(--green-accent);
            position: relative;
        }

        .plan.highlighted::before {
            content: "RECOMENDADO";
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--green-accent);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }

        .plan h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            min-height: 60px;
        }

        .plan.highlighted h3 {
            color: var(--green-accent);
        }

        .plan p {
            font-size: 0.95em;
            margin-bottom: 10px;
            color: var(--text-medium);
        }

        .price {
            font-size: 1.8em;
            font-weight: 600;
            color: var(--primary-color);
            margin: 20px 0;
        }

        .plan.highlighted .price {
            color: var(--green-accent);
        }

        .price small {
            font-size: 0.6em;
            font-weight: 400;
        }

        .price-note {
            font-size: 0.8em;
            color: var(--orange-accent);
            margin-top: -15px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .btn-order {
            display: block;
            padding: 12px 20px;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: auto;
            width: 100%;
        }

        .plan.highlighted .btn-order {
            background-color: var(--green-accent);
        }

        .btn-order:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .plan.highlighted .btn-order:hover {
            background-color: #2ECC71;
        }

        .scroll-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2em;
            cursor: pointer;
            z-index: 10;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .scroll-button:hover {
            opacity: 1;
        }

        .scroll-button.left {
            left: 10px;
        }

        .scroll-button.right {
            right: 10px;
        }

        /* Seção de Performance */
        .performance-section {
            background-color: var(--white-color);
            padding: 80px 0;
        }

        .performance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .performance-item {
            background-color: #fcfcfc;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px var(--shadow-light);
            border: 1px solid var(--border-color-light);
            transition: all 0.3s ease;
        }

        .performance-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }

        .performance-item .icon {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .performance-item h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
        }

        .performance-item p {
            font-size: 0.95em;
            color: var(--text-medium);
        }

        /* Seção de Painel de Controle */
        .client-admin-section {
            background-color: #ffffff;
            padding: 80px 0;
        }

        .client-admin-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .client-admin-text {
            flex: 1;
            min-width: 300px;
        }

        .client-admin-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .client-admin-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .client-admin-features {
            margin-top: 30px;
        }

        .client-admin-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1.05em;
        }

        .client-admin-feature-item .icon {
            font-size: 1.2em;
            color: var(--primary-color);
        }

        /* Seção de Abas */
        .features-tabs {
            background-color: var(--white-color);
            padding: 80px 0;
        }

        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 12px 25px;
            background: none;
            border: none;
            border-bottom: 3px solid transparent;
            font-size: 1em;
            font-weight: 600;
            color: var(--text-medium);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-button.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .tab-button:hover {
            color: var(--primary-color);
        }

        /* Regras para as abas */
    .tab-content {
        display: none; /* Esconde todas as abas por padrão */
    }

    .tab-content.active {
        display: block; /* Mostra apenas a aba com a classe 'active' */
    }

    .tab-navigation {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        flex-wrap: wrap; /* Permite que os botões quebrem a linha em telas menores */
        gap: 15px; /* Espaço entre os botões */
    }

    .tab-button {
        background-color: #f0f0f0;
        color: var(--text-dark);
        border: none;
        padding: 12px 25px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 8px;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        font-weight: 600;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .tab-button:hover {
        background-color: var(--purple-light);
        color: var(--purple-accent);
        transform: translateY(-2px); /* Pequeno efeito de elevação no hover */
    }

    .tab-button.active {
        background-color: var(--purple-accent);
        color: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-1px); /* Mantém um leve efeito de elevação quando ativo */
    }

    .tab-content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }

    .feature-box {
        background-color: #ffffff;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .feature-box .icon {
        font-size: 48px;
        margin-bottom: 20px;
        color: var(--purple-accent);
    }

    .feature-box h3 {
        font-size: 24px;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .feature-box p {
        font-size: 16px;
        color: var(--text-medium);
        line-height: 1.6;
    }

    /* Responsividade para a seção de abas */
    @media (max-width: 768px) {
        .tab-navigation {
            flex-direction: column;
            align-items: center;
        }

        .tab-button {
            width: 90%; /* Ocupa mais largura em telas menores */
            margin-bottom: 10px;
        }

        .tab-content-grid {
            grid-template-columns: 1fr; /* Uma coluna em telas muito pequenas */
        }
    }
  /* Seção de Demonstração do Painel */
        .hestia-panel-section {
            background-color: #ffffff;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .subtitle {
            font-size: 1.2em;
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto;
        }

        .panel-showcase {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .browser-mockup {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .browser-bar {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background: #f1f1f1;
            border-bottom: 1px solid var(--border-color-light);
        }

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

        .browser-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
        }

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

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

        .browser-dots span:nth-child(3) {
            background: #27c93f;
        }

        .browser-url {
            flex: 1;
            text-align: center;
            font-size: 0.8em;
            color: var(--text-medium);
            padding: 0 20px;
        }

        .panel-image-container {
            position: relative;
        }

        .panel-screenshot {
            width: 100%;
            height: auto;
            display: block;
        }

        .panel-highlight {
            position: absolute;
            z-index: 2;
        }

        .highlight-dot {
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            position: relative;
            animation: pulse 2s infinite;
        }

        .highlight-tooltip {
            position: absolute;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: var(--border-radius);
            font-size: 0.9em;
            white-space: nowrap;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

        .panel-features {
            flex: 1;
            min-width: 300px;
        }

        .feature {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .feature-icon {
            font-size: 1.5em;
            color: var(--primary-color);
            margin-top: 5px;
        }

        .feature-content h3 {
            font-size: 1.3em;
            margin-bottom: 5px;
        }

        .feature-content p {
            font-size: 0.95em;
            color: var(--text-medium);
        }

        .demo-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: white;
            border-radius: var(--border-radius);
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .demo-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

    /* Styles for the bottom footer (social icons and copyright) */
.main-footer {
    background-color: #ffffff;
    color: #333;
    padding: 10px 0; /* REDUZIDO AQUI para aproximar */
    text-align: center;
    border-top: 0;
}
		
		.main-footer .payment-methods {
    display: flex; /* Já é flexbox */
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: flex-end; /* ALINHA AS BANDEIRAS À DIREITA DENTRO DO SEU CONTAINER */
    margin-left: auto; /* Empurra esta div para a direita dentro do footer-bottom */
}
		
/* Atualize a regra para as imagens das bandeiras */
.main-footer .payment-methods img {
    height: 28px; /* Altura padrão para as imagens */
    width: auto; /* Mantém a proporção */
    margin: 0 4px; /* Espaçamento ajustado entre as bandeiras */
    vertical-align: middle;
    /* transition: transform 0.2s ease; /* Opcional: animação ao passar o mouse */
}

/* Opcional: efeito de hover para as imagens */
.main-footer .payment-methods img:hover {
    /* transform: scale(1.05); */
    opacity: 0.8;
}

/* Estilo para o sinal de "+" */
.main-footer .payment-methods .payment-plus {
    font-size: 28px; /* Tamanho do "+" para combinar com as imagens */
    color: #666; /* Cor similar aos ícones */
    font-weight: bold;
    margin-left: 5px; /* Espaço após a última bandeira */
    vertical-align: middle;
}

/* Remova a regra .main-footer p, pois o copyright será movido */
.main-footer p {
    /* Esta regra será removida ou modificada para não afetar o copyright */
    /* font-size: 14px; */
    /* margin-top: 15px; */
    /* opacity: 0.8; */
    display: none; /* Esconda o p existente no main-footer se não for usado para mais nada */
}


/* NOVO ESTILO PARA O FOOTER INFERIOR (POLÍTICA DE PRIVACIDADE E COPYRIGHT) */
.footer-sub-bottom {
    background-color: var(--white-color); /* Fundo branco ou similar ao footer */
    color: #555; /* Cor de texto padrão */
    padding: 15px 0; /* Padding superior e inferior */
    /* border-top: none; */ /* Pode comentar ou remover esta linha */
    border-top: 0; /* Ou defina como 0 para remover completamente */
}

.footer-sub-container {
    display: flex;
    justify-content: space-between; /* Alinha copyright à esquerda e política à direita */
    align-items: center; /* Centraliza verticalmente */
    flex-wrap: wrap; /* Permite quebrar em telas menores */
    gap: 10px; /* Espaçamento quando os itens quebram */
}

.copyright-text {
    font-size: 14px;
    opacity: 0.9;
    flex-grow: 1; /* Permite que o texto do copyright cresça */
    text-align: left; /* Alinha o texto à esquerda */
}

.privacy-policy {
    font-size: 14px;
    text-align: right; /* Alinha o link da política à direita */
}

.privacy-policy .privacy-link {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy .privacy-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Media Queries para responsividade da nova seção */
@media (max-width: 768px) {
    .footer-sub-container {
        flex-direction: column; /* Empilha os itens verticalmente */
        text-align: center; /* Centraliza o texto */
    }
    .copyright-text,
    .privacy-policy {
        text-align: center; /* Centraliza ambos os textos */
        width: 100%; /* Ocupa a largura total */
    }
    .copyright-text {
        margin-bottom: 5px; /* Espaço entre copyright e política empilhados */
    }
}
  /* Why Us Section / Recursos Exclusivos */
        .why-us-domain {
            padding: 100px 0;
            background-color: var(--white-color); /* Fundo branco */
            color: var(--text-color-light-bg); /* Texto preto */
        }

        .why-us-domain h2 {
            margin-bottom: 60px;
            color: var(--text-color-light-bg); /* Texto preto */
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .feature-item {
            background-color: var(--white-color); /* Fundo branco */
            padding: 35px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 4px 10px var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color-light);
        }

        .feature-item:hover {
            transform: translateY(-12px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            border-color: var(--primary-color);
        }

        .feature-item i {
            font-size: 3.5em;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .feature-item h3 {
            margin-bottom: 12px;
            color: var(--text-color-light-bg); /* Texto preto */
        }

        .feature-item p {
            font-size: 1em;
            color: var(--text-color-light-bg); /* Texto preto */
            margin-bottom: 0;
        }

        /* Email Plans Section */
        .domain-extensions { /* Renamed class for consistency with old name, but content is new */
            padding: 100px 0;
            background-color: var(--white-color); /* Fundo branco */
            color: var(--text-color-light-bg); /* Texto preto */
            text-align: center;
        }

        .domain-extensions h2 {
            color: var(--text-color-light-bg); /* Texto preto */
        }

        .domain-extensions p {
            max-width: 900px;
            margin: 0 auto 60px auto;
            font-size: 1.15em;
            color: var(--text-color-light-bg); /* Texto preto */
        }

        .extension-cards { /* Renamed class for consistency with old name, but content is new */
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            justify-content: center;
        }

        .extension-card { /* Renamed class for consistency with old name, but content is new */
            background-color: var(--white-color); /* Fundo branco */
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px var(--shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid var(--border-color-light);
            color: var(--text-color-light-bg); /* Texto preto */
        }

        .extension-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .extension-card h3 {
            font-size: 2.2em;
            color: var(--primary-color); /* Manter verde */
            margin-bottom: 15px;
            font-weight: 700;
        }

        .extension-card .price {
            font-size: 1.8em;
            font-weight: 600;
            color: 333;
            margin-bottom: 15px;
        }
		
.extension-card .discount-note {
    font-size: 0.8em; /* Tamanho da fonte menor */
    color: #555; /* Cor para o texto de desconto */
    display: block; /* Para que fique em sua própria linha */
    margin-top: -5px; /* Ajuste a margem para posicionamento */
    margin-bottom: 10px; /* Espaçamento abaixo */
}
/* Para destacar o plano Rise - AGORA EM LARANJA */
.extension-card.highlight-rise-plan {
    background-color: #fff3e0; /* Um laranja bem claro para o fundo */
    border: 2px solid #ff9800; /* Uma borda laranja mais escura (laranja padrão) */
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.2); /* Sombra suave com tom laranja */
    transform: scale(1.03); /* Leve aumento para destacá-lo */
    transition: all 0.3s ease-in-out; /* Suaviza a transição de qualquer mudança */
}

.extension-card.highlight-rise-plan h3 {
    color: #ef6c00; /* Cor mais escura para o título do plano destacado (laranja escuro) */
}


/* Para destacar o plano Rise */

        .extension-card ul {
            list-style: none;
            text-align: left;
            margin: 20px 0;
            padding: 0 20px;
            flex-grow: 1;
        }

        .extension-card ul li {
            font-size: 1em;
            color: var(--text-color-light-bg);
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .extension-card ul li:last-child {
            margin-bottom: 0;
        }

        .extension-card ul li::before {
            content: "\f00c"; /* FontAwesome check icon */
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: var(--primary-color);
            position: absolute;
            left: 0;
            top: 2px;
        }


        .extension-card .button.outline {
            padding: 10px 20px;
            font-size: 0.95em;
            color: var(--primary-color);
            border-color: var(--primary-color);
            margin-top: 20px;
        }
        .extension-card .button.outline:hover {
            background-color: var(--primary-color);
            color: var(--white-color);
        }

        /* Security & Reliability Section */
        .security-reliability {
            background-color: #f7f7f7; /* Um tom de cinza claro para fundo */
            padding: 100px 0;
            text-align: center;
        }
        .security-reliability h2 {
            color: var(--text-color-light-bg);
            margin-bottom: 20px;
        }
        .security-reliability p {
            color: var(--text-color-light-bg);
            max-width: 800px;
            margin: 0 auto 60px auto;
            font-size: 1.15em;
        }
        .security-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .security-feature-item {
            background-color: var(--white-color);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 8px var(--shadow-light);
            text-align: center;
            border: 1px solid var(--border-color-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .security-feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .security-feature-item i {
            font-size: 3em;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .security-feature-item h3 {
            font-size: 1.4em;
            color: var(--text-color-light-bg);
            margin-bottom: 10px;
        }
        .security-feature-item p {
            font-size: 0.95em;
            color: var(--text-color-light-bg);
            margin-bottom: 0;
        }

        /* DNS Configuration Section */
        .dns-config-section {
            padding: 100px 0;
            background-color: var(--white-color);
            text-align: center;
        }
        .dns-config-section h2 {
            color: var(--text-color-light-bg);
            margin-bottom: 20px;
        }
        .dns-config-section p {
            color: var(--text-color-light-bg);
            max-width: 900px;
            margin: 0 auto 60px auto;
            font-size: 1.15em;
        }
        .dns-config-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .dns-config-item {
            background-color: #fcfcfc;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            text-align: left;
            border: 1px solid var(--border-color-light);
            display: flex;
            flex-direction: column;
        }
        .dns-config-item h3 {
            color: var(--primary-color);
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .dns-config-item p {
            color: var(--text-color-light-bg);
            font-size: 1em;
            margin-bottom: 15px;
            flex-grow: 1;
        }
        .dns-config-item pre {
            background-color: #eef;
            color: #333;
            padding: 15px;
            border-radius: var(--border-radius);
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9em;
            overflow-x: auto;
            white-space: pre-wrap; /* Garante que o texto quebre linhas */
            word-wrap: break-word; /* Força a quebra de palavras */
        }
        .dns-config-item ul {
            margin: 10px 0 15px 20px;
            list-style: disc;
            color: var(--text-color-light-bg);
        }
        .dns-config-item ul li {
            margin-bottom: 5px;
            font-size: 1em;
        }
        .important-note {
            background-color: #fff3cd; /* Amarelo claro */
            color: #856404; /* Texto amarelo escuro */
            border: 1px solid #ffeeba;
            border-radius: var(--border-radius);
            padding: 20px;
            margin-top: 40px;
            font-weight: 500;
            font-size: 1.1em;
            text-align: left;
        }
        .important-note strong {
            font-weight: 700;
            color: #664d03;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: #f7f7f7;
            text-align: center;
        }
        .faq-section h2 {
            color: var(--text-color-light-bg);
            margin-bottom: 60px;
        }
        .faq-items {
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }
        .faq-item {
            border: 1px solid var(--border-color-light);
            border-radius: var(--border-radius);
            margin-bottom: 20px;
            overflow: hidden;
            background-color: var(--white-color);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .faq-question {
            padding: 20px 25px;
            background-color: #fdfdfd;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--text-color-light-bg);
            font-size: 1.1em;
            transition: background-color 0.3s ease;
        }
        .faq-question:hover {
            background-color: #f0f0f0;
        }
        .faq-question i {
            font-size: 1em;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }
        .faq-question.active i {
            transform: rotate(180deg);
        }
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, padding 0.5s ease-out;
            color: var(--text-color-light-bg);
            font-size: 1em;
        }
        .faq-answer.active {
            max-height: 600px; /* Adjust based on content height */
            padding-bottom: 20px;
            padding-top: 10px;
        }
        .faq-answer ul {
            margin: 10px 0 15px 20px;
            list-style: disc;
        }
        .faq-answer ul li {
            margin-bottom: 5px;
        }
        .faq-answer h4 {
            font-size: 1.2em;
            margin-top: 20px;
            margin-bottom: 10px;
            color: var(--dark-primary-color);
        }

        /* Call to Action Section */
        .cta-domain {
            background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white-color);
            padding: 100px 0;
            text-align: center;
        }

        .cta-domain h2 {
            color: var(--white-color);
            font-size: 3.2em;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .cta-domain p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3em;
            max-width: 800px;
            margin: 0 auto 50px auto;
            font-weight: 300;
        }

        .cta-domain .button {
            background-color: var(--dark-primary-color); /* Botão com cor de fundo mais escura para contraste */
            color: var(--white-color);
            padding: 18px 45px;
            font-size: 1.3em;
            font-weight: 700;
            border: none;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            border-radius: 50px;
        }

        .cta-domain .button:hover {
            background-color: var(--dark-secondary-color);
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.4);
        }

        .footer-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            text-align: center;
        }

        .footer-logo {
            height: 35px;
            filter: brightness(0) invert(0);
            margin-bottom: 20px;
        }

        .footer-bottom {
            padding-top: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .social-icons {
            margin-top: 20px;
        }

        .social-icons a {
            color: var(--text-color-light-bg);
            font-size: 1.6em;
            margin: 0 12px;
            transition: color 0.3s ease, transform 0.2s ease;
        }

        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideDown {
            from {
                transform: translateY(-20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                width: 100%;
                background-color: var(--white-color);
                box-shadow: 0 8px 16px var(--shadow-dark);
                padding: 20px;
                animation: slideDown 0.3s ease-out forwards;
                align-items: center;
            }

            .main-nav.open {
                display: flex;
				height: calc(100vh - 65px); /* Ocupa o restante da tela abaixo dos 65px do top */
        overflow-y: auto; /* Adiciona rolagem se o conteúdo for maior que a altura */

            }

            .main-nav ul {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 20px;
                width: 100%;
                text-align: center;
            }

            .main-nav ul li {
                width: 100%;
            }

            .main-nav .nav-link {
                display: block;
                padding: 12px 0;
                width: 100%;
                border-bottom: 1px solid var(--border-color-dark);
            }

            .main-nav .nav-link:last-child {
                border-bottom: none;
            }

            .main-nav .nav-link::after {
                width: 0 !important;
            }

            .main-nav .lang-selector {
                margin: 20px 0;
                width: 100%;
                justify-content: center;
            }

            .main-nav .button.outline {
                width: 80%;
                max-width: 250px;
                margin-bottom: 10px;
            }

            .lang-selector .lang-dropdown-content {
                width: 100%;
                left: 0;
                right: 0;
                top: 100%;
                background-color: var(--dark-secondary-color);
                border: 1px solid var(--border-color-dark);
            }

            .menu-toggle {
                display: flex;
            }

            h1 {
                font-size: 2.8em;
            }

            h2 {
                font-size: 2.2em;
                margin-bottom: 30px;
            }

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

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .hero-domain {
                padding: 20px 0 30px 0;
            }

            .hero-domain h1 {
                font-size: 2.5em;
            }

            .hero-domain p {
                font-size: 1.1em;
            }

            .panel-showcase {
                flex-direction: column;
            }

            .browser-mockup {
                order: 1;
            }

            .panel-features {
                order: 2;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 50px 0;
            }

            h1 {
                font-size: 2.2em;
            }

            h2 {
                font-size: 1.8em;
            }

            .hero-domain {
                padding: 20px 0 30px 0;
            }

            .hero-domain .button.primary {
                padding: 14px 30px;
                font-size: 1.1em;
            }

            .feature-item, .feature-box, .performance-item, .plan {
                padding: 25px;
            }
        }
		