/* ========================================
   CORES PROFISSIONAIS - Laranja, Preto e Branco
   ======================================== */
:root {
    --color-primary: #000000;
    --color-primary-dark: #1a1a1a;
    --color-primary-light: #333333;
    --color-secondary: #ff6600;
    --color-accent: #ffd54f;
    --color-accent-light: #ffe082;
    --color-text-dark: #000000;
    --color-text-light: #333333;
    --color-bg-light: #f8f9fa;
    --color-bg-white: #ffffff;
    --color-success: #27ae60;
    --color-danger: #e74c3c;
    
    --gradient-primary: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* ========================================
   TIPOGRAFIA & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    line-height: 1.6;
    background-color: var(--color-bg-light);
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h5 { font-size: 1.25rem; }

p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #666;
    text-shadow: 1px 1px 3px rgba(26, 26, 26, 0.2);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-muted {
    color: #666 !important;
}

span {
    color: var(--color-primary-light);
    font-weight: bold;
}

input, select, textarea, checkbox {
    border: 1px solid rgb(82, 82, 82) !important;
}

/* ========================================
   HEADER & NAVEGAÇÃO
   ======================================== */
header {
    background: var(--color-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ff6600;
    transition: transform 0.3s ease;
}

header.nav-hidden {
    transform: translateY(-100%);
}

.navbar {
    background-color: var(--color-primary) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.45rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.site-logo {
    display: block;
    width: 220px;
    height: 55px;
    object-fit: contain;
}

.nav-link {
    font-weight: 600;
    color: var(--color-bg-white) !important;
    position: relative;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #ff6600;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #ff6600 !important;
}

/* Navbar toggler (mobile menu button) */
.navbar .navbar-toggler {
    border: 2px solid #ff6600 !important;
    padding: 0.4rem 0.6rem;
    background-color: transparent;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
    outline: none;
}

.navbar .navbar-toggler .navbar-toggler-icon,
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff6600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background-image: url('../img/poa.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-bg-white);
    padding-block: 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 213, 79, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--color-bg-white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.8s ease;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--color-bg-light);
    margin-bottom: 2rem;
    animation: slideInUp 0.8s ease 0.2s both;
}

.hero span {
    color: #ff8533;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease 0.4s both;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(212, 165, 116, 0.3);
}

.home-section-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.8s ease 0.4s both;
}

.hero-form-card h4 {
    color: #ff6600;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}

.hero-quick-form .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.hero-quick-form .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #000000;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-quick-form .form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    color: #000000;
}

.hero-quick-form .form-control::placeholder {
    color: #999999;
}

.hero-quick-form .form-select {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #000000;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.25rem;
}

.hero-quick-form .form-select:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    color: #000000;
}

/* Sidebar Form - Blog Post */
.side-hero .form-label {
    color: #333333;
}

.side-hero .form-control,
.side-hero .form-select {
    border: 1px solid #cccccc;
    background: #ffffff;
    height: 42px;
    min-height: 42px;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    box-sizing: border-box;
}

.side-hero .form-select {
    padding-right: 2.25rem;
    background-position: right 0.75rem center;
}

.side-hero .form-control:focus,
.side-hero .form-select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

/* Choices.js styles for sidebar form */
.side-hero .choices {
    width: 100%;
    margin: 0;
}

.side-hero .choices__inner {
    display: flex;
    align-items: center;
    height: 42px;
    min-height: 42px;
    background-color: #ffffff !important;
    border: 1px solid rgb(82, 82, 82) !important;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-sizing: border-box;
}

.side-hero .choices.is-open .choices__inner,
.side-hero .choices.is-focused .choices__inner {
    border-color: #ff6600 !important;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1) !important;
}

.side-hero .choices__input {
    background-color: transparent !important;
    color: #333 !important;
}

