/* Estilos específicos para a página de contato */

.contato-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 2px 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* =========================
   REDES SOCIAIS - SEÇÃO DE CONTATO (Layout Vertical)
   ========================= */
.contato-container .redes-sociais {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-height: 500px;
}

.contato-container .redes-sociais h5 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.contato-container .redes-sociais .icones-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contato-container .redes-sociais .icone-item {
    padding: 1.5rem;
    min-height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contato-container .redes-sociais .icone-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
}

.contato-container .redes-sociais .icone-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.contato-container .redes-sociais .icone-label {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.2;
}

/* =========================
   REDES SOCIAIS - SEÇÃO DE INFORMAÇÕES PESSOAIS (Layout Horizontal)
   ========================= */
.redes-sociais:not(.contato-container .redes-sociais) {
    margin-top: 1rem;
}

.redes-sociais:not(.contato-container .redes-sociais) .icones-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.redes-sociais:not(.contato-container .redes-sociais) .icone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.redes-sociais:not(.contato-container .redes-sociais) .icone-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.8rem;
    color: white !important;
    transition: all 0.3s ease;
}

/* Garantir que os ícones das redes sociais sempre sejam brancos */
.redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper.whatsapp,
.redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper.linkedin,
.redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper.github,
.redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper.instagram,
.redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper.email {
    color: white !important;
}

/* Sobrescrever qualquer regra de paleta para os ícones */
.paleta .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper,
.paleta[style*="background-color: #000000"] .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper,
.paleta[style*="background-color: rgb(0, 0, 0)"] .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper,
.paleta[style*="background-color: #01355c"] .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper,
.paleta[style*="background-color: rgb(1, 53, 92)"] .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper,
.paleta[style*="background-color: #e7d6b9"] .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper,
.paleta[style*="background-color: rgb(231, 214, 185)"] .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper {
    color: white !important;
}

.redes-sociais:not(.contato-container .redes-sociais) .icone-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: inherit;
    line-height: 1.2;
}

.redes-sociais:not(.contato-container .redes-sociais) .icone-item:hover .icone-wrapper {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Divisor vertical */
.divisor-vertical {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--paleta-color, #000), transparent);
    justify-self: center;
    min-height: 500px;
}

/* Formulário de Contato */
.formulario-contato {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
}

.formulario-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
    border-radius: 20px 20px 0 0;
}

.formulario-contato h5 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.formulario-contato form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.formulario-contato .mb-3 {
    margin-bottom: 2rem !important;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    font-size: 1.1rem;
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    color: inherit;
    transform: scale(1.02);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 1.1rem;
}

.btn-enviar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-enviar::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;
}

.btn-enviar:hover::before {
    left: 100%;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Status do formulário */
#formStatus.alert {
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    border: none;
    font-weight: 500;
}

#formStatus.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-left: 4px solid #28a745;
}

#formStatus.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

