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

body {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #37404E;
    background-color: #FFFFFF;
}

/* Typography - Following Figma Design Tokens */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.44;
    color: #FFFFFF;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: #37404E;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: #37404E;
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #3C3E3E;
}

p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #37404E;
    letter-spacing: 0.1px;
}

/* Hero Banner */
.hero-banner {
    background-color: #E05D0F;
    height: 414px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: absolute;
    left: 152px;
    top: 40px;
    width: 642px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    height: 36px;
    position: relative;
}

.breadcrumb-arrow {
    position: absolute;
    left: -2.68px;
    top: 50%;
    transform: translateY(-50%) rotate(132deg);
    width: 18.338px;
    height: 18.338px;
    border: 0px 2px 2px 0px;
    border-style: solid;
    border-color: #FFFFFF;
    border-radius: 0 2px 2px 0;
    width: 13px;
    height: 13px;
}

.breadcrumb-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-position: from-font;
    line-height: 24px;
    letter-spacing: 0.1px;
    padding-left: 16px;
}

.breadcrumb-separator {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    padding: 0 4px;
}

.breadcrumb-current {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.hero-text {
    width: 540px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}

.hero-title-bold {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    color: #FA6300;
    font-family: 'Montserrat', sans-serif;
    font-size: 18.7px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 666.67px;
    min-width: 265px;
    max-width: 432px;
    width: 298px;
    white-space: nowrap;
    margin-bottom: 70px;
    transition: all 0.3s ease;
}

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

.hero-image {
    grid-column: 2;
    justify-self: end;
    width: min(60vw, 900px);
    height: auto;
    max-height: 500px;
    /*background-image: url('http://localhost:3845/assets/2b50a3a0cb264548f330b798f47753958336ca42.png');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: -200px;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: right center;
}

/* Main Content */
.main-content {
    background-color: #FFFFFF;
    width: 100%;
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1104px;
    margin: 0 auto;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    color: #3C3E3E;
    text-align: center;
    width: 100%;
}

.about-content {
    display: flex;
    gap: 32px;
    width: 100%;
}

.about-purpose {
    flex: 1;
    background-color: #F4F5F6;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.purpose-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.purpose-text h3 {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.purpose-highlight {
    font-size: 18px;
    font-weight: 700;
    color: #FA6300;
    line-height: 1.44;
    width: 318px;
}

.purpose-text p {
    width: 100%;
    min-width: fit-content;
}

.purpose-image {
    width: 100%;
    aspect-ratio: 488/355;
    /*background-image: url('http://localhost:3845/assets/6a7567833bb980f19e51eb7fce3fb5118f3cab48.png');*/
    background-size: 100%;
    background-position: 0% 23.07%;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-top: auto;
}

.about-values {
    flex: 1;
    background-color: #F4F5F6;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-values h3 {
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 278px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.value-card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.value-header {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.value-icon {
    width: 30px;
    height: 28.291px;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.like-icon {
    background-image: url('../img/icones/like.svg');
}

.accessible-icon {
    width: 34px;
    height: 29px;
    background-image: url('../img/icones/saude.svg');
}

.human-icon {
    width: 33.325px;
    height: 29.695px;
    background-image: url('../img/icones/human.svg');
}

.value-header h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.44;
    color: #37404E;
    white-space: nowrap;
}

.value-card p {
    width: 100%;
    overflow: hidden;
}

/* Why Choose Section */
.why-choose-section {
    background-color: #F4F5F6;
    width: 100%;
}

.why-choose-section .section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 64px 0;
}

.why-choose-section .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: #37404E;
    text-align: center;
}

.highlight-bold {
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.benefits-grid > div:first-child,
.benefits-grid > div:nth-child(2) {
    display: flex;
    gap: 24px;
}

.benefit-card {
    flex: 1;
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

.money-icon {
    width: 30px;
    height: 37px;
    background-image: url('../img/icones/sorteios.svg');
}

.security-icon {
    background-image: url('../img/icones/protecao.svg');
}

.health-icon {
    width: 42px;
    height: 36px;
    background-image: url('../img/icones/saude.svg');
}

.affordable-icon {
    background-image: url('../img/icones/bolso.svg');
    background-size: 48px 48px;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    width: 100%;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #3C3E3E;
    text-align: left;
    width: 100%;
    min-width: fit-content;
}

.benefit-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #37404E;
    letter-spacing: 0.1px;
    width: 100%;
}

/* Grid Layout for Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}


/* Products Section */
.products-section {
    background-color: #FFFFFF;
    width: 100%;
}

.products-section .section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.products-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1104px;
    width: 100%;
    margin: 0 auto;
}

.section-description {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #37404E;
    text-align: center;
    max-width: 768px;
    width: 768px;
    white-space: pre-line;
    margin-bottom: 0;
}

.products-carousel {
    width: 100%;
    max-width: 1272px;
    margin: 0 auto;
    position: relative;
}

.products-carousel .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.products-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.products-carousel .swiper-button-next,
.products-carousel .swiper-button-prev {
    color: #FA6300;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: -22px;
}

.products-carousel .swiper-button-next:after,
.products-carousel .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.products-carousel .swiper-button-next:hover,
.products-carousel .swiper-button-prev:hover {
    background: rgba(250, 99, 0, 0.1);
}

.products-carousel .swiper-pagination-progressbar-fill,
.swiper-pagination-progressbar-fill {
    background: #FA6300 !important;
    background-color: #FA6300 !important;
}

.carousel-progress .progress-bar {
    background-color: #FA6300;
}

.product-card {
    background-color: #F4F5F6;
    border-radius: 8px;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}


.product-image {
    height: 218.81px;
   
    background-size: 100% 100%;
    background-position: left;
    background-repeat: no-repeat;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
}

.product-image img {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: none;
}






.product-card:nth-child(5) .product-image .desk-image {
    width: 717px;
    height: 219px;
    left: -335.98px;
    top: -0.84px;
}

.product-card:nth-child(5) .product-image .banner-image {
    width: 357px;
    height: 287px;
    left: -5.98px;
    top: -26.84px;
}

.product-card:nth-child(6) .product-image img {
    width: 360px;
    height: 431px;
    left: 0.02px;
    top: -55.84px;
}

.product-card:nth-child(7) .product-image img {
    width: 360px;
    height: 390px;
    left: 0;
    top: -76.84px;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 16px;
}

.product-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #3C3E3E;
    text-align: left;
    margin-bottom: 8px;
    width: 100%;
    min-width: fit-content;
}

.product-content p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #37404E;
    letter-spacing: 0.1px;
    margin-bottom: 16px;
}

