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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #000;
    min-height: 100vh;
    overflow: hidden;
}

.container-fluid {
    padding: 0 40px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Custom column widths */
.left-column,
.right-column {
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

@media (min-width: 992px) {
    .left-column {
        flex: 0 0 calc(70% - 24px);
        max-width: calc(70% - 24px);
    }

    .right-column {
        flex: 0 0 calc(30% - 24px);
        max-width: calc(30% - 24px);
    }
}

@media (max-width: 991px) {
    .left-column {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .right-column {
        flex: 0 0 100%;
        max-width: 100%;
        padding-top: 40px;
    }
}

/* Header */
.header-section {
    display: flex;
    justify-content: center;
    margin-bottom: 150px;
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    align-items: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 90px;
    width: auto;
}


/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background-color: #F5F5F5;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
    max-height: calc(100vh - 90px);
    overflow: hidden;
    position: relative;
    margin-left: 30px;
}

/* Colunas de cards para animaÃ§Ã£o marquee */
.cards-column-left,
.cards-column-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.cards-column-left {
    animation-name: scrollDown;
    padding: 20px;
}

.cards-column-right {
    animation-name: scrollUp;
    padding: 20px;
}

/* AnimaÃ§Ã£o para rolar para baixo (coluna esquerda) */
@keyframes scrollDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* AnimaÃ§Ã£o para rolar para cima (coluna direita) */
@keyframes scrollUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

.feature-card {
    height: 264px;
    /* width: 361px; */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.card-icon-container {
    height: 150px;
    background-color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    /* margin: 20px; */
    margin-bottom: 0px;
}

.card-icon-container svg {
    color: #000;
}

.card-content {
    padding-top: 12px;
}

.card-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 12px;
    text-align: left;
}

.card-description {
    font-size: 14px;
    font-weight: 400;
    color: #4B5563;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

/* Content Section */
.right-column {
    padding: 150px 20px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    text-align: center;
    max-width: 100%;
    align-items: center;
    width: 100%;
}

.main-title {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
    margin-top: 0;
    text-align: center;
    width: 80%;
}

.main-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

/* Button */
.btn-start-journey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: #FFD700;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: fit-content;
    text-align: center;
}

.btn-start-journey:hover {
    background-color: #FFC700;
    transform: scale(1.02);
}

.btn-start-journey:active {
    transform: scale(0.98);
}

.btn-start-journey svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .main-title {
        font-size: 30px;
    }
    
    .header-section {
        padding-top: 20px;
    }
    
    .right-column {
        padding-top: 80px;
    }
}

@media (max-width: 991px) {
    .cards-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        margin-top: 40px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .container-fluid {
        padding: 0 24px 24px 24px;
    }
    
    .header-section {
        padding-top: 20px;
    }
    
    .content-section {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .header-section {
        padding-top: 20px;
        margin-bottom: 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .main-description {
        font-size: 14px;
    }
    
    .cards-grid {
        padding: 24px;
        margin-top: 30px;
    }
    
    .content-section {
        padding-top: 30px;
    }
    
    .card-title {
        font-size: 16px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .card-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-container svg {
        width: 30px;
        height: 30px;
    }
    
    .btn-start-journey {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .container-fluid {
        padding: 0 16px 16px 16px;
    }
    
    .header-section {
        padding-top: 16px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .cards-grid {
        padding: 20px;
        margin-top: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .content-section {
        padding-top: 20px;
    }
}

