.fst-section-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 80vh;
}

.fst-section-card {
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px;
    flex: 1;
    height: 80vh;
}

.fst-section-card:nth-child(1) {
    background-image: url('../../images/phones-cover.png');
    background-size: cover;
    background-position: center;
}

.fst-section-card:nth-child(2) {
    background-image: url('../../images/accesorio-cover-estilo-apple.png');
    background-size: cover;
    background-position: center;
}

.fst-section-card h2 {
    font-size: clamp(2rem, 3vw, 4.5rem);
    color: #1A1A1A;
}

.fst-section-card p {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: #333333;
    max-width: 80%;
    text-align: center;
}

.fst-section-card .btn {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    background-color: #ffffff;
    color: #000000;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.fst-section-card .btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}