.product-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FA6300;
    text-decoration: underline;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.product-link:hover {
    color: #E65C00;
}

.link-arrow {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.carousel-progress {
    background-color: #F4F5F6;
    height: 14px;
    border-radius: 99999px;
    position: relative;
    width: 1101px;
    align-self: flex-start;
}

.progress-bar {
    background-color: #FA6300;
    height: 14px;
    border-radius: 99999px;
    width: 401px;
    position: absolute;
    left: 0;
    top: 0;
}

/* Apolice Section */
.apolice-section {
    background-color: #F4F5F6;
    width: 100%;
}

.apolice-section .section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.apolice-content {
    max-width: 1104px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

.apolice-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.apolice-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    color: #3C3E3E;
    text-align: center;
    width: 100%;
}

.apolice-header p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #37404E;
    text-align: center;
    max-width: 672px;
    white-space: nowrap;
}

.apolice-main {
    display: flex;
    gap: 254px;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 460px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.step-number {
    background-color: #FFFFFF;
    width: 32px;
    height: 32px;
    border-radius: 33554400px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FA6300;
    line-height: 24px;
    flex-shrink: 0;
}

.step-number.active {
    background-color: #FA6300;
    color: #FFFFFF;
    box-shadow: none;
}

.step-item p {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #37404E;
    flex-grow: 1;
    margin-top: 4px;
}

.step-item strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.portal-button {
    margin-top: 0;
    overflow: hidden;
}

.btn-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FA6300;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 18.66px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 100px;
    width: 328px;
    height: 48px;
    transition: all 0.3s ease;
}

