a:focus,
a:hover {
    color: #b76021;
    outline: none;
    text-decoration: none;
}

.header-section .navbar .navbar-header .navbar-brand img {
  margin-left: 0px;
  padding: 33px 0;
}

.header-section .navbar .navbar-collapse, .no-padding, td {
  margin-right: -100px;
  padding: 0;
}

/* ===== Seção do Texto de Digitação (Ajustado e Responsivo) ===== */
.gubax-typing-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 8px 20px;
  margin: 0 auto;
  max-width: 100%;
}

/* Título principal */
.gubax-typing-title {
    font-size: 80px !important;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -1px;
    word-break: break-word;
    margin-bottom: 20px;
}

/* Texto animado */
.gubax-typing-effect-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 80px !important;
    line-height: 1.1em !important;
    color: #ff7800 !important;
    min-height: 1em;
    display: inline-block;
    font-weight: 600;
}

/* Cursor animado */
.gubax-typing-effect-text::after {
    content: '|';
    animation: gubax-blink-caret 0.75s infinite;
    color: #ff7800;
}

@keyframes gubax-blink-caret {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

/* ===== Responsividade refinada ===== */

/* Tablets grandes e notebooks médios (até 1200px) */
@media (max-width: 1200px) {
    .gubax-typing-title {
        font-size: 70px !important;
    }

    .gubax-typing-effect-text {
        font-size: 60px !important;
    }
}

/* Tablets padrão e celulares maiores (até 992px) */
@media (max-width: 992px) {
    .gubax-typing-title {
        font-size: 60px !important;
    }

    .gubax-typing-effect-text {
        font-size: 50px !important;
    }
}

/* Celulares médios (até 768px) */
@media (max-width: 768px) {
    .gubax-typing-title {
        font-size: 44px !important;
    }

    .gubax-typing-effect-text {
        font-size: 36px !important;
    }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
    .gubax-typing-title {
        font-size: 34px !important;
    }

    .gubax-typing-effect-text {
        font-size: 28px !important;
    }
}

.minimalist-data-center-badge-svg {
  margin-top: 20px;
  margin-bottom: 20px;
}


/* Seção com altura definida */
.section-padding6 {
    height: 580px;
    padding: 0;
}

.speed-highlight {
  background: linear-gradient(90deg, #ff6600, #ffa366, #ff6600);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 3s ease-in-out infinite;
  font-weight: 600;
}

@keyframes gradient-move {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

.infra-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #5a9632;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(90, 150, 50, 0.1);
  border: 1px solid #5a9632;
  line-height: 1.0;
  box-shadow: 0 0 6px rgba(90, 150, 50, 0.2);
}

.icon-premium {
  animation: pulsePremium 1.8s infinite ease-in-out;
  font-size: 18px;
  transform-origin: center;
}

/* Efeito de pulso suave */
@keyframes pulsePremium {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Dark mode */
body.dark-mode .infra-premium {
  background-color: rgba(90, 150, 50, 0.15);
  color: #cfffad;
  border-color: #7fd45e;
}

/* ======================= Botões "Minha Conta" e "Carrinho" Ajustados ======================== */

/* Container flex para alinhar todos os itens */
.header-section .top-bar .header-right-bar ul {
    display: flex;
    align-items: center; /* todos centralizados na mesma linha */
    gap: 12px; /* espaço entre itens */
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Links normais */
.header-section .top-bar .header-right-bar .social-icon li a,
.header-section .top-bar .header-right-bar .access li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c354c;
    padding: 0;
    line-height: 1;
    gap: 5px;
}

/* Botão Minha Conta */
.header-section .top-bar .header-right-bar .access li#loginAction a {
    background-color: #68AB39;
    color: #fff !important;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    height: 40px; /* altura fixa */
    box-sizing: border-box;
}

/* Botão Carrinho  */
.header-section .top-bar .header-right-bar .access li#cartAction a {
    background-color: #68AB39;
    color: #fff !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;  /* largura fixa quadrada */
    height: 40px; /* mesma altura do "Minha Conta" */
    font-size: 16px;
    box-sizing: border-box;
}

/* Hover */
.header-section .top-bar .header-right-bar .access li#loginAction a:hover,
.header-section .top-bar .header-right-bar .access li#cartAction a:hover {
    background-color: #5a9733;
}

.header-section .top-bar .header-right-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    height: 40px;
}

.header-section .top-bar .header-right-bar .access {
    display: inline-block;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    max-width: 250px;

}

.header-section .top-bar .header-right-bar .access li {
    display: inline-block;
    margin-left: 8px;
}

.header-section .top-bar .header-right-bar .access li:first-child {
    margin-left: 0;
}

.header-section .top-bar .header-right-bar .access li a {
    background-color: #68AB39;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 14px; /* Botão mais alto e largo */
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
    position: relative;
    top: 8px; /* Ajuste fino para alinhar mesmo com padding maior */
    box-sizing: border-box;
}

.header-section .top-bar .header-right-bar .access li a:hover {
    background-color: #5a9632;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(104, 171, 57, 0.3);
}

.header-section .top-bar .header-right-bar .social-icon {
    margin: 0;
    margin-top: 5px;
}

.header-section .top-bar .header-right-bar .social-icon li a {
    font-size: 14px;
    color: #2c354c;
    text-decoration: none;
}

.header-section .top-bar .header-right-bar .social-icon li a:hover {
    color: #ff7800;
}

/* BARRA DE PESQUISA DOMÍNIO */
.gubax-domain-search-minimal {
    background: #000;
    padding-top: 50px;
    padding: 40px 0;
    border-bottom: 1px solid #000;
    font-family: 'Quicksand', sans-serif;
}

.gubax-input-group-minimal {
    display: flex;
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.gubax-input-group-minimal:focus-within {
    border-color: #68AB39;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(104, 171, 57, 0.1);
    transform: translateY(-2px);
}

.gubax-input-prefix-minimal {
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #f8f9fa;
    color: #6c757d;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid #e9ecef;
    white-space: nowrap;
}

.gubax-domain-input-minimal {
    flex: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    background: transparent;
    color: #2c3e50;
}

.gubax-domain-input-minimal::placeholder {
    color: #8e9aaf;
}

.gubax-search-btn-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 30px;
    background: #68AB39;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gubax-search-btn-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.gubax-search-btn-minimal:hover::before {
    left: 100%;
}

.gubax-search-btn-minimal:hover {
    background: #5a9632;
    transform: scale(1.02);
}

.gubax-search-btn-minimal:active {
    transform: scale(0.98);
}

.gubax-search-btn-minimal svg {
    width: 20px;
    height: 20px;
}

