/* Variáveis de Cores (as mesmas para manter a paleta) */
:root {
    --primary-color: #004d40; /* Verde/Azul escuro */
    --secondary-color: #FF7B00; /* Laranja vibrante */
    --text-color: #333;
    --light-text-color: #f4f4f4;
    --background-light: #ffffff;
    --background-dark: #2c3e50; /* Um cinza mais escuro para seções */
    --gray-light: #eeeeee;
    --border-color: #ddd;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s ease;
}

/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden; /* Evita scroll horizontal */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 0; /* Aumentado um pouco para espaçamento */
}

h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px; /* Borda mais arredondada */
    transition: background-color var(--transition-speed);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background-color: #e66a00;
}

.btn-primary {
    background-color: var(--secondary-color);
}

.btn-header {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all var(--transition-speed);
}

.btn-header:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Header (Navegação principal) */
.main-header {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: relative; /* Para o menu toggle */
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 150px; /* Ajuste conforme o logo real */
    /*filter: brightness(0) invert(1); /* Para logos escuros em fundo escuro */
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-text-color);
    font-weight: 600;
    transition: color var(--transition-speed);
    position: relative;
    padding-bottom: 5px; /* Espaço para o underline */
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-text-color);
}

/* Hero Section (Home) */
.hero-section {
    position: relative;
    height: 700px; /* Altura fixa ou ajustar com vh */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--background-dark); /* Fallback */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Escurece a imagem de fundo */
}

.hero-inner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: var(--light-text-color);
    padding: 0 20px;
}

.hero-text {
    max-width: 55%; /* Ocupa mais espaço para o texto */
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--light-text-color);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-right {
    max-width: 40%; /* Ocupa menos espaço para a imagem */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}


/* Features Section (Nova Grid) */
.features-section {
    background-color: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-color);
}


/* About Section (Nova Estrutura) */
.about-section-new {
    background-color: var(--primary-color); /* Fundo escuro */
    color: var(--light-text-color);
    padding: 80px 0;
}

.about-section-new .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-content-new {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-content-new h2 {
    font-size: 2.5rem;
    color: var(--light-text-color);
    position: relative;
    margin-bottom: 30px;
}

.about-content-new h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.about-content-new p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    text-align: center;
    margin-top: 40px;
}

.stat-item-new {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: background-color var(--transition-speed);
}

.stat-item-new:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-item-new .count-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.stat-item-new h3 {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 0;
}