.btn-portal:hover {
    background-color: #E65C00;
    transform: translateY(-2px);
}

.apolice-images {
    position: absolute;
    left: 625px;
    top: -39.21px;
    width: 420px;
    height: 347px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apolice-main-image {
    width: 100%;
    height: auto;
    max-width: 420px;
    object-fit: contain;
}

/* Atendimento Section */
.atendimento-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 64px 0;
    box-sizing: border-box;
}

.atendimento-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    box-sizing: border-box;
}

.atendimento-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.atendimento-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #3C3E3E;
    text-align: center;
    margin: 0;
    width: 100%;
}

.atendimento-cards-wrapper {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.atendimento-card {
    background-color: #F4F5F6;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: fit-content;
    box-sizing: border-box;
    width: 100%;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atendimento-icon-simple {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.atendimento-icon {
    position: relative;
}

.icon-circle {
    width: 36px;
    height: 36px;
}

.icon-content {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 7.16px;
    left: 7px;
    overflow: hidden;
}

.icon-part-1 {
    position: absolute;
    top: 2px;
    left: 4px;
    width: 24px;
    height: 15px;
}

.icon-part-2 {
    position: absolute;
    top: 5.72px;
    left: 8px;
    width: 16px;
    height: 9.18px;
}

.icon-part-3 {
    position: absolute;
    top: 13.5px;
    left: 15px;
    width: 13px;
    height: 7.5px;
}

.bmg-icon {
    overflow: hidden;
}

.bmg-logo {
    width: 32px;
    height: 32px;
}

.card-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    color: #37404E;
    width: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-row {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.contact-item:last-child {
    flex-grow: 1;
    min-width: 0;
}

.contact-label {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #37404E;
    margin-bottom: 0;
}

.contact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    color: #FA6300;
    text-decoration: underline;
    text-underline-position: from-font;
}

.contact-number:hover {
    color: #E65C00;
}

.whatsapp-button {
    width: fit-content;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #FA6300;
    color: #FFFFFF;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    height: auto;
    min-height: 44px;
    transition: all 0.3s ease;
}

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

.whatsapp-icon {
    width: 17.5px;
    height: 17.5px;
    flex-shrink: 0;
}


/* Trabalhe Conosco Section */
.trabalhe-conosco-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 64px 0;
}

.trabalhe-conosco-section .section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 64px 0;
}

.trabalhe-content {
    background-color: #F4F5F6;
    padding: 64px;
    border-radius: 8px;
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: visible;
}

.trabalhe-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 0;
}

.trabalhe-conosco-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    color: #37404E;
    margin-bottom: 0;
}

.trabalhe-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.44;
    color: #37404E;
    margin-bottom: 0;
    padding-bottom: 8px;
}

.trabalhe-subtitle strong {
    font-weight: 700;
}

.trabalhe-button {
    width: 362px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-trabalhe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FA6300;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 18.66px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 100px;
    width: 360px;
    height: 48px;
    transition: all 0.3s ease;
}

.btn-trabalhe:hover {
    background-color: #E65C00;
    transform: translateY(-2px);
}

.trabalhe-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 300px;
    max-width: 400px;
}

.trabalhe-main-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
    object-fit: contain;
}

/* Baixe o App Section */
.baixe-app-section {
    background-color: #F4F5F6;
    padding: 38px 0;
    box-sizing: border-box;
}

.baixe-app-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.baixe-app-content {
    display: flex;
    align-items: center;
    gap: 105px;
    width: 100%;
}

