/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --secondary-color: #DC2626;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    padding: 8px 0;
    text-align: center;
    width: 100%;
}

.promo-banner {
    color: var(--white);
    font-size: 14px;
}

.promo-banner strong {
    font-weight: 700;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.navbar-brand .logo img {
    height: 40px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 25px;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown .arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown .arrow svg {
    width: 16px;
    height: 16px;
    color: currentColor;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 20px;
    min-width: 300px;
    display: none;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.states-grid a {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
}

.states-grid a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.navbar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Alert Banner */
.alert-banner {
    background: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 15px 0;
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.alert-icon {
    font-size: 24px;
}

.alert-close {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: #f5f5f5;
    padding: 60px 0;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.hero-content-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

@media (min-width: 992px) {
    .hero-content-row {
        flex-direction: row;
        align-items: flex-start;
    }
}

.box-left {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #4a4a4a;
    line-height: 1.2;
    text-align: left;
}

.box-checks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.checks {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.check-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-right: 12px;
    flex-shrink: 0;
}

.dok-icon-check {
    color: #4a4a4a;
    width: 20px;
    height: 20px;
    display: block;
}

.checks {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.checks:last-child {
    margin-bottom: 0;
}

.checks p {
    margin: 0;
    font-size: 16px;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.5;
}

.box-government {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.box-government picture {
    flex-shrink: 0;
}

.box-government picture img {
    width: 80px;
    height: 40px;
    object-fit: contain;
}

.box-government img:not(picture img) {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.box-government p {
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.box-government p strong {
    font-weight: 700;
}

.box-selos {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.box-selos picture {
    flex-shrink: 0;
}

.box-selos picture img {
    height: auto;
    object-fit: contain;
}

.box-selos-ra {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.box-selos-ra picture {
    flex-shrink: 0;
    display: inline-block;
}

.box-selos-ra picture img {
    height: auto;
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .box-selos-ra {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .box-selos-ra picture img {
        max-height: 40px;
    }
}

/* Formulário de Consulta */
.formulario-fallback {
    order: 3;
    width: 100%;
    max-width: 450px;
    flex-shrink: 0;
}

.order-lg-2 {
    order: 2;
}

@media (min-width: 992px) {
    .formulario-fallback {
        order: 2 !important;
    }
    
    .order-lg-2 {
        order: 2 !important;
    }
}

.form-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

.form-container__title {
    margin-bottom: 25px;
}

.form-container__title h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.form-container__body {
    margin-bottom: 20px;
}

.form-ds-input {
    margin-bottom: 20px;
}

.form-ds-input__form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-ds-input__label-bold {
    font-weight: 700;
}

.form-ds-input__container {
    position: relative;
}

.form-ds-input__input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-ds-input__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.ds-dropdown {
    position: relative;
}

.ds-dropdown-button {
    cursor: pointer;
}

.ds-dropdown-button__button {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.ds-dropdown-button__button:hover {
    border-color: var(--primary-color);
}

.ds-dropdown-button__icon_right {
    color: var(--text-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ds-custom-select {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    margin-top: 5px;
}

.ds-custom-select .selected {
    position: relative;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
}

.ds-custom-select__icon_left {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    z-index: 3;
    pointer-events: none;
}

.ds-custom-select__input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.ds-custom-select__input:focus {
    outline: none;
}

.ds-custom-select .items {
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.ds-custom-select .option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.ds-custom-select .option:hover {
    background: var(--bg-light);
}

.form-container__action {
    margin-bottom: 15px;
}

.btn--rounded {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    height: 60px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn--rounded:hover {
    background-color: var(--primary-dark);
}

.form-container__lgpd-alert {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
}

.form-container__lgpd-alert a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-container__lgpd-alert a:hover {
    text-decoration: underline;
}

.form-container__social {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.form-container__avatars {
    width: 80px;
    height: auto;
}

.form-container__quantidade_pessoas {
    font-size: 14px;
    color: var(--text-light);
}

.form-container__quantidade_pessoas strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Classes de breakpoint para texto responsivo */
.d-block.d-lg-none {
    display: block;
}

.d-none.d-lg-block {
    display: none;
}

.d-none.d-md-block {
    display: none;
}

@media (min-width: 768px) {
    .d-none.d-md-block {
        display: block;
    }
}

@media (min-width: 992px) {
    .d-block.d-lg-none {
        display: none;
    }
    
    .d-none.d-lg-block {
        display: block;
    }
    
    .order-lg-2 {
        order: 2 !important;
    }
    
    .hero-wrapper {
        flex-direction: row;
    }
    
    .hero-content-row {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .formulario-fallback.order-lg-2 {
        order: 2 !important;
    }
}

.badge img {
    height: 40px;
}

.badge p {
    font-size: 14px;
    margin: 0;
}

.badge span {
    font-size: 14px;
    font-weight: 600;
}

/* Main CTA Section */
.main-cta {
    background: var(--white);
    padding: 80px 0;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.cta-title strong {
    color: var(--primary-color);
}

.cta-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

.promo-badge-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    min-width: 300px;
}

.promo-percent {
    font-size: 72px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.promo-badge-large p {
    font-size: 18px;
    margin-top: 15px;
}

.promo-coupon {
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
}

/* Carrossel Section */
.carrossel-section {
    background: var(--bg-light);
    padding: 60px 0;
    position: relative;
}

.container-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .container-header {
        flex-direction: row;
        align-items: center;
    }
}

.container-header .title {
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 0;
}

.logo-google {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 992px) {
    .logo-google {
        flex-direction: row;
        gap: 10px;
    }
}

.logo-google picture {
    flex-shrink: 0;
}

.logo-google picture img {
    height: auto;
    object-fit: contain;
}

.logo-google .estrelas {
    width: 120px;
    height: 24px;
}

.logo-google .info {
    margin: 0;
    font-size: 16px;
    color: var(--text-dark);
}

.logo-google .info a {
    color: #4285F4;
    text-decoration: none;
}

.logo-google .info a:hover {
    text-decoration: underline;
}

.container-carrossel {
    position: relative;
    padding: 20px 0 40px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.carousel-inner {
    display: flex;
    overflow: hidden;
    max-width: 100%;
}

.carousel-inner .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.carousel-item {
    display: none;
    width: 100%;
}

.carousel-item.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    padding: 0;
}

.carousel-item.active .carrossel-item {
    display: contents;
}

.depoimento-caixa {
    background: var(--white);
    border-radius: 0;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.carousel-item.active .depoimento-caixa:first-child {
    border-radius: 12px 0 0 12px;
}

.carousel-item.active .depoimento-caixa:last-child {
    border-radius: 0 12px 12px 0;
}

.depoimento-titulo {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.depoimento-caixa picture img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.depoimento-data picture img {
    width: 108px;
    height: 20px;
    object-fit: contain;
}

.depoimento-data {
    padding-top: 12px !important;
}

.depoimento-data p {
    font-size: 12px;
    color: var(--text-light);
}

.depoimento-paragrafo {
    margin-top: 12px !important;
}

.depoimento-paragrafo p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.depoimento-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 8px;
}

.depoimento-link p {
    margin: 0;
    font-size: 13px;
}

.depoimento-link:hover {
    text-decoration: underline;
}


.carousel-indicators-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    gap: 8px;
}

.carousel-indicators-desktop .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicators-desktop .indicator.active {
    background: var(--primary-color);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 20px 0;
    gap: 8px;
}

.carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicators li.active {
    background: var(--primary-color);
}

.container-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-dark);
}

.carousel-control-prev {
    left: -24px;
}

.carousel-control-next {
    right: -24px;
}

@media (min-width: 1200px) {
    .carousel-inner .container {
        padding: 0;
    }
}

@media (min-width: 1400px) {
    .carousel-inner .container {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .carousel-item.active {
        display: block;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-google {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .container-carrossel {
        max-width: 100%;
        padding: 20px 0 60px;
    }
    
    .carousel-inner .container {
        padding: 0;
    }
}

.carousel-control-prev svg,
.carousel-control-next svg {
    width: 12px;
    height: 20px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-start {
    justify-content: flex-start;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 12px;
}

.ml-2 {
    margin-left: 8px;
}

.ml-3 {
    margin-left: 12px;
}

.mt-3 {
    margin-top: 12px;
}

.pt-3 {
    padding-top: 12px;
}

.p-4 {
    padding: 16px;
}

.mr-2 {
    margin-right: 8px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block;
    }
    
    .d-lg-none {
        display: none;
    }
    
    .container-header {
        flex-direction: row;
    }
    
    .logo-google {
        flex-direction: row;
    }
    
    .container-header .title {
        margin-bottom: 0;
    }
}

/* FAQ Section */
.faq {
    background: var(--white);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--text-dark);
}

.footer-hours {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.footer-about h4,
.footer-cta h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-about p,
.footer-cta p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icons img {
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-icons img:hover {
    opacity: 1;
}

.footer-links {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.footer-links-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.footer-links-column ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.footer-links-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-column ul li a:hover {
    color: var(--text-dark);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    flex: 1;
    min-width: 300px;
}

.footer-info p {
    margin-bottom: 5px;
}

.footer-social-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    flex: 0 0 auto;
}

.footer-social-text {
    color: var(--text-light);
    margin: 0;
    margin-right: 1rem;
    font-size: 14px;
    white-space: nowrap;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    margin-right: 1rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-social-link:last-child {
    margin-right: 0;
}

.footer-social-link img {
    opacity: 0.8;
    transition: opacity 0.3s;
    filter: brightness(0);
}

.footer-social-link:hover img {
    opacity: 1;
}

@media (max-width: 991px) {
    .footer-copyright {
        flex-direction: column;
    }
    
    .footer-social-wrapper {
        width: 100%;
        margin-top: 1.5rem;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-social-text {
        margin-right: 1rem;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .footer-social-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-social-text {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .footer-social-link {
        margin-right: 0.75rem;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header h3 {
    font-size: 24px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-section {
    margin-bottom: 30px;
}

.mobile-menu-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mobile-menu-section ul {
    list-style: none;
}

.mobile-menu-section ul li {
    margin-bottom: 12px;
}

.mobile-menu-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content-row {
        flex-direction: column;
    }
    
    .formulario-fallback {
        order: 3;
        max-width: 100%;
    }
    
    .order-3 {
        order: 3;
    }
    
    .box-left {
        order: 1;
    }
    
    .order-1 {
        order: 1;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .box-selos {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
    }
    
    .box-selos picture {
        flex: 0 0 auto;
    }
    
    .box-selos picture img {
        max-width: 100%;
        height: auto;
        max-height: 30px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-promo {
        flex-direction: column;
    }
    
    .promo-badge-large {
        min-width: auto;
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-bottom {
        grid-template-columns: 1fr;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .promo-percent {
        font-size: 48px;
    }
}

/* Confira nossas vantagens Section */
.section-confira-vantagens {
    padding: 80px 0;
    background: var(--white);
}

.section-confira-vantagens .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-confira-vantagens h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
    text-align: center;
}

.section-confira-vantagens .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.section-confira-vantagens .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.service-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    width: 100%;
}

.service-item-space-web {
    margin-bottom: 40px;
}

.service-item-space-mob {
    margin-bottom: 30px;
}

.service-item > .col {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.service-item .row {
    width: 100%;
    margin: 0;
}

.circle-service {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-service svg {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 991px) {
    .section-confira-vantagens {
        padding: 60px 0;
    }
    
    .section-confira-vantagens h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .section-confira-vantagens .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .section-confira-vantagens .row {
        flex-direction: column;
        align-items: center;
    }
    
    .service-item-space-web {
        margin-bottom: 30px;
    }
    
    .service-item h3 {
        font-size: 18px;
    }
    
    .circle-service {
        width: 50px;
        height: 50px;
    }
    
    .circle-service svg {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .section-confira-vantagens {
        padding: 40px 0;
    }
    
    .section-confira-vantagens h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .section-confira-vantagens .row {
        margin: 0;
    }
    
    .section-confira-vantagens .col-lg-6 {
        padding: 0;
    }
    
    .service-item {
        margin-bottom: 25px;
    }
    
    .service-item h3 {
        font-size: 16px;
    }
    
    .circle-service {
        width: 45px;
        height: 45px;
    }
}

/* Modal de Carregamento */
.loading-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.loading-modal__content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: 60px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.loading-modal__illustration {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-modal__car-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.loading-modal__message {
    font-size: 24px;
    font-weight: 700;
    color: #DC143C;
    margin: 0;
    text-transform: uppercase;
}

/* Formulário de RENAVAM */
.form-container__chip-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-container__back-input {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    transition: background 0.3s;
}

.form-container__back-input:hover {
    background: var(--border-color);
}

.dok-icon-arrow {
    font-size: 18px;
    color: var(--text-dark);
}

.form-container__chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-ds-input__icon-help {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-ds-input__icon-help .material-symbols-rounded {
    font-size: 20px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
    .loading-modal__content {
        padding: 40px 20px;
    }
    
    .loading-modal__message {
        font-size: 18px;
    }
    
    .loading-modal__illustration {
        height: 150px;
    }
    
    .loading-modal__car-image {
        max-width: 300px;
    }
}

/* Estilos para Tabela de Vencimentos */
.listagem-padrao {
    background: var(--white);
    border-radius: 6px;
    padding: 8px;
}

.header-tabela {
    margin-bottom: 8px;
}

.texto-titulo-estados {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px !important;
}

.nav-pills {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.nav-pills .nav-item {
    flex: 1;
    min-width: 45px;
}

.nav-pills .nav-link {
    display: block;
    padding: 4px 8px;
    text-align: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-pills .nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.nav-pills .nav-link.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.botao-mais-estados {
    margin-top: 6px;
}

.var-buscar-mais-estados {
    width: 100%;
    padding: 6px 10px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.var-buscar-mais-estados:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.var-buscar-mais-estados svg {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

.tab {
    cursor: pointer;
    transition: all 0.2s ease;
}

.tabela-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.2s ease;
    padding: 5px 8px !important;
    font-size: 11px;
}

.tab.selected .tabela-tab {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.tab:not(.selected) .tabela-tab:hover {
    background: var(--white);
    border-color: var(--primary-color);
}

.tabelalicenciamento-icone {
    display: inline-flex;
    align-items: center;
    color: currentColor;
    width: 14px;
    height: 14px;
}

.tabelalicenciamento-icone svg {
    width: 14px;
    height: 14px;
}

.tab.selected .tabelalicenciamento-icone {
    color: var(--white);
}

.tab-content {
    margin-top: 8px;
}

.tabelaLicenciamento--tabela {
    background: var(--bg-light);
    border-radius: 4px;
    padding: 6px;
}

.tabelaLicenciamento--tabela--titulo {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 3px;
    padding: 4px 8px;
    margin-bottom: 4px !important;
    font-weight: 700;
    font-size: 11px;
}

.tabelaLicenciamento--tabela .row {
    padding: 4px 8px;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.tabelaLicenciamento--tabela .row:last-child {
    border-bottom: none;
}

.tabelaLicenciamento--tabela .row:hover {
    background: rgba(220, 38, 38, 0.05);
}

.tabelaLicenciamento--tabela .row.text-danger {
    background: rgba(220, 53, 69, 0.1);
    font-weight: 600;
    color: #dc3545;
}

.tabelaLicenciamento--tabela .row.text-danger:hover {
    background: rgba(220, 53, 69, 0.15);
}

.tabelaLicenciamento--tabela .col-6 {
    font-size: 11px;
    color: var(--text-dark);
    padding: 3px 6px;
}

.tabelaLicenciamento--tabela .col-6:first-child {
    font-weight: 600;
}

/* Dropdown Menu melhorado */
.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 8px !important;
}

.dropdown-menu[style*="width"] {
    max-width: 700px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        max-width: 90vw !important;
        width: 90vw !important;
        max-height: 85vh;
        overflow-y: auto;
        padding: 10px !important;
    }
    
    .nav-pills {
        gap: 4px;
    }
    
    .nav-pills .nav-link {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .tabela-tab {
        padding: 6px 8px !important;
        font-size: 11px;
    }
    
    .tabelaLicenciamento--tabela {
        padding: 6px;
    }
    
    .tabelaLicenciamento--tabela .col-6 {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .texto-titulo-estados {
        font-size: 13px;
    }
}

/* Estilos para Seção de Resultados de Débitos */
.debitos-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.debitos-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.debitos-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.debito-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.debito-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.debito-info {
    flex: 1;
}

.debito-descricao {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.debito-vencimento {
    font-size: 0.875rem;
    color: var(--text-light);
}

.debito-valor {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    margin-left: 1rem;
}

.resultados-total {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.total-box {
    text-align: center;
    color: var(--white);
}

.total-box h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.total-valor {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.sem-debitos {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sem-debitos-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
}

.sem-debitos h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.sem-debitos p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsivo para resultados */
@media (max-width: 768px) {
    .debito-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .debito-valor {
        margin-left: 0;
        width: 100%;
        text-align: right;
    }
    
    .total-valor {
        font-size: 1.5rem;
    }
    
    .sem-debitos {
        padding: 2rem 1rem;
    }
    
    .sem-debitos-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Estilos para Informações do Veículo */
.veiculo-info {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.veiculo-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.veiculo-detalhes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.veiculo-item {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 150px;
    max-width: 250px;
}

.veiculo-item strong {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.veiculo-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.whatsapp-container {
    text-align: center;
    padding: 2rem;
}

.whatsapp-icon {
    margin-bottom: 1.5rem;
}

.whatsapp-icon svg {
    margin-bottom: 1rem;
}

.whatsapp-container h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.5rem;
}

.whatsapp-container p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

/* Responsivo para informações do veículo */
@media (max-width: 768px) {
    .veiculo-detalhes {
        flex-direction: column;
    }
    
    .veiculo-item {
        max-width: 100%;
    }
    
    .veiculo-info {
        padding: 1rem;
    }
    
    .veiculo-info h4 {
        font-size: 1.125rem;
    }
    
    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
