/* Estilos da barra de contato */
.contact-bar {
    background-color: #004B87;
    font-size: 14px;
    padding: 8px 0;
}

.contact-info {
    font-weight: 500;
}

.portal-links {
    display: flex;
    align-items: center;
}

.portal-links a {
    transition: opacity 0.3s ease;
}

.portal-links a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos do header principal */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    font-size: 17px;;
}

.navbar-nav .nav-link:hover {
    color: #004B87;
}

/* Estilos do Submenu */
.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    min-width: 200px;
}

.navbar-nav .dropdown-menu.show {
    display: block;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--secondary-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: #fd9000;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-color);
}

.navbar-nav .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Responsividade do Menu */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding: 0 0 0 1rem;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.5rem 1rem;
    }
}

/* Botões do header */
.btn-outline-primary {
    border-color: #004B87;
    color: #004B87;
}

.btn-outline-primary:hover {
    background-color: #004B87;
    color: #fff;
}

.btn-success {
    background-color: #8CC63F;
    border-color: #8CC63F;
}

.btn-success:hover {
    background-color: #7ab535;
    border-color: #7ab535;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .portal-links {
        display: none;
    }
    
    .contact-info {
        width: 100%;
        text-align: center;
    }
}

/* Estilos do Slider */
/* ======= SLIDER (Bootstrap 5.3.3) - Ajuste de Proporção ======= */
.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  max-height: 600px; /* ajuste conforme seu layout */
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain; /* mostra a imagem completa, sem cortes */
  object-position: center center;
  background-color: #000; /* evita espaço branco se a imagem for menor */
  display: block;
}

/* Responsividade: mantém a proporção da imagem em telas menores */
@media (max-width: 768px) {
  .carousel-item img {
    max-height: 380px;
  }
}


/* END Estilos do Slider */

/* Formulário Sobreposto */
.form-overlay {
    position: absolute;
    top: 50%;
    right: 80px; /* Aumentado para 80px para não sobrepor a seta */
    transform: translateY(-50%);
    z-index: 10;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.85); /* Aumentada a transparência */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.contact-form .form-control {
    height: 50px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.contact-form .form-control::placeholder {
    color: #666;
}

.contact-form .btn-danger {
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    background-color: #e31e24;
    border: none;
    text-transform: uppercase;
}

.contact-form .btn-danger:hover {
    background-color: #c41a1f;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .carousel-item {
        height: 555px;
    }

    .form-overlay {
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 555px;
    }

    .form-container {
        padding: 20px;
    }

    .form-container h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-form .form-control {
        height: 45px;
        font-size: 14px;
    }

    .contact-form .btn-danger {
        height: 45px;
        font-size: 16px;
    }
}

/* Seção Por Que Contratar */
.why-hire-section {
    background-color: #fff;
}

.why-hire-section h2 {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
}

.main-benefits h3 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.main-benefits .highlight {
    color: #fd9000;
}

.main-benefits .dark-text {
    color: #1B3160;
}

.main-benefits p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Cards de Benefícios */
.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 2.5rem;
    color: #fd9000;
    margin-bottom: 15px;
}