.phone-container {
    position: relative;
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    flex-shrink: 0;
    line-height: 0;
}

.phone-image {
    grid-area: 1 / 1;
       width: 100%;
    height: 100%;
    margin-left: 0;
    margin-top: 23.005px;
    background-size: 190.01% 100%;
    background-repeat: no-repeat;
    background-position: 72.11% 0%;
}

.user-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}

.app-info {
   
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.app-icon-container {
    width: 90px;
    height: 90px;
   
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
   margin-bottom: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}


.app-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 11.5px;
    flex-shrink: 0;
}

.app-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #3C3E3E;
    margin: 0;
    width: 100%;
    flex-shrink: 0;
}

.app-text p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #37404E;
    margin: 0;
    width: 100%;
    flex-shrink: 0;
}

.download-buttons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    overflow: clip;
    flex-shrink: 0;
}

.download-btn {
    width: 148px;
    margin-top: 20px;
    height: 44px;
    overflow: clip;
    flex-shrink: 0;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.store-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: none;
}

/* Blog e Redes Sociais Section */
.blog-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 64px 0;
}

.blog-section .section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.blog-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #3C3E3E;
    text-align: center;
    margin: 0;
}

.blog-cards {
    display: flex;
    gap: 33px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.blog-card {
    flex: 1;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
}

.card-content {
    flex: 1;
    background-color: #F4F5F6;
    padding: 16px 30px 16px 22px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 204px;
    overflow: clip;
    box-sizing: border-box;
}

.card-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    flex-direction: row;
}

.card-icon {
    position: relative;
    width: 24px;
    height: 42px;
    flex-shrink: 0;
}

.icon-circle {
    position: absolute;
    left: 1px;
    top: 6.16px;
    width: 36px;
    height: 36px;
}

.circle-bg {
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
}

.icon-symbol {
    position: absolute;
    left: 0;
    top: 0.16px;
    width: 28px;
    height: 28px;
    overflow: clip;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-icon, .linkedin-icon {
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
}

.card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 0;
}

.card-description {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    color: #37404E;
    line-height: 0;
}

.card-description h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #37404E;
    margin: 0;
    white-space: nowrap;
}

.card-description p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #37404E;
    margin: 0;
    width: 100%;
    min-width: 100%;
    letter-spacing: 0.1px;
}

.card-button {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.blog-link {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 300px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #FA6300;
    text-align: center;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

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

.arrow-icon {
    width: 24px;
    height: 24px;
    overflow: clip;
    flex-shrink: 0;
}

.arrow-icon img {
    width: 17px;
    height: 17px;
    transform: translate(-50%, -50%);
    position: relative;
    left: calc(50% + 0.5px);
    top: calc(50% - 0.5px);
}

/* Políticas e Documentos Section */
.documentos-section {
    background-color: #F4F5F6;
    width: 100%;
    padding: 64px 0;
}

.documentos-section .section-container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    height: auto;
}

.documentos-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.documentos-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.documentos-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 46px;
    color: #3C3E3E;
    margin: 0;
    width: 100%;
    text-align: left;
}

.documentos-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 672px;
    width: 672px;
}

.documentos-description p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #37404E;
    margin: 0;
    white-space: nowrap;
}

.documentos-cards {
    position: relative;
    height: 174px;
    width: 100%;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
}

.documento-card {
    flex: 1;
    position: relative;
}

.documento-card .card-content {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.doc-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.document-icon {
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
}

.doc-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 0;
}

.doc-text p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #37404E;
    margin: 0;
    width: 100%;
}

.download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.download-arrow {
    width: 100%;
    height: 100%;
    display: block;
    max-width: none;
}

