/* HospedaAqui v2.0.0 - RESET TOTAL
   Mantendo apenas o Header e as Variáveis Base
*/

:root {
    --primary-dark: #0f172a;
    --cyan-accent: #00e5ff;
    --white: #ffffff;
    --gray-bg: #f1f5f9;
    --text-main: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 80px;
    -webkit-user-select: none;  /* Safari */
    -ms-user-select: none;      /* IE 10 e Edge */
    user-select: none;          /* Padrão */
}

input, textarea {
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.main-header { background: var(--white); height: 80px; width: 100%; position: fixed; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0,0,0,0.05); display: flex; align-items: center; }
.header-container { width: 90%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
@media (max-width: 900px) {
    .navbar { position: fixed; top: 80px; right: -100%; width: 100%; height: 100vh; background: var(--white); transition: 0.4s; z-index: 999; }
    .navbar.ativo { right: 0; }
}

.logo-main {
    height: 70px; 
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; 
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan-accent);
}

.btn-cta {
    background-color: var(--cyan-accent);
    color: var(--primary-dark) !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    transition: transform 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
}
/*

.slide-inicial {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.container-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.slide-item.ativo {
    opacity: 1;
    z-index: 2;
}

.conteudo-slide {
    max-width: 800px;
    padding: 0 20px;
}

.conteudo-slide h1 {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.conteudo-slide h1 span {
    color: var(--cyan-accent);
}

.conteudo-slide p {
    font-size: 1.25rem;
    color: #e2e8f0;
    font-weight: 400;
}

.seta-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    z-index: 100;
    transition: 0.3s;
    opacity: 0.5;
}

.seta-slider:hover {
    opacity: 1;
    color: var(--cyan-accent);
}

.esquerda { left: 20px; }
.direita { right: 20px; }


*/

/*
.comunicado {
    width: 100%;
    margin-top: -45px; 
    margin-bottom: 0px;
    padding: 0px 5%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 100;
    background-color: var(--gray-bg);
}

.comunicado-oficial {
    display: grid;
    grid-template-columns: auto 1fr;
    width: auto;
    max-width: 900px;
    background-color: var(--primary-dark);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aba-comunicado {
    background-color: var(--cyan-accent);
    color: var(--primary-dark);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    letter-spacing: 1.2px;
    white-space: nowrap; 
}

.texto-comunicado {
    color: #cbd5e1; 
    font-size: 0.88rem; 
    padding: 10px 30px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.texto-comunicado strong {
    color: var(--white);
    font-weight: 700;
    border-bottom: 1px solid var(--cyan-accent); 
    padding-bottom: 1px;
    margin: 0 3px;
}

@media (max-width: 768px) {
    .comunicado-oficial {
        grid-template-columns: 1fr; 
        max-width: 100%;
    }
    .aba-comunicado {
        padding: 8px;
        white-space: normal; 
    }
    .texto-comunicado {
        padding: 12px;
        text-align: center;
        font-size: 0.85rem;
    }
}

*/

.dominio {
    width: 100%;
    background-color: var(--gray-bg); 
    padding: 0 5% 30px;
    display: flex;
    justify-content: center;
}