.gubax-search-btn-minimal.loading {
    pointer-events: none;
    opacity: 0.8;
}

.gubax-search-btn-minimal.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: gubaxSpinMinimal 1s linear infinite;
}

@keyframes gubaxSpinMinimal {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .gubax-domain-search-minimal {
        padding: 20px 0;
    }

    .gubax-input-group-minimal {
        flex-direction: column;
        border-radius: 20px;
    }

    .gubax-input-prefix-minimal {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        justify-content: center;
        padding: 15px;
    }

    .gubax-domain-input-minimal {
        padding: 15px 20px;
        text-align: center;
    }

    .gubax-search-btn-minimal {
        justify-content: center;
        padding: 15px 20px;
        border-radius: 0 0 18px 18px;
    }
}

@media (max-width: 480px) {
    .gubax-search-btn-minimal .gubax-search-text-minimal {
        display: none;
    }
}

.gubax-domain-search {
    padding: 20px 0;
}

.gubax-domain-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
}

.gubax-domain-box {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 6px 8px;
    border: 2px solid transparent;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
    transition: border-color .15s ease;
}

.gubax-domain-box:focus-within {
    border-color: #5a9632;
}

.gubax-domain-prefix {
    padding: 0 18px;
    font-weight: 700;
    font-size: 15px;
    color: #999;
    user-select: none;
}

.gubax-domain-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 10px;
    font-size: 18px;
    color: #333;
    background: transparent;
}

.gubax-domain-input::placeholder {
    color: #aaa;
}

.gubax-domain-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5a9632;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s ease;
}

.gubax-domain-btn:hover {
    background: #4f862b;
    box-shadow: 0 10px 30px rgba(90,150,50,.45);
}

.gubax-domain-meta {
    margin-top: 8px;
    min-height: 22px;
    position: relative;
}

.gubax-domain-hint {
    margin: 0;
    font-size: 14px;
    color: #999;
    text-align: center;
    transition: opacity .25s ease, transform .25s ease;
}

.gubax-ia-link {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #ff7800;
    text-decoration: none;
    padding: 2px 0;
    opacity: 0;
    transform: translateY(4px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.gubax-ia-link:hover {
    color: #ff7800;
}

.gubax-ia-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
}

.gubax-domain-form.is-typing .gubax-domain-hint {
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
}

.gubax-domain-form.is-typing .gubax-ia-link {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* =========================================================
        Contato-Section STYLE - VERSÃO MOBILE OTIMIZADA
============================================================ */

.contato-section {
    position: relative;
    background: #ff7100;
    background-size: cover;
    padding: 65px 0 10px;
}

.contato-section::before,
.contato-section::after {
    content: "";
    position: absolute;
}

.contato-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato-section .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin: 0;
    flex-wrap: wrap;
}

.contato-section .caption {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    max-width: 500px;
}

.contato-section .caption img {
    max-width: 100%;
    height: auto;
}

.contato-section .col-md-6 {
    position: relative;
    z-index: 5;
    flex: 0 0 auto;
    max-width: 500px;
    margin: 0;
    padding: 0;
}

.contato-section .contato-wrapper {
    position: relative;
    z-index: 5;
    text-align: left;
}

.contato-section .contato-wrapper .small-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 48px;
    color: #FFF;
}

.contato-section .contato-wrapper h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 35px;
    color: #FFF;
    margin-bottom: 43px;
}

.contato-section .contato-wrapper p {
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
    color: #FFF;
    margin-bottom: 43px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .contato-section {
        padding: 40px 15px 30px;
    }
    
    .contato-section .container {
        max-width: 100%;
        padding: 0;
    }
    
    .contato-section .row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contato-section .caption {
        order: 1;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contato-section .caption img {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
    
    .contato-section .col-md-6 {
        order: 2;
        max-width: 100%;
        width: 100%;
    }
    
    .contato-section .contato-wrapper {
        text-align: center;
        padding: 0 10px;
    }
    
    .contato-section .contato-wrapper .small-text {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 15px;
        display: block;
    }
    
    .contato-section .contato-wrapper h3 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .contato-section .contato-wrapper .btn {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-block;
        margin-top: 10px;
    }
}

/* Responsividade para dispositivos muito pequenos */
@media (max-width: 480px) {
    .contato-section {
        padding: 10px 10px 60px;
    }
    
    .contato-section .row {
        gap: 25px;
        padding: 0 10px;
    }
    
    .contato-section .caption {
        max-width: 240px;
    }
    
    .contato-section .caption img {
        max-width: 240px;
    }
    
    .contato-section .contato-wrapper {
        padding: 0 5px;
    }
    
    .contato-section .contato-wrapper .small-text {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .contato-section .contato-wrapper h3 {
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .contato-section .contato-wrapper .btn {
        font-size: 13px;
        padding: 10px 16px;
        word-wrap: break-word;
    }
}

.seguranca-section {
  background-color: transparent !important;
  min-height: 500px;
  overflow: hidden;
  padding: 125px 0 10px;
  position: relative;
  z-index: 1;
}

.solutions-section {
    padding: 80px 20px;
    background-color: rgba(255, 102, 0, 0.1);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.main-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    color: rgb(31,32,68);
    font-family: 'Quicksand', sans-serif;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-block {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-content {
    flex-grow: 1;
}

.service-tag {
    display: inline-block;
    background: rgba(90, 150, 50, 0.1);
    color: #5a9632;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid #5a9632;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000;
    line-height: 1.4;
    font-family: 'Quicksand', sans-serif;
}

.service-description {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #ff7100;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(4px);
}

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

    .content-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .main-title {
        font-size: 25px; /* Maior que desktop (3.5rem) */
        margin-bottom: 50px;
    }

    .service-block {
        padding: 34px;
    }

    .service-title {
        font-size: 2.2rem; /* Muito maior */
    }

    .service-description {
        font-size: 1.5rem;
    }

    .service-link {
        font-size: 1.4rem;
    }

    .service-tag {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 25px;
        margin-bottom: 40px;
    }

    .service-block {
        padding: 30px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1.4rem;
    }

    .service-link {
        font-size: 1.3rem;
    }

    .service-tag {
        font-size: 1.1rem;
    }
}

.container-valor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Título e parágrafo */
.left-section {
    text-align: center;
    margin-bottom: 40px;
}

.left-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: rgb(31, 32, 68);
    margin-bottom: 20px;
    line-height: 1.2;
}

.left-section p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

/* Grid de cartões */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    aspect-ratio: 5 / 3; /* retângulo horizontal */
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #ff7800;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon-product-card {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(31, 32, 68);
    margin: 0;
}

.product-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.5;
    flex-grow: 1;
}

/* Responsividade */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr; /* 1 coluna */
        max-width: 400px;
    }

    .product-card {
        aspect-ratio: auto; /* altura automática no mobile */
    }

    .left-section h1 {
        font-size: 25px;
    }
}