/* Informações do e-mail */
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-muted strong {
    color: #007bff !important;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsividade */
@media only screen and (max-width: 1200px) {
    .contato-container {
        max-width: 1200px;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media only screen and (max-width: 900px) {
    .contato-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 2rem;
        max-width: 800px;
        padding: 0 1rem;
    }
    
    .divisor-vertical {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--paleta-color, #000), transparent);
        min-height: auto;
    }
    
    .contato-container .redes-sociais .icones-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .contato-container .redes-sociais .icone-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contato-container .redes-sociais .icone-label {
        text-align: center;
    }
    
    .contato-container .redes-sociais,
    .formulario-contato {
        min-height: auto;
    }
    
    /* Redes sociais da seção de informações pessoais em mobile */
    .redes-sociais:not(.contato-container .redes-sociais) .icones-container {
        gap: 1rem;
    }
    
    .redes-sociais:not(.contato-container .redes-sociais) .icone-item {
        min-height: 100px;
        padding: 0.8rem;
    }
    
    .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 600px) {
    .contato-container {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contato-container .redes-sociais .icones-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contato-container .redes-sociais .icone-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contato-container .redes-sociais,
    .formulario-contato {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .form-label {
        font-size: 1rem;
    }
    
    .btn-enviar {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Redes sociais da seção de informações pessoais em mobile pequeno */
    .redes-sociais:not(.contato-container .redes-sociais) .icones-container {
        gap: 0.8rem;
    }
    
    .redes-sociais:not(.contato-container .redes-sociais) .icone-item {
        min-height: 90px;
        padding: 0.6rem;
    }
    
    .redes-sociais:not(.contato-container .redes-sociais) .icone-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .redes-sociais:not(.contato-container .redes-sociais) .icone-label {
        font-size: 0.8rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contato-container > * {
    animation: fadeInUp 0.6s ease forwards;
}

.contato-container .redes-sociais {
    animation-delay: 0.1s;
}

.formulario-contato {
    animation-delay: 0.2s;
}

.info-contato {
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

/* Estilos para modo escuro/claro baseado na paleta */
.paleta .icone-item {
    background: rgba(255, 255, 255, 0.1);
}

.paleta .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.paleta .info-item {
    background: rgba(255, 255, 255, 0.1);
}

/* Estilos para as opções alternativas de e-mail */
.opcoes-email {
    border: 2px solid #007bff;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    animation: slideInUp 0.5s ease;
}

.opcoes-email h6 {
    color: #007bff !important;
    font-weight: 700;
}

.opcoes-email p {
    color: #495057 !important;
}

.opcoes-email .text-primary {
    color: #007bff !important;
    font-weight: 600;
}

.opcoes-email .btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
}

.opcoes-email .btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.opcoes-email .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    transition: all 0.3s ease;
}

.opcoes-email .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

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

/* Estilos para modo escuro */
.paleta .opcoes-email {
    background: rgba(0, 0, 0, 0.9) !important;
    border-color: #007bff;
}

.paleta .opcoes-email h6,
.paleta .opcoes-email p,
.paleta .opcoes-email .text-primary {
    color: #ffffff !important;
}

.paleta .opcoes-email .text-primary {
    color: #4dabf7 !important;
}

/* CORREÇÕES DE CONTRASTE - Garantir que textos tenham contraste adequado em todas as paletas */

/* Para paleta preta (fundo preto) */
.paleta[style*="background-color: #000000"] .text_paleta,
.paleta[style*="background-color: rgb(0, 0, 0)"] .text_paleta {
    color: #f5f5f5 !important;
}
.paleta[style*="background-color: #000000"] a,
.paleta[style*="background-color: rgb(0, 0, 0)"] a {
    color: #90caf9 !important;
}

/* Paleta azul escuro: textos claros e azulados */
.paleta[style*="background-color: #01355c"] .text_paleta,
.paleta[style*="background-color: rgb(1, 53, 92)"] .text_paleta {
    color: #e3f2fd !important;
}
.paleta[style*="background-color: #01355c"] a,
.paleta[style*="background-color: rgb(1, 53, 92)"] a {
    color: #90caf9 !important;
}

/* Paleta beje: textos escuros */
.paleta[style*="background-color: #e7d6b9"] .text_paleta,
.paleta[style*="background-color: rgb(231, 214, 185)"] .text_paleta {
    color: #2d2d2d !important;
}
.paleta[style*="background-color: #e7d6b9"] a,
.paleta[style*="background-color: rgb(231, 214, 185)"] a {
    color: #01355c !important;
}

/* Ajuste para títulos e botões */
.paleta[style*="background-color: #000000"] .btn,
.paleta[style*="background-color: rgb(0, 0, 0)"] .btn {
    color: #f5f5f5;
    background-color: #222;
    border-color: #90caf9;
}
.paleta[style*="background-color: #01355c"] .btn,
.paleta[style*="background-color: rgb(1, 53, 92)"] .btn {
    color: #e3f2fd;
    background-color: #01497c;
    border-color: #90caf9;
}
.paleta[style*="background-color: #e7d6b9"] .btn,
.paleta[style*="background-color: rgb(231, 214, 185)"] .btn {
    color: #01355c;
    background-color: #fff;
    border-color: #01355c;
}

/* ESTILOS ESPECÍFICOS PARA CADA PALETA */

/* Paleta Preta */
body.paleta-preta .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

body.paleta-preta .nav-link:hover {
    color: #e6e6e6 !important;
}

body.paleta-preta .nav-link.active {
    color: #4dabf7 !important;
}

body.paleta-preta a:not(.nav-link) {
    color: #4dabf7 !important;
    transition: color 0.3s ease;
}

body.paleta-preta a:not(.nav-link):hover {
    color: #74b9ff !important;
}

body.paleta-preta .btn-outline-light {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

body.paleta-preta .btn-outline-light:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

body.paleta-preta .btn-primary {
    background-color: #4dabf7 !important;
    border-color: #4dabf7 !important;
}

body.paleta-preta .btn-primary:hover {
    background-color: #74b9ff !important;
    border-color: #74b9ff !important;
}

/* Paleta Azul */
body.paleta-azul .nav-link {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

body.paleta-azul .nav-link:hover {
    color: #f0f0f0 !important;
}

body.paleta-azul .nav-link.active {
    color: #74b9ff !important;
}

body.paleta-azul a:not(.nav-link) {
    color: #74b9ff !important;
    transition: color 0.3s ease;
}

body.paleta-azul a:not(.nav-link):hover {
    color: #4dabf7 !important;
}

body.paleta-azul .btn-outline-light {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

body.paleta-azul .btn-outline-light:hover {
    background-color: #ffffff !important;
    color: #01355c !important;
}

body.paleta-azul .btn-primary {
    background-color: #74b9ff !important;
    border-color: #74b9ff !important;
}

body.paleta-azul .btn-primary:hover {
    background-color: #4dabf7 !important;
    border-color: #4dabf7 !important;
}

/* Paleta Beje */
body.paleta-beje .nav-link {
    color: #262626 !important;
    transition: color 0.3s ease;
}

body.paleta-beje .nav-link:hover {
    color: #000000 !important;
}

body.paleta-beje .nav-link.active {
    color: #01355c !important;
}

body.paleta-beje a:not(.nav-link) {
    color: #01355c !important;
    transition: color 0.3s ease;
}

body.paleta-beje a:not(.nav-link):hover {
    color: #000000 !important;
}

body.paleta-beje .btn-outline-light {
    color: #262626 !important;
    border-color: #262626 !important;
}

body.paleta-beje .btn-outline-light:hover {
    background-color: #262626 !important;
    color: #ffffff !important;
}

body.paleta-beje .btn-primary {
    background-color: #01355c !important;
    border-color: #01355c !important;
}

body.paleta-beje .btn-primary:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

/* Sobrescreve textos azuis para preto ou branco conforme a paleta */
body.paleta-preta, body.paleta-preta * {
    color: #fff !important;
}
body.paleta-azul, body.paleta-azul * {
    color: #fff !important;
}
body.paleta-beje, body.paleta-beje * {
    color: #000 !important;
}

body.paleta-preta a, body.paleta-preta .btn, body.paleta-preta .nav-link,
body.paleta-azul a, body.paleta-azul .btn, body.paleta-azul .nav-link {
    color: #fff !important;
}
body.paleta-beje a, body.paleta-beje .btn, body.paleta-beje .nav-link {
    color: #000 !important;
}

/* Remove cor azul de links e botões */
body.paleta-preta a:not(.nav-link),
body.paleta-azul a:not(.nav-link),
body.paleta-beje a:not(.nav-link) {
    color: inherit !important;
}

body.paleta-preta .btn-primary,
body.paleta-azul .btn-primary {
    color: #fff !important;
    background-color: #222 !important;
    border-color: #fff !important;
}

body.paleta-beje .btn-primary {
    color: #000 !important;
    background-color: #fff !important;
    border-color: #000 !important;
}

/* Estilos gerais para links e botões */
.nav-link {
    transition: color 0.3s ease;
}

a {
    transition: color 0.3s ease;
}

.btn {
    transition: all 0.3s ease;
}

/* Estilos específicos para elementos de contato */
.icone-item {
    transition: all 0.3s ease;
}

.icone-item:hover {
    transform: scale(1.1);
}

.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: scale(1.02);
}

.btn-enviar {
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    transform: translateY(-2px);
}

/* =========================
   MODAL DE OPÇÕES DE E-MAIL
   ========================= */
.modal-opcoes-email {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.modal-opcoes-email .modal-content {
    background: var(--paleta-bg, #ffffff);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.3s ease-out;
}

.modal-opcoes-email .modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-opcoes-email .modal-header h5 {
    margin: 0;
    font-weight: 600;
}

.modal-opcoes-email .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-opcoes-email .btn-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-opcoes-email .modal-body {
    padding: 2rem;
}

.opcoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.opcao-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.opcao-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.opcao-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.opcao-item span {
    font-weight: 600;
    color: var(--paleta-text, #333);
}

/* =========================
   MELHORIAS NO FORMULÁRIO
   ========================= */
.formulario-contato {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
}

.formulario-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00d4ff, #007bff);
    border-radius: 20px 20px 0 0;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    font-size: 1.1rem;
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #007bff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    color: inherit;
    transform: scale(1.02);
}

.btn-enviar {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-enviar::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;
}

.btn-enviar:hover::before {
    left: 100%;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Status do formulário */
#formStatus.alert {
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    border: none;
    font-weight: 500;
}

#formStatus.alert-success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border-left: 4px solid #28a745;
}

#formStatus.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

/* Informações do e-mail */
.text-info-email {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.text-info-email strong {
    color: #007bff !important;
    font-weight: 600;
}

/* Sobrescrever para diferentes paletas */
.paleta[style*="background-color: #000000"] .text-info-email,
.paleta[style*="background-color: rgb(0, 0, 0)"] .text-info-email {
    color: rgba(255, 255, 255, 0.95) !important;
}

.paleta[style*="background-color: #01355c"] .text-info-email,
.paleta[style*="background-color: rgb(1, 53, 92)"] .text-info-email {
    color: rgba(255, 255, 255, 0.9) !important;
}

.paleta[style*="background-color: #e7d6b9"] .text-info-email,
.paleta[style*="background-color: rgb(231, 214, 185)"] .text-info-email {
    color: rgba(0, 0, 0, 0.8) !important;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-muted strong {
    color: #007bff !important;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsividade */
@media (max-width: 768px) {
    .opcoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formulario-contato {
        padding: 1.5rem;
    }
    
    .modal-opcoes-email .modal-content {
        width: 95%;
        margin: 1rem;
    }
}