.side-hero .choices__list--single {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.side-hero .choices__list--single .choices__item {
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.side-hero .choices[data-type*="select-one"] .choices__single {
    padding: 0 1.5rem 0 0 !important;
    line-height: 1.25;
    min-width: 0;
}

.side-hero .choices__list--dropdown {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 100% !important;
    max-height: 250px;
}

.side-hero .choices__list--dropdown .choices__item {
    padding: 8px 12px;
    color: #333;
    font-size: 0.9rem;
}

.side-hero .choices__list--dropdown .choices__item--selectable:hover,
.side-hero .choices__list--dropdown .choices__item--highlighted {
    background-color: #ff6600;
    color: #ffffff;
}

.side-hero p.text-white-50 {
    color: #666666 !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   404 ERROR PAGE STYLES
   ======================================== */

.hero-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-404::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-404 .container {
    position: relative;
    z-index: 1;
}

.error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 50%, #ffad66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-bottom: 1rem;
    animation: pulse404 2s ease-in-out infinite;
}

@keyframes pulse404 {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.9;
    }
}

.hero-404 h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-404 p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.hero-404 .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-404 .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

/* Recent Posts Section on 404 */
.recent-posts-404 {
    background-color: #f8f9fa;
}

.recent-posts-404 .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.recent-posts-404 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.recent-posts-404 .card-img-top {
    height: 180px;
    object-fit: cover;
}

/* ========================================
   FORM VALIDATION STYLES
   ======================================== */

.form-control,
.form-select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.form-control.is-valid {
    border-color: #27ae60;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2327ae60' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375rem + 0.1875rem) center;
    background-size: calc(0.75rem + 0.375rem) calc(0.75rem + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-invalid {
    border-color: #e74c3c;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e74c3c' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e74c3c' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375rem + 0.1875rem) center;
    background-size: calc(0.75rem + 0.375rem) calc(0.75rem + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-invalid:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

.invalid-feedback {
    display: none;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #e74c3c;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.valid-feedback {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #27ae60;
}

.was-validated .form-control:valid {
    border-color: #27ae60;
}

.was-validated .form-control:valid:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}

.was-validated .form-select:valid {
    border-color: #27ae60;
}

.was-validated .form-select:valid:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.25);
}



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

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

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

/* ========================================
   BOTÕES
   ======================================== */
.btn {
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #000000 !important;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
    background: linear-gradient(135deg, #ffe082 0%, #ffd54f 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-bg-white);
    color: #ff6600 !important;
    border: 2px solid #ff6600;
}

.btn-secondary:hover {
    background: #ff6600;
    color: var(--color-bg-white) !important;
    transform: translateY(-3px);
}

.btn-outline-secondary {
    border: 2px solid var(--color-bg-white);
    color: #ffd54f !important;
}

.btn-outline-secondary:hover {
    background: var(--color-bg-white);
    color: #ff6600 !important;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ========================================
   CARDS PREMIUM
   ======================================== */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--color-bg-white);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: #000000;
    color: #ffd54f;
    border: none;
    padding: 1.5rem;
    font-weight: 700;
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: #000000;
    line-height: 1.8;
}

/* ========================================
   SEÇÕES
   ======================================== */
section {
    padding: 80px 0;
}

section.alternate {
    background: #ffffff;
}

section h2 {
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
}

section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #ff6600;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ========================================
   STATS / MÉTRICAS
   ======================================== */
.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 120px;
}

.stat-label {
    color: #000000;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ========================================
   FEATURES / DIFERENCIAIS
   ======================================== */
.feature {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 213, 79, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.feature h4 {
    margin-bottom: 1rem;
    color: #ff6600;
}

.feature p {
    margin-bottom: 0;
    color: #000000;
}

/* Bootstrap Icons Styling */
.feature-icon i,
.strategy-icon i {
    font-style: normal;
}

/* ========================================
   ESTRATÉGIAS
   ======================================== */
.strategy-card {
    background: var(--color-bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6600;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: #ffd54f;
}

.strategy-header {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05), rgba(212, 165, 116, 0.1));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(26, 58, 82, 0.08);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.strategy-icon {
    font-size: 3rem;
    color: #ff6600;
    flex-shrink: 0;
    text-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
}

.strategy-icon i {
    color: #ff6600;
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.strategy-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
}

.strategy-subtitle {
    font-size: 0.9rem;
    color: #666666;
}

.strategy-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.strategy-body ul {
    list-style: none;
}

.strategy-body li {
    padding: 0.5rem 0;
    color: #000000;
    padding-left: 1.5rem;
    position: relative;
}

.strategy-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6600;
    font-weight: bold;
}

/* ========================================
   BAIRROS
   ======================================== */
.neighborhood-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
}

.neighborhood-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.neighborhood-image {
    height: 250px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.neighborhood-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.3), rgba(255, 213, 79, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neighborhood-card:hover .neighborhood-image::after {
    opacity: 1;
}

.neighborhood-content {
    padding: 2rem;
}

.neighborhood-badge {
    display: inline-block;
    background: #ffd54f;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.neighborhood-title {
    color: #ff6600;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.neighborhood-stat {
    color: #ff6600;
    font-weight: 700;
    font-size: 1.1rem;
}

.neighborhood-text {
    color: #000000;
    font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial {
    background: var(--color-bg-white);
    border-left: 4px solid #ff6600;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: #ffd54f;
    opacity: 0.3;
}

.stars {
    color: #ffd54f;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #000000;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: #ff6600;
}

.testimonial-role {
    color: #555;
    font-size: 0.9rem;
}

/* ========================================
   FORMULÁRIO
   ======================================== */
.form-control, .form-select {
    border: 2px solid rgba(26, 58, 82, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #333;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
    padding-right: 36px;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus, .form-select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

.form-label {
    font-weight: 600;
    color: #ff6600;
    margin-bottom: 0.75rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--color-primary);
    color: var(--color-bg-white);
    padding: 3rem 0 1rem;
    margin-top: 0;
}

footer h5 {
    color: #ff6600;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
}

.text-center .footer-logo {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .text-md-start .footer-logo {
        margin-left: 0;
        margin-right: 0;
    }
}

footer p {
    color: rgba(255, 255, 255, 0.95);
}

footer a {
    color: var(--color-bg-white);
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

footer i {
    color: #ff8533;
    margin-right: 0.5rem;
}

footer li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-accent {
    color: #ffd54f !important;
}

.text-secondary {
    color: #ff6600 !important;
}

.bg-accent {
    background: #ffd54f;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.bg-primary-gradient h1 {
    background: linear-gradient(90deg, #ffd54f 0%, #ff6600 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bg-primary-gradient .lead,
.bg-primary-gradient p {
    color: #ffffff;
}

.bg-accent-gradient {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

.shadow-custom {
    box-shadow: var(--shadow-md);
}

.badge-accent {
    background: #ffd54f;
    color: #000000;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Animações de Scroll */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.fade-in-up {
    transform: translateY(30px);
}

.scroll-animate.fade-in-left {
    transform: translateX(-30px);
}

.scroll-animate.fade-in-right {
    transform: translateX(30px);
}

.scroll-animate.scale-in {
    transform: scale(0.9);
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Delay para animações em sequência */
.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-4 {
    transition-delay: 0.4s;
}

/* ========================================
   BLOG
   ======================================== */
.blog-post {
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(26, 58, 82, 0.1);
}

.blog-post-header h2 {
    margin: 0;
}

.blog-post-header a {
    color: #000000;
    text-decoration: none;
}

.blog-post-header a:hover {
    color: #ff6600;
}

.blog-category {
    display: inline-block;
    background: #ffd54f;
    color: #000000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-decoration: none;
    cursor: pointer;
}
.blog-category:hover {
    background: #ffca28;
    color: #000000;
}

.blog-post-meta {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 1rem 0;
}

.blog-post-excerpt {
    color: #000000;
    line-height: 1.8;
}

.blog-post .card-text:not(.small) {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post {
    position: relative;
}

.blog-post-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.blog-post .blog-category,
.blog-post .blog-read-more {
    position: relative;
    z-index: 2;
}

.blog-read-more {
    color: #ff6600;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #ffd54f;
    transform: translateX(5px);
}

/* Blog Card Hover Effect */
.blog-card:hover,
.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

/* Blog Image Container */
.blog-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image {
    transform: scale(1.05);
}

/* Blog Category Badge - Position Absolute */
.blog-image-container .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
}

/* Múltiplas categorias */
.blog-categories {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: calc(100% - 32px);
}

.blog-categories .blog-category {
    position: static;
    margin: 0;
}

.newsletter-card {
    background: #000000;
    border-radius: 12px;
    padding: 48px 40px;
    transition: .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.newsletter-card:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.newsletter-card h3 {
    color: #ffd54f;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.newsletter-card .form-control {
    height: 50px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
}

.newsletter-card .btn-secondary {
    background-color: #ff6600 !important;
    border: none;
    border-radius: 0;
    color: #ffffff !important;
    font-weight: 700;
    padding: 0 32px;
    height: 50px;
    transition: background-color 0.3s ease;
    transform: none;
}

.newsletter-card .btn-secondary:hover {
    background-color: #ff8533 !important;
    color: #ffffff !important;
    transform: none;
}

.newsletter-card small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-form-card {
        padding: 1.5rem;
    }

    .home-section-image {
        height: 320px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    /* Newsletter card tablet */
    .newsletter-card {
        padding: 32px 24px;
    }
    
    .newsletter-card h3 {
        font-size: 1.6rem;
    }
    
    .newsletter-card .btn-secondary {
        padding: 0 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    .navbar {
        padding: 0.35rem 0;
    }

    .site-logo {
        width: 170px;
        height: 43px;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero .lead {
        font-size: 1.2rem;
        font-weight: 400;
    }

    .choices {
        max-width: 100%;
    }

    .choices__list--dropdown {
        min-width: 100% !important;
        width: 100% !important;
        max-width: calc(100vw - 32px) !important;
    }

    .hero-form-card {
        padding: 1.25rem;
    }

    .hero-form-card h4 {
        font-size: 1.15rem;
    }

    .home-section-image {
        height: 240px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    section {
        padding: 30px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Newsletter card mobile */
    .newsletter-card {
        padding: 24px 16px;
    }
    
    .newsletter-card h3 {
        font-size: 1.4rem;
    }
    
    .newsletter-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
    }
    
    .newsletter-card .input-group {
        flex-direction: column;
    }
    
    .newsletter-card .form-control {
        width: 100%;
        border-radius: 6px !important;
        margin-bottom: 10px;
    }
    
    .newsletter-card .btn-secondary {
        width: 100%;
        border-radius: 6px !important;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .newsletter-card small {
        font-size: 0.75rem;
    }
}

/* ========================================
   ACCORDION CUSTOMIZADO - FAQ
   ======================================== */

/* Remove a borda laranja decorativa e espaço extra do título da FAQ */
#faq h2 {
    padding-bottom: 0;
}

#faq h2::after {
    display: none;
}

.accordion {
    border: none;
}

.accordion-item {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #000000;
    font-weight: 600;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.accordion-button:not(.collapsed) {
    background-color: #ff6600;
    color: #ffffff;
    box-shadow: none;
    border: none;
}

.accordion-button:not(.collapsed):hover {
    transform: scale(1.01);
    box-shadow: 0 3px 10px rgba(255, 102, 0, 0.15);
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    outline: 2px solid #ff6600;
    outline-offset: -2px;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff6600'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    color: #333333;
    background-color: #fafafa;
    border-radius: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.accordion-item:hover .accordion-body {
    background-color: #fff5f0;
}
/* ========================================
   INLINE STYLES EXTRACTED TO CSS
   ======================================== */

/* Text Styles */
.text-muted-secondary {
    color: #666;
}

.text-muted-lead {
    color: #666;
    font-size: 1.1rem;
}

.text-light-secondary {
    color: rgba(255, 255, 255, 0.95);
}

.text-light-subtle {
    color: rgba(255, 255, 255, 0.8);
}

/* Process Section */
.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
}

/* "O que você recebe" Section */
.what-you-get-icon {
    font-size: 2.5rem;
    color: #ff6600;
}

/* Hidden Elements */
.hidden-section {
    display: none;
}

/* CTA Sections */
.cta-section {
    color: white;
    padding: 80px 0;
}

.cta-section h2 {
    color: white !important;
    margin-bottom: 1.5rem;
}

.cta-section-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-footnote {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Button Sizing */
.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-medium {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-small {
    padding: 12px 32px;
    font-size: 1rem;
}

/* Card Styles */
.card-gradient-bg {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05), rgba(212, 165, 116, 0.1));
}

/* Hero/Image Sections */
.hero-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    height: 500px;
}

.hero-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(255,102,0,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.hero-image-text h3 {
    color: #ffd54f;
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-image-text p {
    color: #ffffff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Section Padding */
.section-padded-lg {
    padding: 80px 0;
}

.section-padded-md {
    padding: 60px 0;
}

/* ========================================
   CHOICES.JS CUSTOMIZADO
   ======================================== */

.choices {
    margin: 0;
    position: relative;
    overflow: visible !important;
    z-index: 100;
}

.choices__inner {
    background-color: #ffffff;
    border: 1px solid rgb(82, 82, 82);
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    min-height: 2.5rem;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    display: flex;
    align-items: center;
    position: static;
    z-index: 1;
    overflow: visible !important;
}

.choices[data-type*="select-one"] .choices__inner {
    padding: 0.375rem 0.75rem;
}

.choices__input {
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 1rem;
    padding: 0 !important;
    width: 0 !important;
    height: 0;
    display: none !important;
    position: relative;
    z-index: 11;
}

.choices.is-open .choices__input {
    display: block !important;
    width: 100% !important;
    padding: 8px 16px !important;
    height: auto;
}

.choices__input:focus {
    outline: none;
}

.choices__list--single {
    position: static;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    height: auto !important;
    display: block !important;
}

.choices.is-open .choices__list--single {
    display: none !important;
}

.choices__list--single .choices__item {
    padding: 0 !important;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
    display: block !important;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

.choices__list--single .choices__item:not(:first-child) {
    display: none !important;
    visibility: hidden !important;
}

.choices__list--dropdown {
    background-color: #ffffff;
    border: 2px solid #ff6600;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: auto;
    margin-top: 0 !important;
    min-width: 500px !important;
    width: auto !important;
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999 !important;
    display: none !important;
}

.choices.is-open .choices__list--dropdown {
    display: block !important;
}

.choices__list--dropdown .choices__item {
    padding: 12px 16px;
    color: #333;
    font-size: 1rem;
    border: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-wrap: break-word;
}

.choices__list--dropdown .choices__item--selectable {
    padding: 12px 16px;
    white-space: nowrap;
}

.choices__list--dropdown .choices__item--selectable:hover,
.choices__list--dropdown .choices__item--highlighted {
    background-color: #ff6600;
    color: #ffffff;
}

.choices__item--selected {
    background-color: transparent;
    color: #333;
    border: none;
    padding: 0;
    white-space: nowrap;
}

.choices__placeholder {
    color: #999;
    opacity: 1;
}

.choices[data-type*="select-one"] .choices__single {
    padding: 12px 16px;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    height: auto;
}

.choices[data-type*="select-one"] .choices__single::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    border: none;
    right: 0;
}

/* Focus states */
.choices.is-open .choices__inner,
.choices:focus-within .choices__inner {
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

/* Hero Form - Choices */
.hero-quick-form .choices__inner {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgb(82, 82, 82);
    padding: 0.75rem 1rem;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.hero-quick-form .choices__input {
    color: #000000;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    height: auto;
}

.hero-quick-form .choices__list--dropdown {
    border: 1px solid rgba(255, 102, 0, 0.3);
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.hero-quick-form .choices__list--dropdown .choices__item--selectable {
    padding: 10px 16px;
    font-size: 0.95rem;
}

.hero-quick-form .choices__list--dropdown .choices__item--highlighted {
    background-color: #ff6600;
    color: #ffffff;
}

/* Ocultar input de busca por padrão  */
.choices__input {
    display: none !important;
}

/* Mostrar input quando dropdown está aberto */
.choices.is-open .choices__input {
    display: block !important;
}

/* ========================================
   BLOG POST - SIDEBAR
   ======================================== */
.author-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.author-avatar i {
    font-size: 2rem;
    color: white;
}

.author-avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.card-cta-gradient {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

.card-cta-gradient .card-body {
    color: white;
}

.card-cta-gradient .card-title,
.card-cta-gradient p {
    color: white;
}

/* ========================================
   PAGINAÇÃO
   ======================================== */
.pagination {
    gap: 0.5rem;
}

.page-link {
    color: #ff6600;
    background-color: #ffffff;
    border: 1px solid #ff6600;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: #ffffff;
    background-color: #ff6600;
    border-color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 102, 0, 0.3);
}

.page-link:focus {
    color: #ff6600;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25);
}

.page-item.active .page-link {
    color: #ffffff;
    background-color: #ff6600;
    border-color: #ff6600;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.page-item.disabled .page-link {
    color: #999999;
    background-color: #f8f9fa;
    border-color: #dddddd;
    cursor: not-allowed;
}

.page-item.disabled .page-link:hover {
    color: #999999;
    background-color: #f8f9fa;
    border-color: #dddddd;
    transform: none;
    box-shadow: none;
}

/* Responsividade da paginação */
@media (max-width: 576px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .page-link {
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
    }
}