.benefit-card h4 {
    color: #1B3160;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-card h5 {
    color: #1B3160;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade da seção */
@media (max-width: 991.98px) {
    .main-benefits {
        text-align: center;
        margin-bottom: 3rem;
    }

    .main-benefits h3 {
        font-size: 2.3rem;
    }
}

@media (max-width: 767.98px) {
    .why-hire-section h2 {
        font-size: 2rem;
    }

    .main-benefits h3 {
        font-size: 2rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .benefit-card h4 {
        font-size: 1.8rem;
    }
}

/* Seção Cuidamos de Tudo */
.care-section {
    background-color: #fd9000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.care-section h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.care-section h2 span {
    display: block;
}

.mascot-image {
    max-width: 100%;
    height: auto;
    margin-left: -50px;
    transform: scale(1.2);
}

.vehicles-group {
    margin-top: 20px;
    margin-bottom: 30px;
}

.vehicles-image {
    max-width: 100%;
    height: auto;
}

.care-section .btn-success {
    background-color: #27AE60;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.care-section .btn-success:hover {
    background-color: #219653;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade da seção Cuidamos de Tudo */
@media (max-width: 991.98px) {
    .care-section {
        padding: 40px 0;
    }

    .care-section h2 {
        font-size: 2.8rem;
        text-align: center;
    }

    .mascot-image {
        margin-left: 0;
        transform: scale(1);
        margin-bottom: 30px;
    }

    .care-content {
        text-align: center;
    }

    .vehicles-group {
        margin: 20px auto;
    }
}

@media (max-width: 767.98px) {
    .care-section h2 {
        font-size: 2.2rem;
    }

    .care-section .btn-success {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Seção de Benefícios */
.benefits-highlights {
    background-color: #fd9000;
    padding: 30px 0;
}

.benefit-highlight h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Seção de Preço */
.price-section {
    background-color: #1B3160;
    padding: 40px 0;
}

.price-section h2 {
    color: #fd9000;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.btn-quote {
    background-color: #fd9000;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #e64400;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsividade para as novas seções */
@media (max-width: 991.98px) {
    .benefit-highlight h3 {
        font-size: 1.5rem;
    }

    .price-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .benefit-highlight {
        margin-bottom: 20px;
    }

    .benefit-highlight h3 {
        font-size: 1.3rem;
    }

    .price-section h2 {
        font-size: 2rem;
    }

    .btn-quote {
        font-size: 1rem;
        padding: 10px 30px;
    }
}

/* Seção de Proteção */
.protection-section {
    background-color: #fff;
    position: relative;
}

.protection-section .section-title {
    color: #1B3160;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.protection-section .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background-color: #fd9000;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* Cards de Proteção */
.protection-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.protection-card .card-icon {
    background-color: #fd9000;
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.protection-card .card-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.protection-card .card-content {
    flex: 1;
}

.protection-card .card-content h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.protection-card .card-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .protection-section .section-title {
        font-size: 2.3rem;
    }

    .protection-card {
        padding: 20px;
        gap: 20px;
    }

    .protection-card .card-icon {
        width: 70px;
        height: 70px;
    }

    .protection-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .protection-section .section-title {
        font-size: 2rem;
    }

    .protection-section .section-subtitle {
        font-size: 1rem;
    }

    .protection-card {
        padding: 15px;
        gap: 15px;
    }

    .protection-card .card-icon {
        width: 60px;
        height: 60px;
        padding: 12px;
    }

    .protection-card h3 {
        font-size: 1.2rem;
    }

    .protection-card p {
        font-size: 0.9rem;
    }

    .protection-card {
        flex-direction: column;
        text-align: center;
    }

    .protection-card .card-icon {
        margin: 0 auto 15px;
    }
}

/* Seção FAQ */
.faq-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section .section-title {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-section .section-subtitle {
    color: #fd9000;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Estilo do Accordion */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button {
    background-color: #fff;
    color: #1B3160;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #fd9000;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF4B00'%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;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Estilo do CTA */
.faq-cta {
    background-color: #1B3160;
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .faq-section .section-title {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1rem;
    }

    .faq-cta {
        margin-top: 50px;
    }
}

@media (max-width: 767.98px) {
    .faq-section .section-title {
        font-size: 1.8rem;
    }

    .faq-section .section-subtitle {
        font-size: 1rem;
    }

    .accordion-button {
        padding: 15px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta h3 {
        font-size: 1.6rem;
    }

    .btn-whatsapp {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Seção de Benefícios 24h */
.benefits-24h-section {
    background-color: #f8f9fa;
    position: relative;
}

.benefits-24h-section .section-title {
    color: #1B3160;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.benefits-24h-section .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.benefit-24h-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.benefit-24h-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #fd9000;
    transition: all 0.3s ease;
}

.benefit-24h-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-24h-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.benefit-24h-card .card-icon {
    background-color: #fd9000;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.benefit-24h-card:hover .card-icon {
    transform: scale(1.1);
}

.benefit-24h-card .card-content {
    flex: 1;
}

.benefit-24h-card h3 {
    color: #1B3160;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-24h-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .benefits-24h-section .section-title {
        font-size: 2.3rem;
    }

    .benefit-24h-card {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .benefits-24h-section .section-title {
        font-size: 2rem;
    }

    .benefits-24h-section .section-subtitle {
        font-size: 1rem;
    }

    .benefit-24h-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
    }

    .benefit-24h-card .card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .benefit-24h-card h3 {
        font-size: 1.2rem;
    }

    .benefit-24h-card p {
        font-size: 0.9rem;
    }
}

/* Seção Proteja seu Veículo */
.protect-vehicle-section {
    background-color: #fd9000;
    color: #fff;
}

.protect-vehicle-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.protect-form {
    max-width: 500px;
    margin: 0 auto;
}

.protect-form label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.protect-form .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem;
}

.protect-form .form-control {
    background-color: #fff;
    border: none;
    height: 50px;
    font-size: 1rem;
    padding: 12px 15px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.protect-form .form-control::placeholder {
    color: #666;
}

.protect-form .btn-primary {
    background-color: #1B3160;
    border: none;
    height: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.protect-form .btn-primary:hover {
    background-color: #152548;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 767.98px) {
    .protect-vehicle-section h2 {
        font-size: 2rem;
    }

    .protect-form .form-control {
        height: 45px;
        font-size: 0.9rem;
    }

    .protect-form .btn-primary {
        height: 45px;
        font-size: 1rem;
    }
}

/* Footer */
.main-footer {
    background-color: #333333;
    color: #fff;
    padding: 60px 0 0;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.company-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links ul li a i {
    color: #fd9000;
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-links ul li a:hover {
    color: #fd9000;
    padding-left: 5px;
}

.footer-contact .contact-item {
    margin-bottom: 30px;
}

.footer-contact .contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.sub-footer {
    background-color: #2a2a2a;
    padding: 20px 0;
    margin-top: 50px;
}

.sub-footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sub-footer .social-links {
    display: flex;
    gap: 15px;
}

.sub-footer .social-link {
    color: #fd9000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sub-footer .social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Responsividade do Footer */
@media (max-width: 991.98px) {
    .main-footer {
        padding: 40px 0 0;
    }

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

    .footer-links {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-links ul li a {
        justify-content: center;
    }

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

@media (max-width: 767.98px) {
    .sub-footer {
        text-align: center;
    }

    .sub-footer .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .sub-footer .social-links {
        justify-content: center;
    }
}

/* Estilos da página Associação */
.hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.png');
    opacity: 0.1;
}

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

.timeline-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.timeline-item {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #fd9000;
}

.timeline-year {
    color: #fd9000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.values-section {
    padding: 80px 0;
    background-color: #fff;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fd9000;
    transition: height 0.3s ease;
}

.value-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #fd9000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.stats-section {
    padding: 60px 0;
    background-color: #1B3160;
    color: white;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fd9000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsividade da página Associação */
@media (max-width: 767.98px) {
    .timeline-year {
        font-size: 2rem;
    }

    .value-card {
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Seção Sobre Nós */
.about-section {
    background-color: #fff;
    position: relative;
}

.about-section .section-title {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.about-content {
    color: #666;
}

.about-content .lead {
    color: #1B3160;
    font-size: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    background-color: #fd9000;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    color: #1B3160;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-section .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-content {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .about-section .section-title {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }
}

/* Seção Benefícios Principais */
.benefits-main-section {
    background-color: #f8f9fa;
    position: relative;
}

.benefits-main-section .section-title {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-main-section .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.benefit-card-modern {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fd9000;
    transition: height 0.3s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.benefit-card-modern:hover::before {
    height: 100%;
    opacity: 0.05;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #fd9000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card-modern h3 {
    color: #1B3160;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-card-modern p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefit-list li i {
    color: #fd9000;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Seção Como Funciona */
.how-it-works-section {
    background-color: #fff;
    position: relative;
}

.how-it-works-section .section-title {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.how-it-works-section .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #fd9000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fd9000;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: #fd9000;
    color: white;
    transform: scale(1.1);
}

.step-card h3 {
    color: #1B3160;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Seção CTA Benefícios */
.benefits-cta-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.benefits-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-cta-section .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.benefits-cta-section .btn-primary {
    background-color: white;
    color: #fd9000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefits-cta-section .btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .benefits-main-section .section-title,
    .how-it-works-section .section-title {
        font-size: 2rem;
    }

    .benefit-card-modern {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-main-section .section-title,
    .how-it-works-section .section-title {
        font-size: 1.8rem;
    }

    .benefits-main-section .section-subtitle,
    .how-it-works-section .section-subtitle {
        font-size: 1rem;
    }

    .benefit-card-modern {
        padding: 25px 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .benefit-card-modern h3 {
        font-size: 1.3rem;
    }

    .benefits-cta-section {
        padding: 60px 0;
    }

    .benefits-cta-section h2 {
        font-size: 2rem;
    }

    .benefits-cta-section .lead {
        font-size: 1.1rem;
    }
}

/* Seção Hero do Blog */
.blog-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.blog-hero-section .hero-content {
    position: relative;
    z-index: 1;
}

.search-box {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.search-box .form-control {
    height: 50px;
    border-radius: 8px;
    border: none;
    padding: 0 20px;
    font-size: 1rem;
}

.search-box .btn {
    height: 50px;
    padding: 0 25px;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Post em Destaque */
.featured-post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.featured-post-card:hover {
    transform: translateY(-10px);
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fd9000;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-post-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #fd9000;
}

.featured-post-content h2 {
    color: #1B3160;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-post-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Cards de Blog */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 250px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    color: #1B3160;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #fd9000;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: #fd9000;
}

/* Cards de Categoria */
.category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: #fd9000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    color: #1B3160;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Seção Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 60px 0;
    color: white;
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.newsletter-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.newsletter-form .input-group {
    height: 50px;
}

.newsletter-form .form-control {
    height: 100%;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 0 20px;
    font-size: 1rem;
}

.newsletter-form .btn {
    height: 100%;
    padding: 0 30px;
    border-radius: 0 8px 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .featured-post-image {
        min-height: 300px;
    }

    .featured-post-content {
        padding: 30px;
    }

    .featured-post-content h2 {
        font-size: 1.8rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .category-card {
        padding: 30px 20px;
    }
}

@media (max-width: 767.98px) {
    .blog-hero-section {
        padding: 60px 0;
    }

    .search-box {
        flex-direction: column;
    }

    .search-box .btn {
        width: 100%;
    }

    .featured-post-card {
        flex-direction: column;
    }

    .featured-post-image {
        min-height: 250px;
    }

    .featured-post-content {
        padding: 25px;
    }

    .featured-post-content h2 {
        font-size: 1.6rem;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-content h3 {
        font-size: 1.2rem;
    }

    .newsletter-card {
        padding: 30px 20px;
    }
}

/* Estilos da Página Interna do Blog */
.post-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    min-height: 500px;
    padding: 120px 0 180px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.post-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.post-hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    transform: skewY(-3deg);
    z-index: 2;
}

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

.post-category {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.post-category i {
    margin-right: 8px;
    color: #fd9000;
}

.post-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1rem;
    opacity: 0.9;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: #fd9000;
    font-size: 1.2rem;
}

.post-image-section {
    margin-top: -100px;
    position: relative;
    z-index: 4;
    padding: 0 30px;
}

.post-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    aspect-ratio: 16/9;
}

.post-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-section {
    padding: 80px 0;
    background-color: #fff;
}

.post-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.post-content .lead {
    font-size: 1.5rem;
    color: #1B3160;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post-content h2 {
    color: #1B3160;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 50px 0 25px;
}

.post-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.post-tip {
    background: linear-gradient(135deg, rgba(255, 75, 0, 0.1) 0%, rgba(255, 75, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 75, 0, 0.1);
}

.post-tip i {
    color: #fd9000;
    font-size: 2rem;
    margin-top: 5px;
}

.post-tip p {
    margin: 0;
    font-size: 1.1rem;
    color: #1B3160;
    font-weight: 500;
}

.post-tags {
    margin: 60px 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    background: #f8f9fa;
    color: #1B3160;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tag:hover {
    background: #fd9000;
    color: white;
    transform: translateY(-2px);
}

.post-share {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.post-share h4 {
    color: #1B3160;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-button:hover {
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.share-button.facebook { background: #1877F2; }
.share-button.twitter { background: #1DA1F2; }
.share-button.whatsapp { background: #25D366; }
.share-button.linkedin { background: #0077B5; }

.related-posts {
    margin: 80px 0;
}

.related-posts h3 {
    color: #1B3160;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.related-post-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.related-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.related-post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-post-content {
    padding: 25px;
}

.related-post-content h4 {
    color: #1B3160;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.read-more {
    color: #fd9000;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: #fd9000;
}

.post-newsletter {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 60px;
    border-radius: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.post-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 50px;
}

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

.newsletter-form .btn {
    height: 50px;
    padding: 0 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: #152548;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .post-hero-section {
        padding: 100px 0 160px;
    }

    .post-title {
        font-size: 2.8rem;
    }

    .post-meta {
        flex-wrap: wrap;
        gap: 20px;
    }

    .post-content .lead {
        font-size: 1.3rem;
    }

    .post-content h2 {
        font-size: 2rem;
    }

    .post-newsletter {
        padding: 40px;
    }
}

@media (max-width: 767.98px) {
    .post-hero-section {
        padding: 80px 0 140px;
        min-height: auto;
    }

    .post-title {
        font-size: 2.2rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .post-image-section {
        padding: 0 15px;
    }

    .post-content {
        font-size: 1.1rem;
    }

    .post-content .lead {
        font-size: 1.2rem;
    }

    .post-content h2 {
        font-size: 1.8rem;
    }

    .post-tip {
        padding: 20px;
    }

    .post-share {
        padding: 30px 20px;
    }

    .share-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .related-post-card img {
        height: 180px;
    }

    .post-newsletter {
        padding: 30px 20px;
    }

    .newsletter-content h3 {
        font-size: 1.8rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
        background: none;
        padding: 0;
        gap: 10px;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn {
        width: 100%;
        border-radius: 25px;
    }
}

/* Estilos da Página de Ouvidoria */
.ouvidoria-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ouvidoria-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.ouvidoria-hero-content {
    color: #fff;
    position: relative;
    z-index: 1;
}

.ouvidoria-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ouvidoria-hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ouvidoria-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.ouvidoria-stats .stat-item {
    text-align: center;
}

.ouvidoria-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fd9000;
    margin-bottom: 0.5rem;
}

.ouvidoria-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.ouvidoria-hero-image {
    position: relative;
    z-index: 1;
}

.ouvidoria-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.ouvidoria-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ouvidoria-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: #1B3160;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.ouvidoria-form .form-floating {
    margin-bottom: 1.5rem;
}

.ouvidoria-form .form-control,
.ouvidoria-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;

    height: auto;
    min-height: 60px;
}

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

.ouvidoria-form .form-floating label {
    padding: 1rem 0.75rem;
    color: #666;
}

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

.ouvidoria-form .form-check {
    margin: 1.5rem 0;
}

.ouvidoria-form .form-check-label {
    color: #666;
}

.ouvidoria-form .form-check-label a {
    color: #fd9000;
    text-decoration: none;
}

.ouvidoria-form .form-check-label a:hover {
    text-decoration: underline;
}

.ouvidoria-form .btn-primary {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ouvidoria-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 75, 0, 0.3);
}

.ouvidoria-channels {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.channel-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.channel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.channel-icon i {
    font-size: 2rem;
    color: #fff;
}

.channel-card h3 {
    font-size: 1.5rem;
    color: #1B3160;
    margin-bottom: 1rem;
}

.channel-card p {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.channel-info {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .ouvidoria-hero-section {
        padding: 60px 0;
    }

    .ouvidoria-hero-content h1 {
        font-size: 2.5rem;
    }

    .ouvidoria-stats {
        gap: 1rem;
    }

    .ouvidoria-stats .stat-number {
        font-size: 2rem;
    }

    .ouvidoria-form-wrapper {
        padding: 30px;
    }

    .form-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .ouvidoria-hero-section {
        padding: 40px 0;
    }

    .ouvidoria-hero-content h1 {
        font-size: 2rem;
    }

    .ouvidoria-hero-content .lead {
        font-size: 1.1rem;
    }

    .ouvidoria-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ouvidoria-stats .stat-number {
        font-size: 2.5rem;
    }

    .ouvidoria-form-wrapper {
        padding: 20px;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .channel-card {
        padding: 30px 20px;
    }
}

/* Estilos da Página de Contato */
.contact-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

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

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-hero-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-card i {
    font-size: 2.5rem;
    color: #fd9000;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-card p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-form .form-floating {
    margin-bottom: 1.5rem;
}

.modern-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    height: auto;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-form .form-control:focus {
    border-color: #fd9000;
    box-shadow: 0 0 0 0.2rem rgba(255, 75, 0, 0.25);
}

.modern-form .form-floating label {
    padding: 1rem 0.75rem;
    color: #666;
}

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

.modern-form .btn-primary {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modern-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 75, 0, 0.2);
}

.modern-form .btn-primary i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.modern-form .btn-primary:hover i {
    transform: translateX(5px);
}

.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .contact-hero-content h1 {
        font-size: 2.8rem;
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-section {
        padding: 60px 0;
    }

    .contact-hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-hero-content .lead {
        font-size: 1.1rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-section {
        padding: 40px 0;
    }
}

/* Estilos da Página Trabalhe Conosco */
.careers-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.careers-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

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

.careers-badge {
    display: inline-block;
    background: rgba(255, 75, 0, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 75, 0, 0.3);
}

.careers-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.careers-hero-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.careers-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.careers-stats .stat-item {
    text-align: center;
}

.careers-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fd9000;
    margin-bottom: 0.5rem;
}

.careers-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.careers-hero-image {
    position: relative;
}

.careers-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Seção Cultura */
.culture-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.culture-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fd9000;
    transition: height 0.3s ease;
}

.culture-card:hover {
    transform: translateY(-10px);
}

.culture-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.culture-card:hover .culture-icon {
    transform: scale(1.1);
}

.culture-icon i {
    font-size: 2rem;
    color: #fff;
}

.culture-card h3 {
    color: #1B3160;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.culture-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Seção Benefícios */
.benefits-section {
    background-color: #fff;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #fd9000;
}

.benefit-item span {
    color: #1B3160;
    font-weight: 500;
}

.benefits-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Seção Vagas */
.jobs-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.job-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #fd9000;
    transition: width 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px);
}

.job-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.job-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 75, 0, 0.1);
    color: #fd9000;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.job-card h3 {
    color: #1B3160;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-info {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.job-info span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-info i {
    color: #fd9000;
}

.job-card .btn-primary {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border: none;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.job-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 75, 0, 0.2);
}

.job-card .btn-primary i {
    transition: transform 0.3s ease;
}

.job-card .btn-primary:hover i {
    transform: translateX(5px);
}

/* Seção Banco de Talentos */
.talent-pool-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
}

.talent-pool-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.talent-pool-card h2 {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.talent-pool-card p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.talent-pool-form .form-control,
.talent-pool-form .form-select {
    height: 55px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.talent-pool-form .input-group {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.talent-pool-form .input-group .form-control {
    border: none;
    border-radius: 12px 0 0 12px;
}

.talent-pool-form .input-group-text {
    background: #f8f9fa;
    border: none;
    color: #666;
    font-weight: 500;
}

.talent-pool-form .btn-primary {
    height: 55px;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.talent-pool-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 75, 0, 0.2);
}

.talent-pool-form .btn-primary i {
    transition: transform 0.3s ease;
}

.talent-pool-form .btn-primary:hover i {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .careers-hero-content h1 {
        font-size: 2.8rem;
    }

    .careers-stats {
        gap: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .talent-pool-card {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .careers-hero-section {
        padding: 60px 0;
    }

    .careers-hero-content h1 {
        font-size: 2.2rem;
    }

    .careers-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .culture-card,
    .job-card {
        padding: 25px;
    }

    .talent-pool-card {
        padding: 25px;
    }

    .talent-pool-card h2 {
        font-size: 2rem;
    }
}

/* Estilos da Página de Leads */
.lead-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lead-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.lead-hero-content {
    color: #fff;
    position: relative;
    z-index: 1;
}

.lead-badge {
    display: inline-block;
    background: rgba(255, 75, 0, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 75, 0, 0.3);
}

.lead-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-hero-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: #fd9000;
    font-size: 1.5rem;
}

.lead-form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #1B3160;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.floating-label-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-label-group .form-control,
.floating-label-group .form-select {
    height: 60px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.floating-label-group .form-control:focus,
.floating-label-group .form-select:focus {
    border-color: #fd9000;
    box-shadow: 0 0 0 0.2rem rgba(255, 75, 0, 0.25);
}

.floating-label-group label {
    position: absolute;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 0.5rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-label-group .form-control:focus ~ label,
.floating-label-group .form-control:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.85rem;
    color: #fd9000;
}

.lead-capture-form .btn-primary {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border: none;
    height: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.lead-capture-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 75, 0, 0.2);
}

.lead-capture-form .btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.lead-capture-form .btn-primary:hover i {
    transform: translateX(5px);
}

.form-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.form-security i {
    color: #fd9000;
}

/* Seção de Benefícios */
.lead-benefits-section {
    padding: 100px 0;
    background: #fff;
}

.benefit-highlight-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #fd9000;
    transition: width 0.3s ease;
}

.benefit-highlight-card:hover {
    transform: translateY(-10px);
}

.benefit-highlight-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.benefit-highlight-card.featured {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    color: #fff;
}

.benefit-highlight-card.featured::before {
    display: none;
}

.benefit-highlight-card.featured h3,
.benefit-highlight-card.featured p,
.benefit-highlight-card.featured .benefit-list li {
    color: #fff;
}

.benefit-highlight-card.featured .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 75, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #fd9000;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.benefit-highlight-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-highlight-card h3 {
    color: #1B3160;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.benefit-highlight-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.benefit-list li i {
    color: #fd9000;
}

/* Social Proof Section */
.social-proof-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-rating {
    color: #fd9000;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #1B3160;
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #1B3160;
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Final Section */
.final-cta-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.final-cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-section .btn-primary {
    background: #fff;
    color: #fd9000;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.final-cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.final-cta-section .btn-primary i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.final-cta-section .btn-primary:hover i {
    transform: translateX(5px);
}

.cta-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    opacity: 0.9;
}

.cta-security i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .lead-hero-section {
        padding: 60px 0;
    }

    .lead-hero-content h1 {
        font-size: 2.8rem;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .lead-form-card {
        margin-top: 40px;
    }

    .final-cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .lead-hero-content h1 {
        font-size: 2.2rem;
    }

    .lead-hero-content .lead {
        font-size: 1.1rem;
    }

    .lead-form-card {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .floating-label-group .form-control,
    .floating-label-group .form-select,
    .lead-capture-form .btn-primary {
        height: 55px;
    }

    .benefit-highlight-card {
        padding: 30px 20px;
    }

    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .final-cta-section .btn-primary {
        width: 100%;
    }
}

.navbar-brand img {
    height: 40px;
    transition: all 0.3s ease;
}

.home .navbar-brand img {
    height: 100px; /* Tamanho maior para a página inicial */
}

/* Estilos da Página de Serviços Online */
.services-hero-section {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.services-hero-content .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.services-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    transition: width 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    color: #1B3160;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #fd9000;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .services-hero-content h1 {
        font-size: 2.8rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .services-hero-section {
        padding: 60px 0;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }

    .services-hero-content .lead {
        font-size: 1.1rem;
    }

    .services-grid-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Clube de Benefícios */
.benefits-club-hero {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.benefits-club-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.benefits-club-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
}

.club-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-club-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefits-club-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Categorias */
.categories-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.category-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #1B3160;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
}

.category-pill:hover,
.category-pill.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fd9000;
}

.category-pill.active {
    background: linear-gradient(135deg, #fd9000, #ff8500);
    color: #fff;
    box-shadow: 0 10px 25px rgba(253, 144, 0, 0.3);
}

.category-pill.active:hover {
    background: linear-gradient(135deg, #e68200, #e67300);
    color: #fff;
}

.category-pill i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.category-pill span {
    font-weight: 600;
    text-align: center;
}

/* Ofertas em Destaque */
.featured-offers-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.offer-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.offer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fd9000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.offer-content {
    padding: 25px;
}

.offer-category {
    display: inline-block;
    color: #fd9000;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.offer-content h3 {
    color: #1B3160;
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.offer-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.validity {
    color: #888;
    font-size: 0.9rem;
}

.btn-details {
    color: #fd9000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-details:hover {
    color: #1B3160;
}

.btn-details i {
    transition: transform 0.3s ease;
}

.btn-details:hover i {
    transform: translateX(5px);
}

/* Como Funciona */
.how-it-works-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step-card h3 {
    color: #1B3160;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Parceiros */
.partners-section {
    padding: 80px 0;
}

.partner-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.benefits-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    position: relative;
    color: #fff;
    text-align: center;
}

.benefits-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
}

.benefits-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.benefits-cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
}

.benefits-cta-section .btn-light {
    padding: 15px 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.benefits-cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsivo */
@media (max-width: 991.98px) {
    .benefits-club-hero {
        padding: 80px 0 60px;
    }

    .benefits-club-hero h1 {
        font-size: 2.5rem;
    }

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

    .offer-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .benefits-club-hero {
        padding: 60px 0 40px;
    }

    .benefits-club-hero h1 {
        font-size: 2rem;
    }

    .benefits-club-hero .lead {
        font-size: 1.1rem;
    }

    .category-pill {
        padding: 15px;
    }

    .category-pill i {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .offer-image {
        height: 160px;
    }

    .benefits-cta-section {
        padding: 60px 0;
    }

    .benefits-cta-section h2 {
        font-size: 2rem;
    }
}

/* Estilos da Página de Detalhes do Benefício */
.benefit-detail-hero {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefit-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.benefit-detail-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.benefit-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.benefit-detail-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-highlight .discount-badge {
    background: #FF4B00;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-meta {
    display: flex;
    gap: 2rem;
}

.benefit-pricing {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

/* Formatação de preços padrão */
.price-box {
    text-align: left;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fd9000;
    margin: 0.5rem 0;
    animation: pulse-price 2s infinite;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    font-size: 1.2rem;
}

.benefit-detail-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Seção de Informações do Benefício */
.benefit-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefit-description {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.benefit-description h2 {
    color: #1B3160;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.included-items {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.included-items h3 {
    color: #1B3160;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.included-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-items li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.included-items li i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Como Utilizar */
.how-to-use {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.how-to-use h2 {
    color: #1B3160;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.step-content h4 {
    color: #1B3160;
    margin-bottom: 0.5rem;
    text-align: left;
}

.step-content p {
    text-align: left;
}

/* Sidebar */
.benefit-sidebar {
    position: sticky;
    top: 20px;
}

.action-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
}

.qr-code-container {
    margin-bottom: 1.5rem;
}

.qr-code-container img {
    max-width: 200px;
    margin: 0 auto;
}

.action-content h3 {
    color: #1B3160;
    margin-bottom: 1rem;
}

.action-content .btn {
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    border: none;
    padding: 12px 24px;
    transition: transform 0.3s ease;
}

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

.additional-info {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.additional-info h3 {
    color: #1B3160;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-item i {
    color: #FF4B00;
    font-size: 1.2rem;
}

.location-info {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.location-info h3 {
    color: #1B3160;
    margin-bottom: 1.5rem;
}

.location-item {
    display: flex;
    gap: 1rem;
}

.location-item i {
    color: #FF4B00;
    font-size: 1.2rem;
    margin-top: 4px;
}

.location-item h4 {
    color: #1B3160;
    margin-bottom: 0.5rem;
}

.location-item .btn {
    margin-top: 1rem;
}

/* Benefícios Relacionados */
.related-benefits {
    padding: 80px 0;
}

.related-benefits .section-title {
    color: #1B3160;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.related-benefit-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-image {
    position: relative;
    height: 200px;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    padding: 20px;
}

.benefit-content .category {
    display: inline-block;
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #1B3160;
    margin-bottom: 0.5rem;
}

.benefit-content h3 {
    color: #1B3160;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #FF4B00;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.btn-details:hover {
    gap: 1rem;
    color: #1B3160;
}

@media (max-width: 991.98px) {
    .benefit-detail-content h1 {
        font-size: 2.5rem;
    }

    .benefit-detail-image {
        margin-top: 2rem;
    }

    .benefit-sidebar {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .benefit-detail-hero {
        padding: 40px 0;
    }

    .benefit-detail-content h1 {
        font-size: 2rem;
    }

    .benefit-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-description,
    .how-to-use,
    .action-card,
    .additional-info,
    .location-info {
        padding: 20px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto;
    }
}

.talent-pool-form .custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.talent-pool-form .custom-file-upload:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 150, 214, 0.15);
}

.talent-pool-form .custom-file-upload i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.talent-pool-form .custom-file-upload span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.talent-pool-form input[type="file"] {
    display: none;
}

.talent-pool-form .file-selected {
    color: #212529;
    font-weight: 500;
}

/* Seja Representante - Estilos */
.representante-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #1B3160 0%, #1E3A75 100%);
    overflow: hidden;
}

.representante-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../img/pattern-dots.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

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

.representante-badge {
    display: inline-block;
    background: rgba(253, 144, 0, 0.2);
    color: #FD9000;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.representante-hero-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.representante-hero-content .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 80%;
}

.vantagens-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vantagens-titulo {
    text-align: center;
    margin-bottom: 60px;
}

.vantagens-titulo h2 {
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vantagens-titulo p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.vantagem-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vantagem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FD9000, #FD6000);
    transition: all 0.3s ease;
    z-index: -1;
}

.vantagem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vantagem-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.vantagem-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 144, 0, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.vantagem-card:hover .vantagem-icon {
    background: rgba(253, 144, 0, 0.2);
    transform: scale(1.1);
}

.vantagem-card h3 {
    color: #1B3160;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vantagem-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.depoimentos-section {
    padding: 80px 0;
    background-color: #fff;
}

.depoimento-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.depoimento-texto {
    position: relative;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    padding-left: 28px;
}

.depoimento-texto::before {
    content: '"';
    font-size: 4rem;
    color: #FD9000;
    position: absolute;
    top: -15px;
    left: 0;
    font-family: serif;
    opacity: 0.5;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.depoimento-autor-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B3160;
}

.depoimento-autor-info span {
    font-size: 0.9rem;
    color: #666;
}

.cadastro-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #eaeaea 100%);
}

.cadastro-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cadastro-header {
    background: linear-gradient(135deg, #1B3160 0%, #1E3A75 100%);
    padding: 40px;
    position: relative;
}

.cadastro-header h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cadastro-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cadastro-form-container {
    padding: 40px;
}

.representante-form .form-floating {
    margin-bottom: 1.5rem;
}

.representante-form .form-control,
.representante-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    height: auto;
    min-height: 60px;
    padding: 1rem 0.75rem;
    font-size: 1rem;
}

.representante-form .form-control:focus,
.representante-form .form-select:focus {
    border-color: #fd9000;
    box-shadow: 0 0 0 0.2rem rgba(253, 144, 0, 0.25);
}

.representante-form .form-floating label {
    padding: 1rem 0.75rem;
    color: #666;
}

.representante-form textarea.form-control {
    min-height: 120px;
}

.representante-form .form-check {
    margin-bottom: 1.5rem;
}

.representante-form .form-check-label {
    color: #555;
    font-size: 0.95rem;
}

.representante-form .form-check-label a {
    color: #FD9000;
    text-decoration: none;
}

.representante-form .form-check-label a:hover {
    text-decoration: underline;
}

.representante-form .btn-primary {
    background: linear-gradient(135deg, #FD9000 0%, #FD6000 100%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 144, 0, 0.3);
}

.representante-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 144, 0, 0.4);
}

.form-security {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
}

.form-security i {
    color: #1B3160;
    margin-right: 10px;
    font-size: 1.2rem;
}

.passos-section {
    padding: 80px 0;
    background-color: #fff;
}

.passos-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
}

.passo-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    height: 100%;
    transition: all 0.3s ease;
}

.passo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.passo-numero {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FD9000 0%, #FD6000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(253, 144, 0, 0.3);
    z-index: 2;
}

.passo-conteudo {
    padding-top: 25px;
}

.passo-conteudo h3 {
    color: #1B3160;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.passo-conteudo p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.perguntas-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.perguntas-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1B3160;
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .representante-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .representante-hero-content .lead {
        max-width: 100%;
    }
    
    .vantagens-titulo h2,
    .passos-section .section-title,
    .perguntas-section .section-title {
        font-size: 2.2rem;
    }
    
    .cadastro-header {
        padding: 30px;
    }
    
    .cadastro-form-container {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .representante-hero-section {
        padding: 80px 0 60px;
    }
    
    .representante-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .representante-hero-content .lead {
        font-size: 1.1rem;
    }
    
    .vantagens-titulo h2,
    .passos-section .section-title,
    .perguntas-section .section-title {
        font-size: 1.8rem;
    }
    
    .vantagem-card,
    .depoimento-card,
    .passo-card {
        margin-bottom: 30px;
    }
    
    .cadastro-header h2 {
        font-size: 1.8rem;
    }
    
    .cadastro-header p {
        font-size: 1rem;
    }
    
    .representante-form .btn-primary {
        width: 100%;
    }
}

/* Animação de rotação para ícones */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos da Página 404 */
.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-404::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 49, 96, 0.05) 0%, rgba(253, 144, 0, 0.05) 100%);
    z-index: -1;
}

.error-container {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

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

.error-code {
    font-size: 8rem;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, #1B3160 0%, #fd9000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #333;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.error-image {
    max-width: 300px;
    margin: 1rem auto 2rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-home {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #1B3160;
    border: none;
    box-shadow: 0 4px 15px rgba(27, 49, 96, 0.3);
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #152548;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 49, 96, 0.4);
}

.btn-contact {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #fd9000;
    border: none;
    box-shadow: 0 4px 15px rgba(253, 144, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #e68200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 144, 0, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background-color: rgba(27, 49, 96, 0.1);
    border-radius: 50%;
    animation: float 15s infinite alternate ease-in-out;
}

.floating-element:nth-child(2n) {
    background-color: rgba(253, 144, 0, 0.1);
}

.floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.floating-element:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 30%;
    animation-delay: 8s;
}

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

.suggestions {
    margin-top: 2rem;
    text-align: center;
}

.suggestions h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.suggestion-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.suggestion-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f2f5;
    border-radius: 50px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.suggestion-link:hover {
    background-color: #e0e2e5;
    transform: translateY(-2px);
    color: #1B3160;
}

.suggestion-link i {
    margin-right: 8px;
    color: #fd9000;
}

@media (max-width: 767.98px) {
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-image {
        max-width: 200px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-home, .btn-contact {
        width: 100%;
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .suggestion-links {
        flex-direction: column;
    }
}

/* Estilos para o logo na página 404 */
.logo-frame {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: pulse 3s infinite ease-in-out;
    border: 2px solid rgba(27, 49, 96, 0.1);
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(27, 49, 96, 0.2);
    animation: spin 20s linear infinite;
}

.orbit-circle {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

.orbit-circle:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1B3160 0%, #2c4a8c 100%);
    animation-delay: 0s;
}

.orbit-circle:nth-child(2) {
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fd9000 0%, #ff8500 100%);
    animation-delay: 1s;
}

.orbit-circle:nth-child(3) {
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1B3160 0%, #2c4a8c 100%);
    animation-delay: 2s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 49, 96, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(27, 49, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 49, 96, 0);
    }
}

/* Ajuste na imagem de erro para a página 404 */
.error-image {
    margin: 2rem auto;
    max-width: 100%;
    position: relative;
}

/* Estilos adicionados para melhorar o design mobile */
@media (max-width: 767px) {
    /* Melhorar visibilidade do menu */
    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0.9);
        border: 2px solid #233a74;
    }
    
    .navbar-nav .nav-link {
        color: #233a74 !important;
        font-weight: bold;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 10px 15px;
        margin: 2px 0;
        border-radius: 4px;
    }
    
    /* Estilo para o formulário móvel */
    .mobile-quote-form {
        background-color: #f5f5f5;
        padding: 20px 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .mobile-quote-form h2 {
        color: #233a74;
        font-size: 1.5rem;
        font-weight: bold;
    }
    
    .mobile-quote-form .btn-danger {
        background-color: #d9534f;
        font-weight: bold;
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Garantir que o menu dropdown apareça em celulares */
    .navbar-collapse {
        background-color: white;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
}

/* Melhorias para o menu mobile e botão Serviços Online */
@media (max-width: 767px) {
    .navbar-toggler {
        background-color: rgba(255, 255, 255, 0.95);
        border: 2px solid #233a74;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Removendo as definições anteriores do ícone que não funcionaram */
    /* Novo estilo utilizando o ícone específico do Bootstrap */
    .navbar-toggler i.bi-list {
        line-height: 1;
        vertical-align: middle;
    }
    
    .mobile-services-btn {
        display: inline-block;
        background-color: #8CC63F;
        color: white !important;
        font-weight: bold;
        padding: 8px 12px;
        border-radius: 5px;
        margin-right: 10px;
        text-decoration: none;
        font-size: 14px;
    }
    
    .mobile-services-btn:hover {
        background-color: #7ab535;
        text-decoration: none;
        color: white !important;
    }
}

/* Efeito de pulsação para preços em destaque - ATUALIZADO */
.preco-destaque-hero,
.preco-destaque-lista {
    animation: pulse-price 2s infinite;
    display: inline-block;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

@keyframes pulse-price {
    0% {
        transform: scale(1);
        text-shadow: 2px 2px 4px rgba(253, 144, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 4px 4px 12px rgba(253, 144, 0, 0.8);
    }
    100% {
        transform: scale(1);
        text-shadow: 2px 2px 4px rgba(253, 144, 0, 0.3);
    }
}

/* Efeito adicional de brilho com nova cor */
.preco-destaque-hero::before,
.preco-destaque-lista::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 144, 0, 0.4), transparent);
    animation: shine 3s infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}