.about-image-new {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image-new img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Pricing Section (Mantido Similar ao anterior, mas com novo estilo de botão) */
.pricing-section {
    background-color: var(--background-light);
    padding: 80px 0;
    text-align: center;
}

.pricing-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.pricing-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: var(--shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.pricing-card ul li::before {
    content: '\f00c'; /* Checkmark icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--secondary-color);
    margin-right: 10px;
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Video Section (Nova Estrutura) */
.video-section-new {
    background-color: var(--gray-light);
    padding: 80px 0;
}

.video-section-new .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.video-content-new {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.video-content-new h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 20px;
}

.video-content-new h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.video-content-new p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.video-embed-new {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding-bottom: 30%; /* Controla a altura do iframe */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.video-embed-new iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Contact Section (Form) - Mantido similar, com pequenas melhorias visuais */
.contact-section {
    background-color: var(--primary-color); /* Fundo escuro */
    color: var(--light-text-color);
    padding: 10px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--light-text-color);
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

#registrationForm {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light-text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text-color);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2);
}

/* Footer (Com mais colunas) */
.footer {
    background-color: var(--background-dark); /* Fundo mais escuro para o rodapé */
    color: var(--light-text-color);
    padding: 60px 0 20px 0;
    text-align: left;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 220px; /* Largura mínima para as colunas */
}

.footer-col.logo-col img {
    height: 80px;
    /*filter: brightness(0) invert(1); */
    margin-bottom: 20px;
}

.footer-col.logo-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-col ul li a:hover {
    color: var(--light-text-color);
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons a {
    color: var(--light-text-color);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color var(--transition-speed);
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


/* Responsividade */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-image-right {
        max-width: 35%;
    }
    .about-section-new .container,
    .video-section-new .container {
        flex-direction: column;
        text-align: center;
    }
    .about-content-new, .about-image-new,
    .video-content-new, .video-embed-new {
        min-width: unset;
        width: 100%;
    }
    .about-content-new h2::after,
    .video-content-new h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 80px; /* Altura do header */
        left: 0;
        padding: 20px 0;
        z-index: 999;
        box-shadow: var(--shadow);
    }
    .navbar .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    .btn-header {
        display: none; /* Esconde o botão de login no mobile */
    }
    .menu-toggle {
        display: block;
    }

    .hero-inner-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .hero-image-right {
        max-width: 80%;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .features-section h2,
    .pricing-section h2 {
        font-size: 2rem;
    }
    .features-grid-new,
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    .video-embed-new {
        padding-bottom: 56.25%; /* Volta para 16:9 em telas menores */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
    .features-section h2,
    .pricing-section h2,
    .about-content-new h2,
    .video-content-new h3,
    .contact-section h2 {
        font-size: 1.8rem;
    }
    .stat-item-new {
        padding: 15px;
    }
    .stat-item-new .count-number {
        font-size: 2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* Estilos para Componentes Nativos JSF (h:*) */
/* ========================================= */

.contact-form-jsf {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1); /* Fundo semi-transparente */
    padding: 0px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
    backdrop-filter: blur(5px);
}

.form-group-jsf {
    margin-bottom: 20px;
}

/* Estilo geral para rótulos (h:outputLabel) */
.custom-label-jsf {
    display: block !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
    color: var(--light-text-color) !important; /* Cores do formulário de contato atual */
    font-size: 1rem !important;
}

/* Estilo geral para h:inputText, h:inputSecret */
.custom-input-jsf {
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important; /* Bordas mais arredondadas */
    font-size: 1rem !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--light-text-color) !important;
    box-shadow: none !important;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed) !important;
}

.custom-input-jsf:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2) !important;
}

/* Estilo para h:selectOneRadio com layout="custom" (para alinhar com o HTML manual) */
.radio-options-jsf {
    margin-top: 10px;
    display: flex; /* Para organizar os labels lado a lado */
    flex-wrap: wrap;
    gap: 20px;
}

.radio-buttons-wrapper {
    display: flex; /* Para manter o label e o input na mesma linha */
    align-items: center;
    gap: 8px; /* Espaço entre o radio e o texto */
}

/* Esconder o radio button padrão e estilizar o pseudo-elemento */
.custom-radio-group-jsf input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-radio-label-jsf {
    position: relative;
    padding-left: 28px; /* Espaço para o rádio personalizado */
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--light-text-color);
    line-height: 20px; /* Alinhar com o tamanho do rádio */
    user-select: none;
}

/* O círculo externo do rádio personalizado */
.custom-radio-label-jsf::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-text-color); /* Borda inicial */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed);
}

/* O ponto interno do rádio personalizado quando selecionado */
.custom-radio-label-jsf::after {
    content: '';
    position: absolute;
    left: 5px; /* Posição para o ponto central */
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--secondary-color); /* Ponto laranja */
    opacity: 0;
    transition: opacity var(--transition-speed);
}

/* Mostrar o ponto interno quando o rádio está selecionado */
.custom-radio-group-jsf input[type="radio"]:checked + .custom-radio-label-jsf::after {
    opacity: 1;
}

/* Alterar borda quando selecionado/focado */
.custom-radio-group-jsf input[type="radio"]:checked + .custom-radio-label-jsf::before {
    border-color: var(--secondary-color);
}


/* Estilo para h:selectOneMenu (Dropdown) */
.custom-select-jsf {
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--light-text-color) !important;
    appearance: none; /* Remover estilo padrão do navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23F4F4F4%22%20d%3D%22M287%2C197.398L146.2%2C56.6c-3.6-3.6-8.5-5.4-13.9-5.4s-10.3%2C1.8-13.9%2C5.4L5.4%2C197.398c-7.3%2C7.3-7.3%2C19.1%2C0%2C26.4c7.3%2C7.3%2C19.1%2C7.3%2C26.4%2C0l114.5-114.5l114.5%2C114.5c7.3%2C7.3%2C19.1%2C7.3%2C26.4%2C0C294.3%2C216.598%2C294.3%2C204.698%2C287%2C197.398z%22%2F%3E%3C%2Fsvg%3E') !important; /* Seta customizada */
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 12px !important;
}

.custom-select-jsf:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2) !important;
}

/* Para as opções do select (pode variar o estilo dependendo do navegador) */
.custom-select-jsf option {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}


/* Estilo para mensagens de validação (h:message, h:messages) */
.error-message {
    color: #ffcc00 !important; /* Amarelo/Laranja claro para erro em fundo escuro */
    font-size: 0.85rem !important;
    margin-top: 5px !important;
    display: block !important;
}

.global-message-panel-jsf .info-message-jsf {
    color: #ccffcc !important; /* Verde claro para info */
    background-color: rgba(0, 255, 0, 0.1) !important;
    padding: 10px !important;
    border-radius: 5px !important;
    margin-bottom: 10px !important;
}