.ativacao-rapida {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0 15px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
}

.ativacao-rapida .icon-wrapper {
    background-color: #fff4e8;
    color: #ff7100;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 8px;
    transition: transform 0.2s ease;
}

.ativacao-rapida .icon-wrapper i {
    font-size: 20px;
}

.ativacao-rapida .texto-wrapper span {
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
    color: #202020;
}

.ativacao-rapida:hover .icon-wrapper {
    transform: scale(1.1);
}

span.prc-bdr-plano {
    -webkit-transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7800, #f7931e);
    border-radius: 25px;
    color: #fff;
    font-family: 'Quicksand';
    font-size: 12px;
    font-weight: 900;
    height: 35px;
    left: 50%;
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    width: 120px;
}

.section-foguete {
            background-color: #0d1f30;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px;
            position: relative;
            position: relative; /* Importante para posicionamento interno */
            overflow: hidden;   /* Garante que o conteúdo fique dentro do section */
            
        }

        .header-foguete  {
            text-align: center;
            margin-bottom: 20px;
            z-index: 2;
            position: relative;
            margin-top: 60px;
        }

        .header-foguete  h1 {
            font-size: 36px;
            color: white;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .header-foguete p {
            font-size: 16px;
            color: #bdc3c7;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            width: 50%;
        }

        .foguete-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            min-height: 500px;
        }

        .foguete-image {
    width: 355px;
    height: 606px;
    animation: rocket-launch-float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 30px rgba(255, 163, 102, 0.3));
    display: block;
    max-width: 100%;
    height: auto;
}

.foguete-image:hover {
    transform: scale(1.05);
}

        @keyframes rocket-launch-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.foguete-wrapper {
  position: relative;
  display: inline-block;
}

.foguete-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.foguete-link {
  text-decoration: none;
  display: inline-block;
}

.tooltip-play {
  display: inline-block;
  text-decoration: none;
}

.play-button {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 36px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;

  /* Esconde por padrão */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Mostra play e tooltip ao passar o mouse */
.foguete-wrapper:hover .play-button {
  opacity: 1;
  visibility: visible;
}


/* Tooltip: "Jogar Mini Game" */
.tooltip-text {
  position: absolute;
  top: 100%; /* abaixo do botão */
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 14px;
  margin-top: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

/* Aparece tooltip ao passar o mouse na imagem */
.foguete-wrapper:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

        .features-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .feature-foguete {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .feature-foguete:hover {
            transform: translateX(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: #ffa366;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .feature-content {
            margin-top: -20px;
            flex: 1;
        }

        .feature-content h3 {
            font-size: 16px;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .feature-content p {
            color: #7f8c8d;
            line-height: 1.5;
            font-size: 16px;
            margin-bottom: 0.5rem;
        }

        .feature-content a {
            color: #ffa366;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
        }

        .feature-content a:hover {
            text-decoration: underline;
        }

        /* Efeito de estrelas no fundo */
        .stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Fica atrás do conteúdo da section */
  pointer-events: none; /* Não bloqueia cliques e hovers */
  
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 200px 90px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(2px 2px at 250px 50px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 300px 120px, rgba(255, 255, 255, 0.2), transparent);
  
  background-repeat: repeat;
  background-size: 350px 200px;
  animation: sparkle 25s linear infinite;
}


        @keyframes sparkle {
            from { transform: translateX(0); }
            to { transform: translateX(-350px); }
        }
        
.migration-section {
            
            background-color: #373737;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 100px;
            position: relative;
        }

        .content-migracao-wrapper {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            z-index: 2;
            position: relative;
            
        }

        .header-content {
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out;
        }

        .header-content h1 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 2rem;
            color: white;
        }

        .header-content p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
        }

        .feature-migracao-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-migracao-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: left;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out;
            position: relative;
            overflow: hidden;
        }

        .feature-migracao-card:nth-child(1) { animation-delay: 0.2s; }
        .feature-migracao-card:nth-child(2) { animation-delay: 0.4s; }
        .feature-migracao-card:nth-child(3) { animation-delay: 0.6s; }

        .feature-migracao-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: white;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-migracao-card:hover::before {
            transform: scaleX(1);
        }

        .feature-migracao-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-migracao-icon {
            width: 60px;
            height: 60px;
            background: #ffa366;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-migracao-card:hover .feature-migracao-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-migracao-icon svg {
            width: 30px;
            height: 30px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .feature-migracao-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
        }

        .feature-migracao-description {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .feature-migracao-section {
                padding: 2rem 1rem;
            }

            .header-content h1 {
                font-size: 36px;
            }

            .header-content p {
                font-size: 16px;
            }

            .feature-migracao-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .header-content h1 {
                font-size: 36px;
            }

            .feature-migracao-card {
                padding: 1.5rem;
            }
        }
        
/* Seção FAQ */
.faq-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Cabeçalho da FAQ */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 35px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-header p {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
}

/* Lista de FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* Item individual da FAQ */
.faq-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Pergunta */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #ffffff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

/* Ícone da seta */
.faq-icon {
    font-size: 16px;
    color: #6c757d;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Resposta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding: 20px 25px 25px 25px;
}

.faq-answer p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .faq-header h1 {
        font-size: 25px;
        margin-bottom: 10px;
    }
    
    .faq-header p {
        font-size: 15px;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-header h1 {
        font-size: 25px;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px 18px;
    }
}

#planos-anchor,
#depoimentos-anchor,
#sobre-anchor,
#recursos-anchor,
#faq-anchor,
#vantagens-anchor {
    display: block;
    position: relative;
    top: -165px; /* <--- ajuste conforme a altura do cabeçalho */
    height: 0;
    visibility: hidden;
    pointer-events: none;
}

#como-funciona-anchor {
    display: block;
    position: relative;
    top: -280px;
    height: 0;
    visibility: hidden;
    pointer-events: none;
}

#comissoes-anchor {
    display: block;
    position: relative;
    top: -300px;
    height: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Navegação - Estilos base */
.option-section .option-tab .nav-tabs li a {
    border: 0;
    border-radius: 0;
    color: #CCCCCC;
    margin: 0;
    padding: 15px 30px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none;
    display: block;
}

.option-section .option-tab .nav-tabs li a:hover {
    background-color: transparent;
    color: #FFF;
    border-bottom: 3px solid #FFF;
}

.option-section .option-tab .nav-tabs li.active a::before {
    content: none;
}

