/* =========================================
   ESTRUTURA GERAL (Fundo Claro do Site)
========================================= */
body{
	background: #dfe8ee;
}
.nxct-section {    
    padding: 80px 0;
    min-height: 100vh;   /* Garante que o fundo cubra toda a tela */
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin-top: 60px;
}

.nxct-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px; /* Espaço real entre o card branco e o lado direito */
    padding: 0 20px;
    width: 100%;
}

/* =========================================
   LADO ESQUERDO: CARD FORMULÁRIO BRANCO
========================================= */
.nxct-form-side {
    width: 48%;
    background: #ffffff;
    border-radius: 25px; /* Bordas arredondadas do card branco */
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05); /* Sombra suave para o fundo claro */
    box-sizing: border-box;
}

.nxct-title {
    font-size: 42px;
    font-weight: 700;
    color: #0c1c30;
    margin: 0 0 15px;
}

.nxct-subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #64748b;
    margin-bottom: 35px;
}

/* Campos de Input e Textarea */
.nxct-field {
    position: relative;
    margin-bottom: 15px;
}

.nxct-field span {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.nxct-field input {
    width: 100%;
    height: 54px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc; /* Leve fundo cinza nos inputs */
    padding-left: 55px;
    font-size: 15px;
    color: #334155;
    box-sizing: border-box;
}

.nxct-textarea span {
    top: 25px;
    transform: none;
}

.nxct-textarea textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    padding: 20px 20px 20px 55px;
    resize: none;
    font-size: 15px;
    color: #334155;
    box-sizing: border-box;
}

/* Botão Azul Ciano */
.nxct-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 12px;
    background: #00d8ff;
    color: #031124;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nxct-btn:hover {
    background: #00b4d8;
}

/* =========================================
   LADO DIREITO: IMAGEM DE FUNDO E TEXTOS
========================================= */
.nxct-image-side {
    width: 48%;
    position: relative;
    border-radius: 30px; /* Borda externa do container da imagem */
    overflow: hidden;    /* Recorta o conteúdo dentro do raio */
    min-height: 650px;   
    display: flex;
    box-sizing: border-box;
    background: url('../img/enviando_email.webp') no-repeat center center;
    background-size: cover;
}

/* Overlay escuro posicionado acima da imagem */
.nxct-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* CORREÇÃO: Reduzido de 0.9 para 0.45 e 0.65 para a imagem aparecer perfeitamente */
    background: linear-gradient(135deg, rgba(3, 17, 36, 0.45) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2; 
}


/* Bloco de conteúdo posicionado no topo de tudo */
.nxct-content {
    position: relative;
    z-index: 5; /* Garante que os textos fiquem na frente do overlay */
    color: #ffffff;
    padding: 60px 45px;
    width: 100%;
}

.nxct-content h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 30px;
}

.nxct-content h3 span {
    color: #00d8ff;
}

.nxct-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 45px;
}

/* Lista de Itens */
.nxct-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.nxct-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Cores específicas dos círculos dos ícones na imagem */
.icon-blue {
    background: #1d4ed8; 
}
.icon-cyan {
    background: #00d8ff;
    color: #031124;
}

.nxct-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.nxct-item p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* =========================================
   RESPONSIVIDADE (Para Celular e Tablet)
========================================= */
@media (max-width: 991px) {
    .nxct-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .nxct-form-side,
    .nxct-image-side {
        width: 100%;
    }
    
    .nxct-image-side {
        min-height: auto; 
        background-position: top center; 
    }
}

/* ==========================
   DOBRA CAPTURA DE E-MAIL
========================== */

.email-call{
    padding:200px 0;

    background-image:url('../img/call_center.webp');
    background-position:center center;
    background-repeat:no-repeat;
    background-size:cover;

    position:relative;
}

.email-call:before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
}

.email-call .container{
    position:relative;
    z-index:2;
}

.email-tag{
    display:inline-block;

    background:#0d6efd;
    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;
    font-weight:600;

    margin-bottom:25px;
}

.email-call h2{
    color:#fff;

    font-size:52px;
    font-weight:700;

    line-height:1.3;

    margin-bottom:25px;
}

.email-call p{
    color:#fff;

    font-size:18px;
    line-height:1.9;

    max-width:800px;
    margin:0 auto;
}

@media(max-width:768px){

    .email-call{
        padding:80px 0;
    }

    .email-call h2{
        font-size:34px;
    }

    .email-call p{
        font-size:16px;
    }

}
