/* Estilos customizados AR Uniformes */
/* Utilizando TailwindCSS via CDN conforme projeto original */

/* Overrides para os formulários nativos do PilotPress */
.pilotpress-form-container form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.pilotpress-form-container .pp-field-group {
    margin-bottom: 0 !important;
}
.pilotpress-form-container label {
    display: block !important;
    font-size: 0.75rem !important; /* text-xs */
    font-weight: 700 !important; /* font-bold */
    color: #374151 !important; /* text-gray-700 */
    text-transform: uppercase !important; /* uppercase */
    letter-spacing: 0.05em !important; /* tracking-wider */
    margin-bottom: 0.5rem !important; /* mb-2 */
}
.pilotpress-form-container input[type="text"],
.pilotpress-form-container input[type="tel"],
.pilotpress-form-container input[type="email"],
.pilotpress-form-container select,
.pilotpress-form-container textarea {
    width: 100% !important;
    background-color: #f9fafb !important; /* bg-gray-50 */
    border: 1px solid #d1d5db !important; /* border-gray-300 */
    color: #111827 !important; /* text-gray-900 */
    padding: 0.75rem 1rem !important; /* py-3 px-4 */
    font-size: 0.875rem !important; /* text-sm */
    border-radius: 0.25rem !important; /* rounded */
    transition: all 0.3s ease !important; /* transition-all */
    outline: none !important;
    box-shadow: none !important;
}
.pilotpress-form-container input:focus,
.pilotpress-form-container textarea:focus,
.pilotpress-form-container select:focus {
    border-color: #0E3356 !important; /* border-brand-dark */
    box-shadow: 0 0 0 1px #0E3356 !important; /* ring-1 ring-brand-dark */
}
.pilotpress-form-container .pp-submit-btn {
    width: 100% !important; /* w-full */
    max-width: 100% !important;
    background-color: #0E3356 !important; /* bg-brand-dark */
    color: #ffffff !important; /* text-white */
    padding: 1rem !important; /* py-4 */
    font-size: 0.875rem !important; /* text-sm */
    font-weight: 700 !important; /* font-bold */
    text-transform: uppercase !important; /* uppercase */
    transition: all 0.3s ease !important; /* transition-all duration-300 */
    margin-top: 1rem !important; /* mt-4 */
    border-radius: 0.25rem !important; /* rounded */
}
.pilotpress-form-container .pp-submit-btn:hover {
    background-color: #38bdf8 !important; /* hover:bg-brand */
    color: #0E3356 !important; /* hover:text-brand-dark */
}

/* Customização da Paginação do Slider (Bolinhas Ovais) */
.element-slider .swiper-pagination-bullet {
    width: 24px !important;
    height: 6px !important;
    border-radius: 9999px !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    margin: 0 4px !important;
}
.element-slider .swiper-pagination-bullet-active {
    width: 32px !important;
    background-color: #AABDFF !important; /* Cor Brand */
}

/* Fix Hero Slider Overlay & Pagination Position */
.hero-slider-wrapper .element-slider {
    height: 100% !important;
}
.hero-slider-wrapper .swiper-slide {
    background-color: #0E3356 !important; /* brand-dark */
}
.hero-slider-wrapper .swiper-slide img {
    opacity: 0.4 !important;
    height: 100% !important;
}
.hero-slider-wrapper .swiper-pagination {
    z-index: 50 !important;
    text-align: left !important;
    bottom: 2rem !important;
    padding-left: 1.5rem !important; /* px-6 */
}
@media (min-width: 1024px) {
    .hero-slider-wrapper .swiper-pagination {
        padding-left: 3rem !important; /* lg:px-12 */
        max-width: 1536px !important;
        margin: 0 auto !important;
        left: 0 !important;
        right: 0 !important;
    }
}