/* Container principal */
.option-section {
    position: relative;
    width: 100%;
}

/* Nav normal */
.option-section .option-tab .nav-tabs {
    position: relative;
    border: 0;
    background-color: #141414;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 100;
}

/* Nav fixo */
.option-section .option-tab .nav-tabs.nav-fixed {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 100;
}

.option-section .option-tab .nav-tabs li {
    text-transform: uppercase;
    position: relative;
    font-size: 18px;
    font-weight: 500;
}

/* Ícone voltar ao topo */
.back-to-top {
    margin-left: 30px;
    padding: 8px 12px;
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    height: 38px;
}

.back-to-top:hover {
    color: #ff7800;
    background: rgba(255, 120, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}

.back-to-top svg {
    transition: all 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-1px);
}

/* Correção para dropdown */
.navbar-nav .dropdown-menu,
.dropdown-menu,
header .dropdown-menu,
.nav .dropdown-menu {
    z-index: 9999;
}

/* Efeito de transparência */
.option-section.nav-transparent .option-tab .nav-tabs {
    background-color: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Compensa espaço sem saltos */
.option-section.nav-fixed-active {
    margin-bottom: -60px;
}

.option-section.nav-fixed-active + .session-page {
    margin-top: 0;
}

.session-page {
    min-height: 200px;
    background: linear-gradient(135deg, #ff7800, #f7931e);
    padding: 50px 0 50px;
}

.session-page-pro {
    min-height: 200px;
    background: linear-gradient(135deg, #ff7800, #f7931e);
    padding: 50px 0 50px;
}

.session-page-pro .caption-pro {
  padding: 40px 0 27px 180px;
}

.featured-pro {
  color: #f3d925;
}

.single-pricing-item {
  background: #FFF;
  border: 2px solid #ff7800;
  border-radius: 12px;
  margin-top: 42px;
  padding: 40px 0;
  position: relative;
  text-align: center;
}

* {
    box-sizing: border-box;
}

/* Overlay do popup */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.login-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container principal do popup */
.login-popup {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.login-overlay.active .login-popup {
    transform: scale(1) translateY(0);
}

/* Cabeçalho do popup */
.popup-header {
    background: linear-gradient(135deg, #ff7800, #f7931e);
    color: white;
    padding: 24px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.popup-header h2 {
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 16px;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Conteúdo do popup */
.popup-content {
    padding: 20px 24px;
}

/* Formulários */
.login-form,
.forgot-form {
    display: block;
}

.forgot-form {
    display: none;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #ff6b35;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #8b949e;
    font-size: 16px;
    z-index: 1;
}

.toggle-password {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #8b949e;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: #ff6b35;
}

.field-error {
    color: #dc3545 !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    font-weight: 500 !important;
    display: block !important;
    width: 100% !important;
    line-height: 1.4 !important;
    padding-left: 2px !important;
}

/* Opções do formulário */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Botões */
.login-btn,
.reset-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff7800, #f7931e);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.login-btn:hover,
.reset-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.back-to-login {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-to-login:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.loading-spinner {
    display: none; /* Inicialmente oculto */
    position: relative;
    width: 100%;
    min-height: 200px;
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    /* FORÇAR A REMOÇÃO DE QUALQUER ROTAÇÃO OU ANIMAÇÃO NO CONTAINER */
    transform: none !important;
    animation: none !important;
}

.loading-spinner i {
    font-size: 40px;
    color: #ff6b35;
    margin-bottom: 20px;
    display: block;
    /* A animação deve ser aplicada APENAS no ícone */
    animation: spin 1s linear infinite; /* Garante que o ícone gire */
}

.loading-spinner p {
    margin: 0;
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    /* Sem animação no texto */
}

/* Definição da animação de rotação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================================================== */

/* Mensagens */
.message-container {
    display: none;
    margin-bottom: 20px;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    margin-top: 10px;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    margin-top: 10px;
}

.message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Rodapé do popup */
.popup-footer {
    background: #f8f9fa;
    padding: 20px 24px;
    border-radius: 0 0 16px 16px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.popup-footer p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

.popup-footer a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.popup-footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 480px) {
    .login-popup {
        width: 95%;
        margin: 20px;
    }
    
    .popup-content {
        padding: 24px 20px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.google-btn {
    background-color: #4285F4; /* Cor do Google */
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}
.google-btn:hover {
    background-color: #357ae8;
}
.google-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.priceing-section .second-priceing-table .priceing-wrapper .priceing-content .priceing-head .option {
  background: linear-gradient(135deg, #ff7800, #f7931e);
  border-radius: 25px;
  color: #FFF;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 55px;
  padding: 3px 30px;
  text-transform: uppercase;
}

.priceing-section .second-priceing-table .priceing-wrapper .priceing-content .priceing-head .amount sup {
  font-size: 30%;
  vertical-align: super;
}

.priceing-section .second-priceing-table .priceing-wrapper .priceing-content .priceing-head .amount {
  color: rgb(31,32,68);
  font-family: 'Quicksand';
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}

/* Estilos para o sino de notificação */
    .notification-bell-container {
        position: relative;
        display: inline-block;
        margin-right: 15px;
    }

    .notification-bell {
        color: #fff;
        font-size: 20px;
        position: relative;
        display: block;
        padding: 10px;
    }

    .notification-bell:hover {
        color: #f7931e;
    }
    
/* Animação pulseRed */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}
    .notification-count {
        position: absolute;
        top: -10px;
        left: 10px;
        background-color: #e74c3c; /* Vermelho */
        color: white;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 10px;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        min-width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: 1.9s infinite bounce;
    }

    /* Estilos para o dropdown de notificação */
    .notification-dropdown {
        position: absolute;
        top: 30px;
        left: 0;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 300px;
        max-height: 400px;
        overflow-y: auto;
        z-index: 1000;
        display: none; /* Escondido por padrão */
        transform-origin: top right;
        animation: fadeInScale 0.2s ease-out;
    }

    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .notification-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        background-color: #f9f9f9;
    }

    .notification-dropdown-header h4 {
        margin: 0;
        font-size: 16px;
        color: #333;
    }

    .notification-dropdown-header .close-dropdown {
        cursor: pointer;
        color: #888;
        font-size: 18px;
    }

    .notification-dropdown-header .close-dropdown:hover {
        color: #333;
    }

    /* Lista de notificações em coluna */
.notification-list {
    display: block !important; /* garante que a lista fique em bloco */
    padding: 0;
    margin: 0;
    list-style: none;
}

.notification-list li {
    display: block !important; /* força cada item a ocupar linha inteira */
    text-align: left !important; /* alinha conteúdo à esquerda */
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
    clear: both; /* evita float de elementos anteriores */
}

.notification-list li:last-child {
    border-bottom: none;
}

/* Link interno ocupa toda a largura */
.notification-list li a {
    display: block !important; /* força link ocupar todo o li */
    width: 100% !important;
    text-decoration: none;
    color: #333;
}

/* Força que títulos dentro do link fiquem alinhados à esquerda */
.notification-list li a strong,
.notification-list li a span {
    display: block !important;
    text-align: left !important;
    font-weight: 400;
}

    .notification-dropdown-footer {
        padding: 10px 15px;
        border-top: 1px solid #eee;
        text-align: center;
        background-color: #f9f9f9;
    }

    .notification-dropdown-footer a {
        color: #007bff;
        text-decoration: none;
        font-size: 13px;
    }

    .notification-dropdown-footer a:hover {
        text-decoration: underline;
    }

    .no-notifications {
        padding: 20px;
        text-align: center;
        color: #777;
        font-size: 14px;
    }
    
    
/* Styles - Vantagens */
.features-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #ff7800, #ff9933);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 50px;
        }

        .features-container:hover {
            transform: translateY(-5px);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .check-icon {
            width: 30px;
            height: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .feature-item:hover .check-icon {
            background: white;
        }

        .check-icon::after {
            content: '✓';
            color: #ff7800;
            font-weight: bold;
            font-size: 16px;
        }

        .feature-text {
            color: white;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: pre-line;
            text-align: center;
        }

        .feature-item:hover .feature-text {
            color: rgba(255, 255, 255, 0.95);
        }

        @media (max-width: 768px) {
            .features-container {
                padding: 30px 20px;
                border-radius: 15px;
            }

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

            .feature-item {
                padding: 15px;
            }

            .feature-text {
                font-size: 14px;
            }
        }

        /* Animação de entrada */
        .feature-item {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }

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

        /* Efeito de pulso no container */
        .features-container {
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 20px 40px rgba(255, 120, 0, 0.3);
            }
            50% {
                box-shadow: 0 25px 50px rgba(255, 120, 0, 0.4);
            }
        }
        
        
/* Mapa Data Center */

        .map-section {
            background-color: #2a2a2a;
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            padding: 60px 40px;
        }

        .map-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
        }

        .map-subtitle {
            font-size: 18px;
            color: #cccccc;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .legend {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #cccccc;
        }

        .legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .legend-dot.data-center {
            background-color: #ff7800;
        }

        .legend-dot.cdn {
            background-color: #00d4aa;
        }

        .world-map-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
            border-radius: 20px;
            overflow: hidden;
        }

        .world-map {
            width: 100%;
            height: 100%;
            background-image: url('../images/world-map.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.8;
        }

       .data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff7800;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.8);
    animation: pulse-point 2s ease-in-out infinite;
    z-index: 10;
}

/* Corrigido: centralização do efeito ripple */
.data-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 120, 0, 0.3);
    border-radius: 50%;
    animation: ripple 2s ease-in-out infinite;
}

.sao-paulo {
    top: 65%;
    left: 20%;
    animation-delay: 0.5s;
}

.sao-paulo::before {
    animation-delay: 0.5s;
}

@media (max-width: 470px) {
    /* ponto menor */
    .data-point {
        width: 8px;
        height: 8px;
    }

    /* efeito ripple proporcional */
    .data-point::before {
        width: 16px;  /* 2x o ponto */
        height: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* posição de São Paulo no mapa mobile */
    .sao-paulo {
        top: 60%;
        left: 19%;
    }

    /* ripple do ponto de São Paulo */
    .sao-paulo::before {
        width: 16px;
        height: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


@keyframes pulse-point {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}


        /* Tooltip para São Paulo */
        .data-point.sao-paulo:hover::after {
            content: 'São Paulo, Brasil';
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            z-index: 20;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .map-section {
                padding: 40px 20px;
            }

            .map-title {
                font-size: 32px;
            }

            .map-subtitle {
                font-size: 16px;
            }

            .legend {
                gap: 20px;
            }

            .world-map-container {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .map-title {
                font-size: 24px;
            }

            .legend {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .world-map-container {
                height: 300px;
            }
        }
        
        
/* Variáveis CSS para cores */
        :root {
            --color-primary: #ff4081; /* Rosa vibrante */
            --color-secondary: #ff9800; /* Laranja */
            --color-text-dark: #212121;
            --color-text-light: #757575;
            --color-background: #f5f5f5;
            --color-cta-bg: #212121;
            --color-cta-text: #ffffff;
        }

        /* Títulos */
        h1 {
            font-size: 3em;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .highlight-text {
            background: linear-gradient(90deg, #ff6600, #ffa366, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        /* Botão CTA */
        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            margin-top: 20px;
            border-radius: 8px;
            background-color: var(--color-cta-bg);
            color: var(--color-cta-text);
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: #424242;
        }

        .cta-button .arrow {
            margin-left: 10px;
            font-size: 1.2em;
        }

        /* Seção de Velocidade */
        .section-speed {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 80px 0;
            border-bottom: 1px solid #eee;
        }

        .speed-content {
            flex: 1;
            max-width: 50%;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 5px 0;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: var(--color-text-light);
        }

        .feature-list .checkmark {
            color: #ff7800;
            font-size: 1.2em;
            margin-right: 10px;
            line-height: 1.5;
            border: 0px;
        }

        /* Gráfico Simplificado (Minimalista e Flat) */
        .speed-graph {
            flex: 1;
            max-width: 40%;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-left: 20px;
            position: relative;
            margin-top: 100px;
        }

        .graph-bar-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .bar-label {
            font-size: 0.9em;
            color: var(--color-text-light);
            width: 100px;
            text-align: right;
            margin-right: 10px;
        }

        .bar-wrapper {
            flex-grow: 1;
            height: 30px;
            display: flex;
            align-items: center;
            position: relative;
        }

        .bar {
            height: 100%;
            border-radius: 4px;
            transition: width 1s ease-out;
            position: relative;
        }

        .bar-value {
            position: absolute;
            left: 10px;
            color: var(--color-cta-text);
            font-weight: 600;
            font-size: 0.8em;
            line-height: 30px;
        }

        .bar-1 {
            width: 100%;
            background: linear-gradient(90deg, #ffd1b3, #ff944d, #ff6600);
        }

        .bar-2 {
            width: 80%;
            background-color: #e0e0e0;
        }

        .bar-3 {
            width: 60%;
            background-color: #bdbdbd;
        }

        .bar-4 {
            width: 55%;
            background-color: #9e9e9e;
        }

        /* Seção de Aplicativos */
        .section-apps {
            display: flex;
            flex-direction: row-reverse; /* Inverte a ordem para o layout */
            justify-content: space-between;
            align-items: center;
            padding: 80px 0;
        }

        .apps-content {
            flex: 1;
            max-width: 50%;
            margin-top: -130px;
        }

        .apps-diagram {
            flex: 1;
            max-width: 40%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            height: 400px;
        }

        /* Estilo dos Ícones no Diagrama */
        .icon-container {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #ffebdf;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

        .icon-container img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        /* Posições dos Ícones (Simulando o Fluxo) */
.icon-wp { top: 2%; left: 50%; transform: translate(-50%, -50%); }
.icon-crm { top: 28%; left: 50%; transform: translate(-50%, -50%); }
.icon-a { top: 50%; left: 15%; transform: translate(-50%, -50%); }
.icon-j { top: 75%; left: 15%; transform: translate(-50%, -50%); }
.icon-b { top: 50%; left: 85%; transform: translate(-50%, -50%); }
.icon-c { top: 75%; left: 85%; transform: translate(-50%, -50%); }
.icon-download { top: 50%; left: 50%; transform: translate(-50%, -50%); background: linear-gradient(45deg, var(--color-secondary), #ff934b); }
.icon-download img { filter: invert(1); } /* Inverte a cor do ícone de download para branco */

        /* Linhas de Conexão (Usando SVG para o Flat Design) */
        .apps-diagram svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
        }

        .apps-diagram line {
            stroke: #e0e0e0;
            stroke-width: 2;
        }

        /* Responsividade Básica */
        @media (max-width: 768px) {
            .section-speed, .section-apps {
                flex-direction: column;
                text-align: center;
            }

            .speed-content, .apps-content {
                max-width: 100%;
                margin-bottom: 40px;
            }

            .speed-graph, .apps-diagram {
                max-width: 100%;
                height: auto;
            }

            .bar-label {
                width: 80px;
            }

            .apps-diagram {
                height: 350px; /* Ajusta a altura para dispositivos menores */
            }

            .icon-wp, .icon-crm, .icon-a, .icon-j, .icon-b, .icon-c, .icon-download {
                /* Simplifica as posições para evitar sobreposição em telas pequenas */
                position: static;
                transform: none;
                margin: 10px auto;
            }

            .apps-diagram {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 10px;
                padding: 20px;
            }

            .apps-diagram svg {
                display: none; /* Remove o SVG em telas pequenas para simplificar */
            }
        }
        
@keyframes float1 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-6px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-12px); }
}

@keyframes float4 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-13px); }
}

@keyframes float5 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-14px); }
}

@keyframes float6 {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-13px); }
}

@keyframes float7 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.icon-wp { animation: float1 4s ease-in-out infinite; }
.icon-crm { animation: float2 5s ease-in-out infinite; }
.icon-a { animation: float3 4.5s ease-in-out infinite; }
.icon-j { animation: float4 5.5s ease-in-out infinite; }
.icon-b { animation: float5 4.2s ease-in-out infinite; }
.icon-c { animation: float6 5.2s ease-in-out infinite; }
.icon-download { animation: float7 6s ease-in-out infinite; }
        
/* Novo wrapper para o fundo escuro */
        .dark-section-wrapper {
            background-color: #0a1930; /* Azul escuro, similar ao da imagem */
            color: #ffffff; /* Cor de texto para fundo escuro */
            padding: 80px 0; /* Adiciona o padding vertical aqui */
        }

        .dark-section-wrapper h1 {
            color: #ffffff; /* Garante que o H1 dentro da seção escura seja branco */
        }

        .highlight-text {
            /* Gradiente de destaque (Laranja) */
            background: linear-gradient(90deg, #ff6600, #ffa366, #ff6600);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        /* Seção AntiSpam */
        .section-antispam {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .antispam-content {
            flex: 1;
            max-width: 55%;
        }

        .antispam-content p {
            color: #a0a0a0; /* Mantém o texto de parágrafo mais suave */
            font-size: 1.1em;
        }

        .antispam-badge {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            margin-bottom: 20px;
            border-radius: 20px;
            background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
            color: #ffffff;
            font-size: 0.9em;
            font-weight: 500;
        }

        .antispam-badge .icon {
            margin-right: 8px;
            color: #4fc3f7; /* Um azul claro para o ícone de alerta */
        }

        /* Imagem AntiSpam (Minimalista e Flat) */
        .antispam-image {
            flex: 1;
            max-width: 40%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .antispam-image img {
            width: 100%;
            max-width: 400px;
            height: auto;
            /* Efeito de brilho/sombra sutil para destacar no fundo escuro */
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
            margin-top: 80px;
        }

        /* Responsividade Básica */
        @media (max-width: 768px) {
            .section-antispam {
                flex-direction: column;
                text-align: center;
            }

            .antispam-content, .antispam-image {
                max-width: 100%;
            }

            .antispam-image {
                order: -1; /* Coloca a imagem acima do texto em mobile */
                margin-bottom: 40px;
            }

            .antispam-content p {
                text-align: left; /* Mantém o texto justificado/alinhado à esquerda */
            }
        }
        
/* Seção de Cabeçalho (Hero) */
	.hero-section {
	    background-color: #1a1a1a; /* Fundo escuro como na imagem original */
	    color: #fff;
	    padding: 80px 20px;
	    text-align: center;
	}
	
	.hero-section h1 {
	    font-size: 3em;
	    margin-bottom: 10px;
	    font-weight: 700;
	}
	
	.hero-section p {
	    font-size: 1.2em;
	    opacity: 0.8;
	    font-weight: 400;
	}
	
	/* Container Principal */
	.solutions-container {
	    max-width: 1200px;
	    margin: 60px auto;
	    padding: 0 20px;
	}
	
	/* Grid de Soluções (3x3) */
	.solutions-grid {
	    display: grid;
	    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	    gap: 30px;
	    margin-bottom: 40px;
	}
	
	/* Card de Solução */
	.solution-card {
	    background-color: #fff;
	    border-radius: 12px;
	    border: 2px solid #e0e0e0; /* Borda cinza clara */
	    box-shadow: none; /* Sem sombra padrão */
	    padding: 40px 30px;
	    text-align: center;
	    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
	    display: flex;
	    flex-direction: column;
	    align-items: center;
	    justify-content: flex-start;
	    gap: 15px;
	}
	
	.solution-card:hover {
	    border-color: #ff8c00; /* Borda laranja ao passar o mouse */
	    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.15); /* Sombra suave com toque de laranja */
	    transform: translateY(-2px); /* Movimento sutil */
	}
	
	/* Ícone da Solução */
	.solution-icon {
	    width: 150px;
	    height: 80px;
	    margin-bottom: 50px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	
	.solution-icon img {
	    max-width: 100%;
	    max-height: 100%;
	    object-fit: contain;
	    margin-top: -50px;
	}
	
	/* Título do Card */
	.solution-card h2 {
	    color: #1a1a1a;
	    margin-bottom: 15px;
	    font-size: 1.4em;
	    font-weight: 700;
	    line-height: 1.3;
	}
	
	/* Descrição do Card */
	.solution-card p {
	    margin-bottom: 0;
	    color: #666;
	    font-size: 0.95em;
	    line-height: 1.5;
	    flex-grow: 1;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	}
	
	/* Botão Saiba Mais */
	.saiba-mais-btn {
	    background-color: #ff8c00;
	    color: #fff;
	    border: none;
	    padding: 12px 30px;
	    border-radius: 6px;
	    cursor: pointer;
	    font-weight: 700;
	    text-transform: uppercase;
	    font-size: 0.9em;
	    transition: background-color 0.3s ease, transform 0.2s ease;
	    letter-spacing: 0.5px;
	    margin-top: auto;
	}
	
	.saiba-mais-btn:hover {
	    background-color: #e67e00;
	    transform: scale(1.05);
	}
	
	.saiba-mais-btn:active {
	    transform: scale(0.98);
	}
	
	/* --- Estilização do Modal (Pop-up) --- */
	
	/* Container do Modal (Fundo escuro) */
	.modal-container {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background-color: rgba(0, 0, 0, 0.7);
	    display: none; /* Inicialmente oculto */
	    justify-content: center;
	    align-items: center;
	    z-index: 9999;
	    overflow-y: auto; /* Permite scroll se o conteúdo for grande */
	    padding: 20px;
	}
	
	/* Conteúdo do Modal */
	.modal-content {
	    background-color: #fff;
	    padding: 40px;
	    border-radius: 12px;
	    max-width: 800px;
	    width: 100%;
	    position: relative;
	    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	    margin: 50px auto;
	    animation: slideIn 0.3s ease;
	}
	
	@keyframes slideIn {
	    from {
	        opacity: 0;
	        transform: translateY(-20px);
	    }
	    to {
	        opacity: 1;
	        transform: translateY(0);
	    }
	}
	
	/* Título do Modal */
	.modal-content h2 {
	    color: #1a1a1a;
	    font-size: 2em;
	    margin-bottom: 20px;
	    margin-top: 10px;
	    border-bottom: 3px solid #ff8c00;
	    padding-bottom: 15px;
	    padding-right: 50px;
	    font-weight: 700;
	}
	
	/* Descrição no Modal */
	#modal-description {
	    color: #555;
	    font-size: 1em;
	    line-height: 1.7;
	    margin-bottom: 20px;
	}
	
	/* Botão de Fechar */
	.close-btn-pop {
	    position: absolute;
	    top: 15px;
	    right: 20px;
	    font-size: 32px;
	    font-weight: bold;
	    color: #000 !important; /* Cor preta e forçada para máxima visibilidade */
	    background: none;
	    border: none;
	    cursor: pointer;
	    transition: color 0.2s, transform 0.2s;
	    width: 40px;
	    height: 40px;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    line-height: 1;
	    opacity: 1 !important; /* Opacidade forçada */
	}
	
	.close-btn-pop:hover,
	.close-btn-pop:focus {
	    color: #000;
	    transform: scale(1.1);
	}
	
	/* Seção de Serviços Relacionados dentro do Modal */
	.services-section {
	    margin-top: 30px;
	    padding-top: 25px;
	    border-top: 2px solid #f0f0f0;
	    text-align: center;
	}
	
	.services-section h3 {
	    color: #1a1a1a;
	    margin-bottom: 10px;
	    font-size: 1.2em;
	    font-weight: 700;
	}
	
	#modal-service-description {
	    color: #666;
	    font-size: 0.95em;
	    margin-bottom: 20px;
	}
	
	/* Botão de Serviço */
	.service-button {
	    display: inline-block;
	    background-color: #1a1a1a;
	    color: #fff;
	    text-decoration: none;
	    padding: 12px 30px;
	    border-radius: 6px;
	    font-weight: 700;
	    text-transform: uppercase;
	    font-size: 0.9em;
	    transition: background-color 0.3s ease, transform 0.2s ease;
	    letter-spacing: 0.5px;
	}
	
	.service-button:hover {
	    background-color: #333;
	    transform: scale(1.05);
	}
	
	.service-button:active {
	    transform: scale(0.98);
	}
	
	/* Responsividade */
	@media (max-width: 768px) {
	    .hero-section h1 {
	        font-size: 2.2em;
	    }
	
	    .hero-section p {
	        font-size: 1em;
	    }
	
	    .solutions-grid {
	        grid-template-columns: 1fr; /* Uma coluna em telas menores */
	        gap: 20px;
	    }
	
	    .solution-card {
	        padding: 30px 20px;
	        min-height: 350px;
	    }
	
	    .modal-content {
	        padding: 30px 20px;
	        margin: 30px auto;
	    }
	
	    .modal-content h2 {
	        font-size: 1.6em;
	    }
	
	    .close-btn_2 {
	        top: 15px;
	        right: 15px;
	        font-size: 24px;
	    }
	}
	
	@media (max-width: 480px) {
	    .hero-section {
	        padding: 50px 15px;
	    }
	
	    .hero-section h1 {
	        font-size: 1.8em;
	    }
	
	    .solutions-container {
	        margin: 40px auto;
	        padding: 0 15px;
	    }
	
	    .solution-card {
	        padding: 25px 15px;
	        min-height: 320px;
	    }
	
	    .solution-card h2 {
	        font-size: 1.2em;
	    }
	
	    .solution-card p {
	        font-size: 0.9em;
	    }
	
	    .modal-content {
	        padding: 25px 15px;
	        border-radius: 8px;
	    }
	
	    .modal-content h2 {
	        font-size: 1.4em;
	        margin-bottom: 15px;
	    }
	}
	
.construtor-background {
            background-color: #f5f5f5;
            padding: 60px 20px;
        }

        /* --- CONTAINER DE PASSOS --- */
        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- PASSO (STEP) --- */
        .step {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 120px;
            flex-wrap: wrap;
        }

        .step.reverse {
            flex-direction: row-reverse;
        }

        .step-content {
            flex: 1;
            min-width: 300px;
        }

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

        .step-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            display: inline-flex;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ff7800, #f7931e);
            color: white;
            border-radius: 50%;
            font-size: 32px;
            font-weight: 700;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1a1a1a;
            margin-top: -10px;
        }

        .step-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666666;
            margin-bottom: 30px;
        }

        .step-features {
            list-style: none;
            padding: 0;
            margin-bottom: 0;
        }

        .step-features li {
            font-size: 16px;
            color: #333333;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .step-features li:before {
            content: "\f058";
            font-family: 'FontAwesome';
            color: #ff7800;
            position: absolute;
            left: 0;
            font-size: 18px;
        }

        /* --- DIVISOR VISUAL --- */
        .step-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff7800, transparent);
            margin: 80px 0;
        }

        /* --- SEÇÃO DE AÇÃO FINAL --- */
        .action-section {
            text-align: center;
            margin: 120px 0;
            padding: 60px 20px;
            background: linear-gradient(135deg, #ff7800, #f7931e);
            border-radius: 16px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .action-section h2 {
            font-size: 36px;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            margin-top: -10px;
        }

        .action-section p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .action-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-action {
            padding: 14px 40px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-action-primary {
            background-color: white;
            color: #ff7800;
        }

        .btn-action-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-action-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-action-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* --- SEÇÃO DE RECURSOS --- */
        .resources-section {
            max-width: 1200px;
            margin: 120px auto 0;
            padding: 0 20px;
        }

        .resources-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .resources-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .resources-header p {
            font-size: 18px;
            color: #666666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .resource-card {
            background-color: #ffffff;
            border: 2px solid #ff7800;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(255, 120, 0, 0.15);
            border-color: #f7931e;
        }

        .resource-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ff7800, #f7931e);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            margin: 0 auto 25px;
        }

        .resource-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .resource-description {
            font-size: 15px;
            line-height: 1.6;
            color: #666666;
        }

        /* --- RESPONSIVIDADE --- */
        @media (max-width: 1024px) {
            .step {
                flex-direction: column;
                gap: 40px;
                margin-bottom: 80px;
            }

            .step.reverse {
                flex-direction: column;
            }

            .step-content,
            .step-image {
                flex: 1 1 100%;
            }

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

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 36px;
            }

            .section-header p {
                font-size: 16px;
            }

            .step-title {
                font-size: 24px;
            }

            .action-section {
                padding: 40px 20px;
            }

            .action-section h2 {
                font-size: 28px;
            }

            .action-section p {
                font-size: 16px;
            }

            .action-buttons {
                flex-direction: column;
            }

            .btn-action {
                width: 100%;
                text-align: center;
            }

            .step-divider {
                margin: 60px 0;
            }

            .resources-header h2 {
                font-size: 32px;
            }

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

            .resource-card {
                padding: 30px 20px;
            }
        }

.anuncio-solucoes-section {
    padding: 60px 20px;
    /* Cores hardcoded: #ff7800 e #f7931e */
    background: linear-gradient(135deg, #ff7800, #f7931e);
    border-radius: 16px;
    max-width: 1200px;
    margin: 40px auto; /* Margem para isolar a seção na home */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Layout de duas colunas com flexbox */
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Container do conteúdo (texto e botão) - lado esquerdo */
.anuncio-solucoes-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

/* Container da imagem - lado direito */
.anuncio-solucoes-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.anuncio-solucoes-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.anuncio-solucoes-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    margin-top: 0;
    margin-left: 120px;
}

.anuncio-solucoes-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    margin-left: 120px;
}

.btn-saiba-mais {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 120px;
    
    /* Estilo primário: fundo branco, texto laranja */
    /* Cores hardcoded: white e #ff7800 */
    background-color: white;
    color: #ff7800;
}

.btn-saiba-mais:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- RESPONSIVIDADE --- */

/* Responsividade para tablets e dispositivos menores (1024px e abaixo) */
@media (max-width: 1024px) {
    .anuncio-solucoes-section {
        /* Muda para empilhamento vertical */
        flex-direction: column;
        gap: 40px;
        padding: 50px 20px;
    }
    
    .anuncio-solucoes-content {
        /* Centraliza o texto quando empilhado */
        text-align: center;
    }
    
    .anuncio-solucoes-image {
        text-align: center;
    }
}

/* Responsividade para celulares (768px e abaixo) */
@media (max-width: 768px) {
    .anuncio-solucoes-section {
        padding: 40px 15px;
        margin: 20px auto;
        gap: 30px;
    }
    
    .anuncio-solucoes-section h2 {
        font-size: 28px;
        
    }
    
    .anuncio-solucoes-section p {
        font-size: 16px;
    }
    
    .btn-saiba-mais {
        padding: 12px 30px;
        font-size: 15px;
    }
}

.gubax-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.gubax-table thead {
    background: linear-gradient(135deg, #ff7100, #ff8c00);
    color: #fff;
}

.gubax-table th,
.gubax-table td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.gubax-table th {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.gubax-table tbody tr:hover {
    background: #fff6ef;
}

.gubax-table tbody tr:last-child td {
    border-bottom: none;
}

.gubax-attack {
    text-align: left;
    font-weight: 600;
    color: #333;
}

.gubax-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,120,0,.15);
    color: #ff7800;
}

.gubax-sla {
    background: rgba(0,0,0,.05);
    border-radius: 6px;
    font-weight: 600;
}

.gubax-tabs {
    display: inline-flex;
    gap: 10px;
    padding: 8px;
    list-style: none;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    flex-wrap: wrap;
}

.gubax-tabs li {
    float: none !important;
    margin: 0;
}

.gubax-tabs li a {
    display: block;
    padding: 12px 22px;
    border-radius: 12px;
    background: #f5f5f5;
    color: #555;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
}

.gubax-tabs li a:hover {
    background: #eee;
}

.gubax-tabs li.active a {
    background: #ff7800;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,120,0,.35);
}

.gubax-domain-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    font-size: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

/* Cabeçalho */
.gubax-domain-table thead {
    background: linear-gradient(135deg, #ff7100, #ff8c00);
}

.gubax-domain-table th {
    padding: 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

/* Corpo */
.gubax-domain-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

/* Remove última linha */
.gubax-domain-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover suave */
.gubax-domain-table tbody tr {
    transition: background .15s ease;
}

.gubax-domain-table tbody tr:hover {
    background: #fff4ec;
}

/* Domínio como protagonista */
.gubax-domain-table .domain {
    font-weight: 800;
    font-size: 15px;
    color: #222;
}

/* Renovação destacada */
.gubax-domain-table .renew {
    font-weight: 800;
    color: #ff7800;
}

/* Mobile readability */
@media (max-width: 768px) {
    .gubax-domain-table th,
    .gubax-domain-table td {
        padding: 12px;
        font-size: 13px;
    }
}