.documento-card:hover .card-content {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.documento-card .card-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer, .subfooter {
	color: #fff;
}

.footer p, .subfooter p {
	color: inherit;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-container {
        width: 100%;
        max-width: 1150px;
        padding: 64px 24px;
    }
    
    .hero-content {
        left: 24px;
        width: calc(100% - 48px);
        max-width: 642px;
    }
    
    .hero-image {
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 740px;
    }
    
    .products-carousel {
        width: 100%;
        max-width: 1272px;
    }
    
    .carousel-progress {
        width: 100%;
        max-width: 1101px;
    }
    
    .apolice-main {
        gap: 48px;
        flex-direction: column;
        align-items: center;
    }
    
    .apolice-images {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 420px;
    }
	
	.atendimento-cards-wrapper {
		flex-flow: column;
	}
    
    .atendimento-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trabalhe-conosco-section {
        padding: 64px 24px;
    }
    
    .trabalhe-content {
        flex-direction: column;
        height: auto;
        gap: 32px;
        text-align: center;
    }
    
    .trabalhe-images {
        min-height: 250px;
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 16px;
    }
    
    .nav-actions {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .hero-banner {
        height: auto;
        min-height: 400px;
    }
    
    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        padding: 32px 24px;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 300px;
        margin-top: 24px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .products-carousel {
        flex-direction: column;
        overflow-x: visible;
        width: 100%;
    }
    
    .product-card {
        min-width: 100%;
        width: 100%;
    }
    
    .section-description {
        width: 100%;
        max-width: none;
    }
    
    .steps-container {
        width: 100%;
    }
    
    .apolice-header p {
        white-space: normal;
    }
    
    .btn-portal {
        width: 100%;
        max-width: 328px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-item {
        width: 100%;
    }
    
    .trabalhe-button {
        width: 100%;
    }
    
    .btn-trabalhe {
        width: 100%;
        max-width: 360px;
    }
    
    /* Baixe o app section */
    .baixe-app-container {
        padding: 0 24px;
    }
    
    /* All sections responsive */
    .why-choose-section .section-container,
    .products-section .section-container,
    .apolice-section .section-container,
    .atendimento-section .section-container,
    .trabalhe-conosco-section .section-container,
    .blog-section .section-container,
    .documentos-section .section-container {
        padding: 64px 24px;
    }
    
    /* Blog section responsive */
    .blog-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .blog-header h2 {
        font-size: 32px;
        line-height: 38px;
    }
    
    /* Documentos section responsive */
    .documentos-title h2 {
        font-size: 32px;
        line-height: 38px;
    }
    
    .documentos-description {
        width: 100%;
        max-width: 100%;
    }
    
    .documentos-description p {
        white-space: normal;
    }
    
    .documentos-cards {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    
    .baixe-app-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .phone-image {
        width: 100%;
        height: 290px;
        margin-top: 0;
    }
    
    .app-info {
        width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .app-text h2 {
        font-size: 32px;
        line-height: 38px;
        text-align: center;
    }
    
    .app-text p {
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 32px;
        line-height: 38px;
    }
    
    .section-container {
        padding: 32px 16px;
    }
    
    /* All sections responsive mobile */
    .why-choose-section .section-container,
    .products-section .section-container,
    .apolice-section .section-container,
    .atendimento-section .section-container,
    .trabalhe-conosco-section .section-container,
    .blog-section .section-container,
    .documentos-section .section-container {
        padding: 32px 16px;
    }
    
    /* Blog section mobile */
    .blog-header h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .card-description h4 {
        font-size: 16px;
    }
    
    .card-description p {
        font-size: 14px;
        line-height: 21px;
    }
    
    .blog-link {
        font-size: 14px;
    }
    
    /* Documentos section mobile */
    .documentos-title h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .documentos-description p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .doc-text p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-item {
        justify-content: center;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: none;
    }
    
    /* Baixe o app section */
    .phone-image {
        width: 250px;
        height: 260px;
    }
    
    .app-text h2 {
        font-size: 28px;
        line-height: 34px;
    }
    
    .app-text p {
        font-size: 14px;
        line-height: 21px;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .download-btn {
        width: 200px;
        height: 48px;
    }
}