/* Reset and base styles */
:root {
    --primary-blue: #0055A4;
    --secondary-blue: #0066CC;
    --primary-red: #E30613;
    --white: #ffffff;
    --light-blue: #F5F8FF;
    --green: #38CE58;
    --text-dark: #333333;
    --light-gray: #F2F2F2;
    --medium-gray: #D9D9D9;
    --dark-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Header Styles */
.header {
    background-color: #E6F0FD;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.header .cta-primary {
    background-color: #38CE58;
    padding: 8px 16px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    color: var(--white);
}

.header .cta-primary:hover {
    background-color: #2fb34a;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle img {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #0050A3;
    padding-top: 120px;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
    overflow: visible;
    display: block;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/bg-hero.webp') no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0B4380;
    opacity: 0.7;
    z-index: 1;
}

.hero .container {
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.hero-text, .hero-image {
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: var(--white);
    max-width: 600px;
    padding-bottom: 50px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 75%;
}

.hero-text p {
    font-size: 25px;
    font-weight: 500;
    line-height: 117%;
    letter-spacing: 0%;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 32px;
    max-width: 75%;
}

.hero-text .badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px 24px;
    gap: 10px;
    width: 264px;
    height: 30px;
    background: #F44545;
    border-radius: 38px;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin-bottom: 16px;
}

.hero-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.hero-actions .cta-whatsapp {
    width: 276px;
    height: 41px;
    gap: 10px;
    padding: 5px 20px;
    border-radius: 5px;
}

.hero-actions .cta-primary {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 18px;
    gap: 10px;
    width: 154px;
    height: 41px;
    border: 1px solid #E6F0FD;
    border-radius: 5px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.hero-image {
    display: block;
    line-height: 0;
    font-size: 0;
    margin: 0;
    padding: 0;
}

.hero-image img {
    display: block;
    width: 100%;
    max-width: 480px;
    margin-bottom: 0;
    padding-bottom: 0;
    vertical-align: bottom;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.rating img {
    height: 31.2px;
}

/* Simulator Section */
.simulator {
    position: relative;
    margin-top: 0;
    padding-top: 30px;
    font-size: 16px;
    border-top: 0;
    background: #0050A3;
    padding: 30px 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    color: var(--text-dark);
    box-sizing: border-box;
}

.simulator-content {
    max-width: 100%;
    margin: 0;
}

.simulator-content h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0;
    text-align: left;
}

.simulator-content p {
    color: #ffffff;
    font-size: 22px;
    text-align: left;
    margin-top: 5px;
}

.simulator-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.simulator-text {
    flex: 1;
}

.simulator-text h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0;
    text-align: left;
    font-family: 'Roboto', sans-serif;
}

.simulator-text p {
    color: #ffffff;
    font-size: 32px;
    text-align: left;
    margin-top: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.simulator-controls {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 0;
    max-width: 450px;
    height: 60px;
}

.simulator .input-group {
    position: relative;
    flex: 2;
    border-radius: 0;
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: center;
}

.simulator .currency {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: #0055A4;
    z-index: 2;
    font-family: 'Roboto', sans-serif;
}

.simulator-input {
    padding: 0 20px 0 60px;
    font-size: 22px;
    border-radius: 0;
    height: 60px;
    width: 100%;
    border: none;
    color: #0055A4;
    background-color: #ffffff;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

.simulator-input::placeholder {
    color: #B0B0B0;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
}

.simulator-button {
    background-color: #0066CC;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0;
    flex: 1;
    color: #ffffff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    min-width: 150px;
    font-family: 'Roboto', sans-serif;
}

.simulator .cta-whatsapp {
    background-color: #38CE58;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 4px;
    flex: 1;
    color: #ffffff;
    text-decoration: none;
}

/* Consignado CLT Section */
.consignado-clt {
    padding: 60px 0;
    background-color: #E6F0FD;
}

.consignado-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.consignado-image {
    flex: 1;
    text-align: center;
}

.consignado-image img {
    max-width: 100%;
    border-radius: 8px;
}

.consignado-text {
    flex: 1;
}

.consignado-text h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #F44545;
    margin-bottom: 24px;
}

.consignado-text p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 115%;
    letter-spacing: 0%;
    color: #0050A3;
    margin-bottom: 16px;
}

.consignado-clt .cta-whatsapp {
    width: 314px;
    height: 41px;
    gap: 10px;
    padding: 5px 20px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Vantagens Section */
.vantagens {
    padding: 60px 0;
    background: linear-gradient(90deg, #0A437D 0%, #185FA7 100%);
    text-align: center;
}

.vantagens h2 {
    font-family: Roboto;
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    max-width: 1282px;
    margin-left: auto;
    margin-right: auto;
}

.vantagem-card {
    background-color: var(--primary-blue);
    padding: 60px 25px;
    border-radius: 6px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 363px;
    width: 296px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
}

.vantagem-card h3 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 35px;
    line-height: 101%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 6px;
    text-align: left;
}

.vantagem-card p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 101%;
    letter-spacing: 0%;
    color: #8FC5FE;
    flex-grow: 1;
    text-align: left;
}

/* Comparativo Section */
.comparativo {
    padding: 60px 0;
    background-color: #E6F0FD;
}

.comparativo-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.comparativo-header {
    flex: 1;
    text-align: left;
    max-width: 441px;
    height: 232px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparativo-pretitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #F44545;
    margin-bottom: 15px;
}

.comparativo h2 {
    font-family: Roboto;
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0050A3;
    max-width: 100%;
    margin: 0;
}

.comparativo-content {
    flex: 1;
}

.comparativo-table {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #E0E0E0;
}

.table-header .col {
    flex: 1;
    font-family: Roboto;
    font-weight: 400;
    font-size: 25px;
    line-height: 119%;
    color: #0050A3;
    text-align: center;
}

.table-header .col:first-child {
    text-align: left;
    padding-left: 20px;
}

.table-row {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #E0E0E0;
}

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

.table-row .row-title {
    flex: 1;
    text-align: left;
    padding-left: 20px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 25px;
    line-height: 119%;
    letter-spacing: 0%;
    color: #0050A3;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.table-row .col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-row .col img {
    width: 30px;
    height: 30px;
}

/* Como Solicitar Section */
.como-solicitar {
    padding: 60px 0;
    background-color: #D9E9FE;
}

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

.como-solicitar-pretitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #F44545;
    margin-bottom: 12px;
}