.global-message-panel-jsf .error-message-jsf {
    color: #ffcc00 !important; /* Amarelo/Laranja claro para erro */
    background-color: rgba(255, 0, 0, 0.1) !important;
    padding: 10px !important;
    border-radius: 5px !important;
    margin-bottom: 10px !important;
}


/* Botões de Ação no Formulário (h:commandButton) */
.form-buttons-jsf {
    display: flex;
    justify-content: flex-end; /* Alinhar à direita */
    gap: 15px;
    margin-top: 30px;
}

.btn-submit-jsf {
    background-color: var(--secondary-color) !important; /* Laranja para o botão principal */
    color: var(--light-text-color) !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: background-color var(--transition-speed) !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.btn-submit-jsf:hover {
    background-color: #e66a00 !important;
}

.btn-cancel-jsf {
    background-color: var(--background-dark) !important; /* Um cinza mais escuro */
    color: var(--light-text-color) !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: background-color var(--transition-speed) !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

.btn-cancel-jsf:hover {
    background-color: #1a252f !important; /* Um tom ainda mais escuro */
}
/* ========================================= */
/* Estilos para PrimeFaces p:dialog e componentes */
/* ========================================= */

/* ... (restante do CSS do diálogo e outros componentes) ... */

/* Estilo geral para InputText, InputMask, Password */
.custom-input.ui-inputfield /* Esta classe PrimeFaces é aplicada a inputMask também */
{
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px !important; /* Bordas mais arredondadas */
    font-size: 1rem !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: var(--light-text-color) !important;
    box-shadow: none !important;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed) !important;
}

.custom-input.ui-inputfield:focus {
    outline: none !important;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.2) !important;
}

/* ... (restante do CSS do diálogo e outros componentes) ... */

/* ========================================= */
/* Estilos para PrimeFaces p:commandButton   */
/* ========================================= */

/* Estilo para o botão de submit (laranja - Cadastrar) */
.btn-submit-custom.ui-button { /* PrimeFaces aplica a classe ui-button */
    background-color: var(--secondary-color) !important; /* Laranja vibrante */
    color: var(--light-text-color) !important; /* Texto branco */
    padding: 12px 20px !important;
    border-radius: 50px !important; /* Bem arredondado */
    border: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important; /* Tamanho da fonte */
    text-shadow: none !important; /* Remover sombra de texto padrão do PrimeFaces */
    box-shadow: none !important; /* Remover sombra de caixa padrão do PrimeFaces */
    transition: background-color var(--transition-speed), transform var(--transition-speed) !important;
    cursor: pointer !important;
    /* Alinhamento de texto se necessário, mas 'text-align: center' é padrão para botões */
}

.btn-submit-custom.ui-button:hover {
    background-color: #e66a00 !important; /* Laranja mais escuro no hover */
    transform: translateY(-2px); /* Efeito de "levantar" */
}

.btn-submit-custom.ui-button:active {
    transform: translateY(0); /* Volta ao normal no clique */
}

/* Estilo para o botão de cancelar/secundário (cinza - Cancelar) */
.btn-cancel-custom.ui-button {
    background-color: var(--background-dark) !important; /* Cinza escuro */
    color: var(--light-text-color) !important; /* Texto branco */
    padding: 12px 30px !important;
    border-radius: 50px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-shadow: none !important;
    box-shadow: none !important;
    transition: background-color var(--transition-speed), transform var(--transition-speed) !important;
    cursor: pointer !important;
}

.btn-cancel-custom.ui-button:hover {
    background-color: #1a252f !important; /* Um tom ainda mais escuro no hover */
    transform: translateY(-2px);
}

.btn-cancel-custom.ui-button:active {
    transform: translateY(0);
}

/* Estilo para botões desabilitados (opcional) */
.ui-button.ui-state-disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Ajustes gerais de texto para botões PrimeFaces */
.ui-button .ui-button-text {
    font-family: 'Montserrat', sans-serif !important;
}


/* ========================================= */
/* Estilos para Links de Texto Específicos   */
/* ========================================= */

.text-link-custom {
    color: var(--secondary-color); /* Sua cor laranja vibrante */
    text-decoration: none; /* Remove o sublinhado padrão do link */
    font-weight: 600; /* Pode adicionar um peso de fonte para destaque */
    transition: color 0.3s ease; /* Transição suave na cor */
}

.text-link-custom:hover {
    color: #e66a00; /* Um tom um pouco mais escuro de laranja no hover */
    text-decoration: underline; /* Opcional: Adiciona sublinhado no hover */
}


