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

@font-face {
font-family: 'Panton Narrow Black Italic Caps';
font-style: normal;
font-weight: normal;
src: local('Panton Narrow Black Italic Caps'), url('/fonts/PantonNarrowDemoBlackItalic.woff') format('woff');
}

:root {
    --primary-color: #152f5d;
    --secondary-color: #1a365d;
    --accent-color: #3182ce;
    --text-color: #2d3748;
    --light-bg: #ebf4ff;
    --white: #ffffff;
}

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

html, body {
    height: 100%;
    overflow-x: hidden;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: transparent;
    height: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

header {
  padding: 1rem 0;
  background: white;
  backdrop-filter: none;
  border-bottom: none;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: all 0.3s ease;
  width: 100%;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    min-width: 120px;
}

.logo a {
    background: url('../imgs/H_Preferencial.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 80px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(175, 178, 184, 0.356);
    transform: translateY(-1px);
    color: #152f5d;
}

.container-header {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.header-mobile {
    display: none; /* Oculto no PC */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: white;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
    align-items: center; 
    justify-content: space-between;
}

.header-mobile .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: auto; 
    margin-left: 20px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 105%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu.active {
    box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.menu i {
    font-size: 28px;
    color: #152f5d;
    display: block;
    line-height: 1;
}

.menu i.fas.fa-bars {
    transition: transform 0.3s ease;
}

.menu.active i.fas.fa-bars {
    transform: rotate(90deg);
}

#mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 1rem 0;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}

#mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#mobile-menu .nav-link {
    color: #333;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #152f5d 0%, #1a365d 50%, #2d3748 100%);
}

#particle-container .particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(2px);
    animation: float-particles 25s infinite ease-in-out;
}

@keyframes float-particles {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-50px);
    }
    100% {
        transform: translateY(0px);
    }
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem 1rem;
    background: transparent;
}
.partners-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.partners-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.partners-main {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
}
.partner-benefits {
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(21,47,93,0.08);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    min-width: 340px;
    flex: 1 1 340px;
}
.partner-benefits h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
.partner-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.partner-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1.1rem;
    font-size: 1.15em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}


.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #152f5d 0%, #2d3748 100%);
    margin-right: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(21, 47, 93, 0.3);
    position: relative;
    z-index: 1;
}

.partner-form-container {
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(21,47,93,0.08);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    min-width: 340px;
    flex: 1 1 340px;
}
.partner-form-container h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 700;
}
#partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
#partner-form input, #partner-form textarea {
    padding: 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    font-size: 1.05rem;
    color: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    border-image: initial;
    border-radius: 16px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

input::placeholder {
  color: #ffffff; /* ou qualquer cor desejada */
  opacity: 1; /* opcional, pois alguns navegadores aplicam opacidade automaticamente */
}   

textarea::placeholder {
  color: #ffffff; /* ou qualquer cor desejada */
  opacity: 1; /* opcional, pois alguns navegadores aplicam opacidade automaticamente */
}

#partner-form textarea {
    resize: none;
}
.submit-button {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1.5rem 2.5rem;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 20px rgba(21, 47, 93, 0.3);
}
.submit-button:hover {
    background: #3182ce;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.radio-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 260px; /* ajuste se quiser */
    cursor: pointer;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}

/* Hover */
.radio-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Remove estilo padrão do radio */
.radio-option input[type="radio"] {
    appearance: none;
    width: 6px!important;
    height: 16px;
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: 0.2s;
    margin-right: 12px;
}

/* Quando selecionado */
.radio-option input[type="radio"]:checked {
    border-color: white;
    background: white;
}

/* botão interno */
.radio-option input[type="radio"]:checked::after {
    content: "";
    width: 20px;
    height: 20px;
    background: #ffffff; /* cor do fundo interno */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



footer {
    color: white;
    background-color: #123e7a;
    padding: 2rem 0rem;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15rem;
    padding: 0 2rem;
}

.footer-section {
    flex: 1;
}

.footer-legal {
    text-align: center;
    padding-top: 4rem;
}

.footer-social {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.social-links i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    color: white;
}

.social-links a:hover i {
    transform: scale(1.1);
    color: #3182ce;
}

.footer-links-legal a {
    color: white;
    text-decoration: underline;
    margin: 0 0.5rem;
}

.footer-logo h3 {
    font-family: 'Panton Narrow Black Italic Caps';
    font-weight: 800;
}

/* ============================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ============================================================ */

/* 1. TABLETS (Ajustes finos antes da quebra total) */
@media (max-width: 1024px) {
    .nav-links { gap: 1rem; padding: 0 1rem; }
    .nav { gap: 1.5rem; }
    .footer-content { gap: 8rem; }
    
    /* Reduz um pouco a largura mínima para caber em tablets menores */
    .partner-benefits, 
    .partner-form-container {
        min-width: 300px; 
    }
}

/* 2. PONTO DE QUEBRA MOBILE (Abaixo de 900px) */
@media (max-width: 900px) {
    /* --- HEADER --- */
    header {
        display: none !important; /* Remove Header Desktop */
    }

    .header-mobile {
        display: flex; /* Ativa Header Mobile */
    }

    .menu { display: block; }
    body { padding-top: 80px; }

    /* --- LAYOUT PRINCIPAL --- */
    .partners-main {
        flex-direction: column; /* Empilha: Vantagens em cima, Form embaixo */
        align-items: center; /* Centraliza tudo */
        gap: 2rem; /* Espaço entre os blocos */
    }

    .partner-benefits, 
    .partner-form-container {
        width: 100%; /* Ocupa largura total disponível */
        min-width: 0; /* Remove a trava de 340px do Desktop */
        max-width: 600px; /* Limite para não ficar gigante em tablets verticais */
    }

    /* --- FOOTER --- */
    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }
    .footer-social { text-align: center; }
    .footer-legal { padding-top: 2rem; }
}

/* 3. CELULARES (Abaixo de 600px) */
@media (max-width: 600px) {
    .partners-hero h2 {
        font-size: 2rem; /* Título um pouco menor */
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Ajuste de Espaçamento Interno dos Cards */
    .partner-benefits, 
    .partner-form-container {
        padding: 1.5rem; /* Menos padding para ganhar espaço */
    }

    /* Radio Buttons Fluídos */
    .radio-option {
        width: 100%; /* Botão ocupa a linha toda (mais fácil de clicar) */
        justify-content: space-between;
    }
    
    /* Ajuste na lista de benefícios */
    .partner-benefits li {
        font-size: 1rem;
    }
    .advantage-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* 4. TELAS MUITO PEQUENAS (Abaixo de 480px) */
@media (max-width: 480px) {
    main {
        padding: 1rem; /* Menos margem lateral na tela */
    }

    .footer-content { padding: 0 1rem; }
    
    .partner-benefits, 
    .partner-form-container {
        padding: 1.2rem; /* Máximo aproveitamento de espaço */
    }
}