.como-solicitar h2 {
    font-family: Roboto;
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #0050A3;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1279px;
    margin: 0 auto 40px;
    gap: 13px;
}

.step-item {
    background-color: transparent;
    padding: 20px 14px;
    border-radius: 8px;
    box-shadow: none;
    width: 278px;
    height: 219px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.step-separator {
    width: 1px;
    height: 188px;
    background-color: #0050A3;
    align-self: center;
    display: block;
}

.step-number {
    font-family: Roboto;
    font-weight: 700;
    font-size: 45px;
    line-height: 105%;
    letter-spacing: 0%;
    color: #F44545;
}

.step-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.step-content h3 {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #0050A3;
}

.como-solicitar .cta-whatsapp {
    width: 314px;
    height: 41px;
    gap: 10px;
    padding: 5px 20px;
    border-radius: 5px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

@media screen and (max-width: 1200px) {
    .steps-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-separator {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        width: 100%;
        max-width: 350px;
        align-items: center;
        text-align: center;
    }
    
    .step-separator {
        width: 380px;
        height: 3px;
        background-color: #0050A3;
        margin: 15px 0;
        display: block !important;
        visibility: visible !important;
        border: none;
    }
}

@media screen and (max-width: 768px) {
    .como-solicitar-pretitle {
        font-size: 20px;
    }
    
    .como-solicitar h2 {
        font-size: 32px;
    }
    
    .step-item {
        width: 100%;
        height: auto;
        min-height: 180px;
    }
    
    .step-number {
        font-family: Roboto;
        font-weight: 700;
        font-size: 40px;
        line-height: 105%;
        letter-spacing: 0%;
        text-align: center;
    }
    
    .step-content {
        align-items: center;
    }
    
    .step-content h3 {
        font-family: Roboto;
        font-weight: 400;
        font-size: 25px;
        line-height: 105%;
        letter-spacing: 0%;
        text-align: center;
    }
    
    .como-solicitar .cta-whatsapp {
        width: 100%;
        max-width: 314px;
    }
    
    /* Comparativo mobile styles */
    .comparativo-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .comparativo-header {
        text-align: center;
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    .comparativo-pretitle {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .comparativo h2 {
        font-size: 28px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .comparativo-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .comparativo-table {
        width: 85%;
        margin: 0 auto;
    }
    
    .table-header {
        border-bottom: 1px solid #D0E0F5;
    }
    
    .table-header .col:first-child {
    }
    
    .table-header .col {
        text-align: center;
        font-weight: 600;
        padding: 10px 0;
    }
    
    .table-row {
        padding: 15px 0;
    }
    
    .table-row .row-title {
        padding-left: 0;
        font-size: 18px;
    }
    
    .table-row .col img {
        width: 24px;
        height: 24px;
    }
    
    .table-header .col,
    .table-row .row-title,
    .table-row .col {
        font-family: Roboto;
        font-weight: 400;
        font-size: 20px;
        line-height: 119%;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #0050A3;
        margin-left: 6px;
    }
    
    .comparativo .button-container {
        margin-top: 20px;
    }
    
    /* Vantagens mobile styles */
    .vantagens h2 {
        font-size: 32px;
    }
    
    .vantagem-card {
        height: auto;
        min-height: 240px;
        padding: 32px 20px;
    }
    
    .vantagem-card h3 {
        font-size: 28px;
    }
    
    .vantagem-card p {
        font-size: 18px;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #0B3867;
    padding-left: 147px;
    padding-right: 147px;
    border-radius: 9px;
    width: 1020px;
    height: 421px;
    margin: 0 auto;
}

.cta-image {
    flex: 4;
    text-align: right;
    align-self: flex-end;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.cta-image img {
    max-width: 120%;
    max-height: 100%;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    vertical-align: bottom;
    margin-right: -30px;
    object-fit: contain;
    object-position: bottom right;
}

.cta-text {
    flex: 6;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-text h2 {
    font-family: Roboto;
    font-weight: 800;
    font-size: 39px;
    line-height: 103%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-align: left;
}

.cta-text p {
    font-family: Roboto;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 8px;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-align: left;
    line-height: 1.2;
}

.cta-text .highlight {
    color: #F44545;
}

.cta-text .button-container {
    justify-content: flex-start;
    margin-top: 24px;
}

.cta-text .cta-whatsapp {
    width: 314px;
    height: 41px;
    gap: 10px;
    padding: 5px 20px;
    border-radius: 5px;
    font-family: Roboto;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
}

@media screen and (max-width: 1200px) {
    .cta-content {
        width: 100%;
        padding-left: 80px;
        padding-right: 80px;
        height: auto;
    }
}

@media screen and (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        padding: 40px 40px 0 40px;
        gap: 0;
        overflow: hidden;
    }
    
    .cta-text {
        order: -1;
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }
    
    .cta-image {
        margin: 0;
        padding: 0;
        height: auto;
        width: 100%;
        margin-bottom: -5px; /* To eliminate any possible gap */
    }
    
    .cta-image img {
        display: block;
        margin: 0;
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        margin-bottom: -5px; /* Extra insurance against gaps */
    }
    
    .cta-text h2,
    .cta-text p {
        text-align: center;
    }
    
    .cta-text .button-container {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 18px;
    }
    
    .cta-text .cta-whatsapp {
        width: 100%;
        max-width: 314px;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #ECF4FF;
}

.faq-container {
    width: 887px;
    height: 648px;
    gap: 58px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 11px;
    background: #ECF4FF;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.faq-pretitle {
    font-family: Roboto;
    font-weight: 400;
    font-size: 25px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #F44545;
    margin-bottom: 5px;
}

.faq h2 {
    font-family: Roboto;
    font-weight: 800;
    font-size: 45px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #0050A3;
    margin: 0;
}

.faq-list {
    width: 685px;
    max-height: 339px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid #D0E0F5;
    background: transparent;
}

.faq-question {
    padding: 20px 0;
    font-family: 'Founders Grotesk', 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0050A3;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 0 20px 0;
    height: auto;
    opacity: 1;
}

.faq-answer p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.extra-question {
    text-align: center;
    margin-top: 40px;
}

.extra-question p {
    font-family: 'Founders Grotesk', 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0050A3;
    margin-bottom: 20px;
}

.faq-cta {
    width: 312px;
    height: 41px;
    gap: 9px;
    padding: 16px 31px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 992px) {
    .faq-container {
        width: 100%;
        height: auto;
    }
    
    .faq-list {
        width: 100%;
        max-height: none;
    }
}

@media screen and (max-width: 768px) {
    .faq-pretitle {
        font-size: 20px;
    }
    
    .faq h2 {
        font-size: 32px;
    }
    
    .faq-question {
        font-size: 18px;
        padding: 16px 0;
    }
    
    .faq-cta {
        width: 100%;
        max-width: 312px;
    }
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-family: Roboto;
    font-weight: 700;
    font-size: 40px;
    line-height: 101%;
    letter-spacing: 0%;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: #fff;
}

.footer-column p {
    margin-bottom: 12px;
    font-family: Roboto;
    font-weight: 300;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    color: #fff;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-family: Roboto;
    font-weight: 300;
    font-size: 20px;
    line-height: 22px;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-column a:hover {
    opacity: 0.8;
}

.footer-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.footer-logo-section {
    margin-bottom: 40px;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

.footer-logo img {
    height: 40px;
}

.footer-disclaimer {
    margin-bottom: 40px;
}

.disclaimer-text {
    font-family: Roboto;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: justify;
    color: #E6F0FD;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-legal a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.cta-primary:hover {
    background-color: #004080;
}

.cta-primary img {
    width: 20px;
    height: 20px;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #38CE58;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.cta-whatsapp:hover {
    background-color: #2fb34a;
}

.cta-whatsapp img {
    width: 20px;
    height: 20px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #38CE58;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #2fb34a;
}

.floating-whatsapp img {
    width: 30px;
    height: 30px;
}

.faq-cta {
    margin-top: 16px;
    display: inline-flex;
}

.faq-cta:hover {
    background-color: #004080;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vantagem-card {
        width: auto;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consignado-content {
        flex-direction: column;
    }
    
    .consignado-text {
        order: -1;
    }
    
    .consignado-image {
        width: 100%;
    }
    
    .cta-content {
        flex-direction: column;
    }
    
    .cta-image {
        width: 100%;
    }
    
    .comparativo-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .comparativo-header {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    /* Hero styles for mobile */
    .hero {
        height: auto;
        overflow: hidden;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 40px;
        max-width: 100%;
        padding-bottom: 0;
    }
    
    .hero-text h1, 
    .hero-text p {
        max-width: 90%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-actions .cta-primary {
        margin: 0 auto;
    }
    
    .badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .rating {
        margin-top: 12px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image img {
        margin: 0 auto;
        padding: 0;
        display: block;
    }
    
    /* Simulator styles for mobile */
    .simulator-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .simulator-text {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .simulator-controls {
        width: 100%;
        max-width: 100%;
        justify-content: space-between;
    }
    
    .input-group {
        flex: 1;
    }
    
    .simulator-button {
        min-width: 120px;
        flex: 0.7;
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Other mobile styles as before */
    .simulator-form {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-copyright-container {
        flex-direction: column;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 40px 40px;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 20px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Consignado CLT mobile styles */
    .consignado-text h2 {
        font-family: Roboto;
        font-weight: 800;
        font-size: 40px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        color: #F44545;
    }
    
    .consignado-text p {
        font-family: Roboto;
        font-weight: 400;
        font-size: 20px;
        line-height: 119%;
        letter-spacing: 0%;
        text-align: center;
        color: #0050A3;
    }
    
    .consignado-text {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Vantagens mobile styles */
    .vantagens h2 {
        font-size: 32px;
    }
    
    .vantagem-card {
        height: auto;
        min-height: 240px;
        padding: 32px 20px;
    }
    
    .vantagem-card h3 {
        font-size: 28px;
    }
    
    .vantagem-card p {
        font-size: 18px;
    }
    
    .comparativo-pretitle {
        font-size: 20px;
    }
    
    .comparativo h2 {
        font-size: 32px;
    }
    
    .table-header .col,
    .table-row .row-title,
    .table-row .col {
        font-family: Roboto;
        font-weight: 400;
        font-size: 20px;
        line-height: 119%;
        letter-spacing: 0%;
        vertical-align: middle;
        color: #0050A3;
    }
}

@media screen and (max-width: 576px) {
    .vantagens-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .vantagens h2,
    .comparativo h2,
    .como-solicitar h2,
    .footer-column h3 {
        font-size: 40px;
        max-width: 80%;
    }
    
    .consignado-text h2 {
        font-size: 40px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
}

/* Desktop-specific hero fixes */
@media screen and (min-width: 769px) {
    .hero {
        position: relative;
        overflow: visible;
        display: block;
    }
    
    .hero-image {
        display: block;
        line-height: 0;
        font-size: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-image img {
        display: block;
        vertical-align: bottom;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Simulator wrapper always centered */
.simulator-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Add this at the end of the file to ensure it overrides other styles */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    .step-item {
        width: 100% !important;
        max-width: 350px !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .step-separator {
        width: 380px !important;
        height: 1px !important;
        background-color: transparent !important;
        border-top: 1px solid #0050A3 !important;
        border-bottom: 1px solid #0050A3 !important;
        border-left: none !important;
        border-right: none !important;
        margin: 15px 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: rotate(180deg) !important;
    }
} 