.seu-dominio {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-top: -20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.conteudo-dominio {
    flex: 1;
    max-width: 450px;
    text-align: left;
    padding-top: 10px;
}

.etiqueta-info {
    background-color: var(--primary-dark);
    color: var(--cyan-accent);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.conteudo-dominio h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.conteudo-dominio h2 span {
    color: var(--cyan-accent);
}

.conteudo-dominio p {
    margin-top: 20px;
    color: var(--text-main);
    font-size: 1.1rem;
    max-width: 450px;
}

.busca-dominio {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 350px;
}
.formulario-dominio {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formulario-dominio input {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: 0.3s;
}

.formulario-dominio input:focus {
    border-color: var(--cyan-accent);
}

.botao-dominio {
    background-color: var(--cyan-accent);
    color: var(--primary-dark);
    border: none;
    padding: 20px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.botao-dominio:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.selo-seguranca {
    margin-top: 15px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    color: #64748b;
}

/* Responsividade */
@media (max-width: 1100px) {
    .seu-dominio {
        flex-direction: column;
        text-align: center;
        padding: 80px 40px 40px;
    }
    .conteudo-dominio p {
        margin: 20px auto;
    }
    .formulario-dominio input {
        width: 100%;
    }
}

.servicos {
    width: 100%;
    padding: 0px 5%;
    background-color: var(--gray-bg);
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.cabecalho-secao {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-titulo {
    background-color: var(--primary-dark);
    color: var(--cyan-accent);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.cabecalho-secao h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cabecalho-secao h2 span {
    color: var(--cyan-accent);
}

.cabecalho-secao p {
    margin-top: 15px;
    color: var(--text-main);
    font-size: 1.1rem;
    max-width: 700px;
    font-weight: 500;
}

.servicos-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

.card-produto {
    background: var(--gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.card-produto:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.foto-produto {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.foto-produto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card-produto:hover .foto-produto img {
    transform: scale(1.1);
}

.dashboard-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), #1e293b);
}

.custom-icon {
    font-size: 50px;
    filter: drop-shadow(0 0 10px var(--cyan-accent));
}

.info-produto {
    padding: 25px;
}

.info-produto h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 900;
    margin-bottom: 15px;
}

.info-produto h3 span {
    color: var(--cyan-accent);
}

.info-produto p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.5;
}

.info-produto ul {
    list-style: none;
}

.info-produto ul li {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.info-produto ul li {
    color: #475569;
}

.card-produto.especial {
    border: 2px solid var(--cyan-accent);
}

.card-produto {
    position: relative; 
    display: flex;
    flex-direction: column;
}

.tag-destaque {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--cyan-accent);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.card-produto.destaque {
    border: 2px solid var(--cyan-accent);
    transform: scale(1.02);
}

.btn-produto {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background-color: var(--gray-bg);
    color: var(--primary-dark);
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease; 
    border: 1px solid transparent;
}

.btn-produto:hover {
    background-color: #e2e8f0;
    color: var(--primary-dark);
}

.btn-produto:not(.btn-principal):hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-principal {
    background-color: var(--cyan-accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}

.btn-principal:hover {
    background-color: var(--primary-dark);
    color: var(--cyan-accent); 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
    border-color: var(--cyan-accent);
}

.info-produto {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-produto p {
    flex-grow: 1;
}

.faq {
    width: 100%;
    padding: 100px 5%;
    background-color: var(--gray-bg);
    display: flex;
    justify-content: center;
}

.caixa-faq {
    width: 100%;
    max-width: 1100px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-info-esquerda {
    text-align: left;
}

.faq-info-esquerda h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    margin: 20px 0;
}

.faq-container-direita {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: 0.3s ease;
}

.faq-pergunta {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: left;
}

.faq-icone {
    color: var(--cyan-accent);
    font-size: 1.5rem;
    transition: 0.3s;
}

.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-resposta p {
    padding: 0 30px 25px;
    color: var(--text-main);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.ativo {
    border-color: var(--cyan-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.ativo .faq-icone {
    transform: rotate(45deg);
}

.faq-item.ativo .faq-resposta {
    max-height: 200px;
}

.suporte-direto {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #cbd5e1;
}

.suporte-direto a {
    display: block;
    color: var(--cyan-accent);
    font-weight: 800;
    text-decoration: none;
    margin-top: 5px;
}

@media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-info-esquerda { text-align: center; }
}

.menu-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-flutuante-wpp {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-flutuante-wpp .texto-btn {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-flutuante-wpp:hover {
    transform: scale(1.05) translateY(-5px);
    background-color: #128c7e;
}

@media (max-width: 768px) {
    .menu-flutuante {
        bottom: 0;
        right: 0;
        width: 100%;
        padding: 0;
    }

    .btn-flutuante-wpp {
        width: 100%;
        border-radius: 0;
        justify-content: center;
        padding: 18px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-flutuante-wpp .texto-btn {
        font-size: 16px;
    }

    body {
        padding-bottom: 60px;
    }
}

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.9); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; z-index: 15000; }
.modal-overlay.ativo { display: flex; }
.modal-content { background: var(--white); width: 90%; max-width: 500px; padding: 40px; border-radius: 12px; position: relative; }

.modal-overlay.ativo .modal-content {
    transform: translateY(0);
}

.fechar-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: 0.3s;
}

.fechar-modal:hover { color: var(--cyan-accent); }

.modal-header { text-align: center; margin-bottom: 30px; }
.modal-header h2 { font-size: 1.8rem; font-weight: 900; color: var(--primary-dark); margin: 10px 0; }

.modal-form { display: flex; flex-direction: column; gap: 20px; }
.campo { display: flex; flex-direction: column; gap: 8px; }
.campo label { font-weight: 800; font-size: 12px; text-transform: uppercase; color: var(--primary-dark); }

.campo input, .campo select {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background-color: var(--gray-bg);
    outline: none;
    font-weight: 600;
}

.campo input:focus { border-color: var(--cyan-accent); }

.btn-enviar-form {
    background-color: var(--cyan-accent);
    color: var(--primary-dark);
    border: none;
    padding: 18px;
    border-radius: 6px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-enviar-form:hover { background-color: var(--primary-dark); color: var(--white); }

.campo textarea {
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background-color: var(--gray-bg);
    outline: none;
    font-weight: 600;
    resize: none; 
    font-family: inherit;
}

.campo textarea:focus { border-color: var(--cyan-accent); }

.quemsomosnos {
    width: 100%;
    padding: 0px 5%;
    background-color: var(--gray-bg);
    display: flex;
    justify-content: center;
}

.caixa-quem-somos {
    width: 100%;
    max-width: 1200px;
}

.grid-quem-somos {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.foto-autoridade {
    position: relative;
}

.moldura-foto {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0px 0px 5px 2px var(--cyan-accent);
}

.moldura-foto img {
    width: 100%;
    display: block;
    filter: grayscale(20%); 
    transition: 0.5s;
}

.moldura-foto:hover img {
    filter: grayscale(0%);
}

.badge-experiencia {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--cyan-accent);
    color: var(--primary-dark);
    padding: 10px 20px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
}

.texto-quem-somos h2 {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-dark);
    margin: 20px 0;
}

.texto-quem-somos p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.7;
}

.pilares-missao {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 150px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.pilar span {
    display: block;
    color: var(--cyan-accent);
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.pilar p {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
}

@media (max-width: 900px) {
    .grid-quem-somos {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .foto-autoridade {
        max-width: 400px;
        margin: 0 auto;
    }
    .texto-quem-somos {
        text-align: center;
    }
    .pilares-missao {
        justify-items: center;
    }
}

.port-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(8px);
    z-index: 12000; display: none; justify-content: center; align-items: center;
}
.port-overlay.ativo { display: flex; }

.port-window {
    width: 95%; height: 85vh; background: #fff;
    border-radius: 10px; display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.port-header {
    background: #f1f5f9; padding: 12px 20px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #e2e8f0;
}

.port-dots { display: flex; gap: 6px; }
.dot-p { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }

.port-url-bar {
    background: white; padding: 6px 15px; border-radius: 6px;
    font-size: 11px; color: #64748b; border: 1px solid #e2e8f0;
    display: flex; align-items: center; gap: 15px;
}

.port-view-controls button { background: none; border: none; cursor: pointer; font-size: 14px; }
.port-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--primary-dark); }

.port-content { display: flex; flex: 1; overflow: hidden; }

.port-sidebar { width: 250px; background: #fafafa; border-right: 1px solid #e2e8f0; padding: 20px; }
.port-sidebar-header { font-size: 10px; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; color: #94a3b8; }

.port-item {
    width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 6px;
    background: white; text-align: left; cursor: pointer; font-weight: 700;
    margin-bottom: 8px; transition: 0.2s; font-size: 13px;
}
.port-item.ativo { border-color: var(--cyan-accent); background: var(--primary-dark); color: var(--cyan-accent); }

.port-view { flex: 1; background: #cbd5e1; display: flex; justify-content: center; overflow: hidden; }
#frameExibicao { width: 100%; height: 100%; background: white; transition: 0.4s ease; }

@media (max-width: 800px) { .port-sidebar { display: none; } }

.mobile-menu-icon {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburguer {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    position: relative;
    transition: 0.3s;
}

.hamburguer::before, .hamburguer::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    position: absolute;
    transition: 0.3s;
}

.hamburguer::before { top: -8px; }
.hamburguer::after { bottom: -8px; }

@media (max-width: 900px) {
    .mobile-menu-icon { display: block; }

    .navbar {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: 0.4s;
        z-index: 1000;
    }

    .navbar.ativo { right: 0; }

    .nav-links {
        flex-direction: column;
        padding: 40px;
        gap: 25px;
    }

    .mobile-menu-icon.ativo .hamburguer { background: transparent; }
    .mobile-menu-icon.ativo .hamburguer::before { transform: rotate(45deg); top: 0; }
    .mobile-menu-icon.ativo .hamburguer::after { transform: rotate(-45deg); bottom: 0; }
}

.port-nav-mobile {
    display: none;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 900px) {
    .port-nav-mobile {
        display: flex; 
    }

    .port-window {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .port-content {
        flex-direction: column; 
    }

    .port-item-mobile {
        background: white;
        border: 1px solid #e2e8f0;
        padding: 8px 12px;
        border-radius: 6px;
        font-size: 18px;
        cursor: pointer;
    }

    .port-item-mobile.ativo {
        border-color: var(--cyan-accent);
        background: var(--primary-dark);
    }
}

.port-error-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #f8fafc; display: flex; justify-content: center; align-items: center;
    text-align: center; z-index: 10; padding: 20px;
}

.error-content { max-width: 400px; color: var(--primary-dark); }
.error-icon { font-size: 40px; display: block; margin-bottom: 20px; }

.error-content h2 { font-weight: 900; text-transform: uppercase; font-size: 18px; letter-spacing: 1px; margin-bottom: 15px; }
.error-content p { font-size: 14px; color: #64748b; margin-bottom: 10px; }
.error-sub { font-size: 12px !important; opacity: 0.7; }

.btn-error-voltar {
    margin-top: 20px; padding: 10px 30px; background: var(--primary-dark);
    color: var(--cyan-accent); border: none; font-weight: 800; cursor: pointer;
}

.port-error-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.85); backdrop-filter: blur(6px); display: none; justify-content: center; align-items: center; z-index: 100; }
.error-card { background: white; width: 90%; max-width: 350px; border-radius: 12px; border: 1px solid var(--cyan-accent); text-align: center; overflow: hidden; }
@media (max-width: 600px) {
    .port-error-container { align-items: flex-end; }
    .error-card { width: 100%; border-radius: 20px 20px 0 0; }
}

.error-card-header {
    background: #f1f5f9;
    padding: 10px 15px;
    font-size: 10px;
    font-weight: 900;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.status-dot {
    width: 8px; height: 8px;
    background: #ff5f56;
    border-radius: 50%;
}

.error-card-body {
    padding: 30px 20px;
    text-align: center;
}

.error-icon-small {
    font-size: 30px;
    display: block;
    margin-bottom: 15px;
}

.error-card-body h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.error-card-body p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-error-close {
    background: var(--primary-dark);
    color: var(--cyan-accent);
    border: none;
    padding: 8px 25px;
    font-weight: 900;
    font-size: 11px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-error-close:hover {
    letter-spacing: 1px;
}

.port-error-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(6px); 
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 100;
}

.error-card {
    background: white;
    width: 90%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    overflow: hidden;
    border: 1px solid var(--cyan-accent);
    animation: surgimentoCard 0.3s ease-out;
}

@keyframes surgimentoCard {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
    .port-error-container {
        align-items: flex-end; 
        padding: 0;
    }

    .error-card {
        width: 100%;
        max-width: none;
        border-radius: 20px 20px 0 0; 
        border-bottom: none;
        border-left: none;
        border-right: none;
        animation: deslizarSubida 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .error-card-body {
        padding: 40px 25px; 
    }

    .error-card-body h3 {
        font-size: 18px; 
    }

    .btn-error-close {
        width: 100%;
        padding: 15px;
        font-size: 13px;
    }
}

@keyframes deslizarSubida {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 25000 !important;
}

.modal-overlay.ativo {
    display: flex !important;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.port-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    z-index: 15000;
    display: none;
    justify-content: center;
    align-items: center;
}
.port-overlay.ativo { display: flex; }

.port-error-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: center;
    z-index: 200;
}

.page-sucesso {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: var(--primary-dark);
    color: white;
}

.mensagem-sucesso h1 { font-size: 2.5rem; margin-bottom: 15px; color: var(--cyan-accent); }
.mensagem-sucesso p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.8; }
.icon-check { font-size: 4rem; display: block; margin-bottom: 20px; }

.modal-sucesso {
    text-align: center;
    padding: 20px 0;
    animation: surgimentoSucesso 0.4s ease-out;
}

.icon-sucesso {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.modal-sucesso h2 {
    color: var(--primary-dark);
    font-weight: 900;
    margin-bottom: 10px;
}

.modal-sucesso p {
    color: var(--text-main);
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-fechar-sucesso {
    background: var(--primary-dark);
    color: var(--cyan-accent);
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
}

@keyframes surgimentoSucesso {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.main-footer {
    background-color: var(--primary-dark) !important;
    color: var(--white);
    padding: 80px 5% 30px;
    margin-top: 0px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.logo-footer {
    width: 220px;
    height: auto;
    filter: none !important; 
    display: block;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-social { display: flex; gap: 15px; font-size: 1.5rem; }
.footer-social a { text-decoration: none; transition: 0.3s; }
.footer-social a:hover { transform: translateY(-5px); }

.footer-links h4, .footer-contact h4 {
    color: var(--cyan-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #cbd5e1; text-decoration: none; transition: 0.3s; }
.footer-links ul li a:hover { color: var(--cyan-accent); padding-left: 5px; }

.footer-contact p { color: #cbd5e1; font-size: 0.9rem; margin-bottom: 15px; }

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
}

@media (max-width: 900px) {
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 25px; }
    .footer-social { justify-content: center; }
}

.lista-resultados {
    max-height: 380px; 
    overflow-y: auto; 
    padding-right: 8px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: #00e5ff rgba(255, 255, 255, 0.05);
}

.lista-resultados::-webkit-scrollbar {
    width: 6px;
}

.lista-resultados::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.lista-resultados::-webkit-scrollbar-thumb {
    background-color: #00e5ff;
    border-radius: 10px;
    border: 1px solid transparent;
}
.card-dominio {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInSuave 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInSuave {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nome-extensao {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    white-space: nowrap;
}

.card-dominio.disponivel .nome-extensao { color: #00ff88; }
.card-dominio.ocupado .nome-extensao { color: #ff4b2b; }

.btn-registrar-card {
    background: #00e5ff;
    color: #001a4d;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7rem;
    transition: 0.3s;
}

.status-indisponivel {
    color: #ff4b2b;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-links a, .footer-bottom a {
    position: relative;
    z-index: 10;
    cursor: pointer;
}