/* ========== RESET E CONFIGURAÇÕES GERAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-azul-claro: #acd3f1;
    --cor-laranja-claro: #f2c38c;
    --cor-laranja-vibrante: #ff8a1a;
    
    --cor-texto-principal: #2c3e50;
    --cor-texto-secundario: #5a6c7d;
    --branco: #ffffff;
    --cinza-claro: #f8f9fa;
    
    --espacamento-pequeno: 1rem;
    --espacamento-medio: 2rem;
    --espacamento-grande: 3rem;
    
    --fonte-principal: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto-principal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========== HEADER ========== */
.header {
    background-color: var(--branco);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.btn-header {
    background-color: var(--cor-laranja-vibrante);
    color: var(--branco);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 26, 0.3);
}

.btn-header:hover {
    background-color: #e67910;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 26, 0.4);
}

/* ========== SEÇÃO PRINCIPAL ========== */
.main-section {
    background-image: url('images/imagem-fundo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    display: flex;
    align-items: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(172, 211, 241, 0.9) 0%, rgba(242, 195, 140, 0.85) 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* ========== CONTEÚDO DE TEXTO ========== */
.content-text {
    padding-right: 2rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cor-texto-principal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 138, 26, 0.15);
    border: 2px solid var(--cor-laranja-vibrante);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--cor-texto-principal);
    animation: pulse 2s infinite;
}

.urgency-badge svg {
    color: var(--cor-laranja-vibrante);
    flex-shrink: 0;
}

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

/* ========== FORMULÁRIO ========== */
.form-container {
    background-color: var(--branco);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--cor-texto-principal);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--fonte-principal);
    background-color: var(--cor-laranja-claro);
    transition: all 0.3s ease;
    color: var(--cor-texto-principal);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cor-laranja-vibrante);
    box-shadow: 0 0 0 3px rgba(255, 138, 26, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3e50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    background-color: var(--cor-laranja-vibrante);
    color: var(--branco);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 138, 26, 0.3);
}

.btn-submit:hover {
    background-color: #e67910;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 138, 26, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ========== PROVA SOCIAL ========== */
.social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.social-proof svg {
    color: var(--cor-laranja-vibrante);
    flex-shrink: 0;
}

.social-proof p {
    font-weight: 600;
    color: var(--cor-texto-secundario);
    font-size: 0.95rem;
}

/* ========== QUEM SOMOS ========== */
.quem-somos {
    background-color: var(--branco);
    padding: 80px 0;
}

.quem-somos-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quem-somos-imagem img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.quem-somos-conteudo {
    padding-left: 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cor-texto-principal);
    margin-bottom: 1.5rem;
}

.quem-somos-conteudo p {
    font-size: 1.125rem;
    color: var(--cor-texto-secundario);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--cor-texto-principal);
    color: var(--branco);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 4fr 1fr 0fr;
    gap: 2rem;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-cnpj {
    font-weight: 600;
}

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

.footer-direitos p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ========== RESPONSIVIDADE - TABLET ========== */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-text {
        padding-right: 0;
        text-align: center;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .urgency-badge {
        justify-content: center;
    }
    
    .form-container {
        padding: 2rem;
    }

    .quem-somos {
        padding: 60px 0;
    }

    .quem-somos-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .quem-somos-conteudo {
        padding-left: 0;
        text-align: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-direitos {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-section {
        padding: 100px 0 40px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .btn-header {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ========== RESPONSIVIDADE - MOBILE ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .urgency-badge {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .btn-submit {
        font-size: 1rem;
        padding: 14px;
    }
    
    .social-proof {
        font-size: 0.875rem;
    }

    .quem-somos {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .quem-somos-conteudo p {
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-info p {
        font-size: 0.875rem;
    }

    .footer-direitos p {
        font-size: 0.8rem;
    }
}

/* ========== MENSAGEM DE SUCESSO ========== */
.mensagem-sucesso {
    background-color: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    animation: fadeIn 0.5s ease;
}

.mensagem-sucesso.show {
    display: flex;
}

.mensagem-sucesso svg {
    flex-shrink: 0;
    color: #10b981;
}

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



/* ========== PÁGINA DE POLÍTICA DE PRIVACIDADE ========== */
.politica-page {
    background-color: var(--cinza-claro);
    padding: 120px 0 60px;
    min-height: 100vh;
}

.politica-content {    
    padding: 3rem; 
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 0px;
}

.politica-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cor-texto-principal);
    margin-bottom: 2rem;
    text-align: center;
}

.politica-section {
    margin-bottom: 2.5rem;
}

.politica-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    margin-bottom: 1rem;
}

.politica-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cor-texto-secundario);
    margin-bottom: 1rem;
}

.politica-section p strong {
    color: var(--cor-texto-principal);
    font-weight: 600;
}

.footer-link {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .politica-page {
        padding: 100px 0 40px;
    }
    
    .politica-content {
        padding: 3rem 1rem;
        padding-bottom: 0px;
    }
    
    .politica-content h1 {
        font-size: 2rem;
    }
    
    .politica-section h2 {
        font-size: 1.25rem;
    }
}

/* ========== AVISO DE COOKIES ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--cor-texto-principal);
    color: var(--branco);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--cor-laranja-vibrante);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-aceitar {
    background-color: var(--cor-laranja-vibrante);
    color: var(--branco);
}

.btn-aceitar:hover {
    background-color: #e67910;
    transform: translateY(-2px);
}


@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
}