
.ss-hero {
    width: 100%;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.ss-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: none;
    gap: 0;
}

.ss-hero-image {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
}

.ss-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ss-hero-title {
    width: 100%;
    min-height: 12.5rem; 
    background: #0B314C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem; 
    border-top: none;
    margin-top: 0;
}

.ss-hero-title h2 {
    color: white;
    font-size: 1.875rem; 
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    letter-spacing: normal;
}

.ss-hero-title .font-bold {
    font-weight: 700;
}

.ss-hero-title .font-black {
    font-weight: 900;
}

@media (min-width: 640px) {
    .ss-hero-title {
        min-height: 13.75rem; 
    }

    .ss-hero-title h2 {
        font-size: 2.25rem; 
    }
}

@media (min-width: 768px) {
    .ss-hero-title h2 {
        font-size: 3rem; 
    }
}

@media (min-width: 1024px) {
    .ss-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .ss-hero-image {
        aspect-ratio: auto;
        min-height: 32.5rem; 
        border: none;
    }

    .ss-hero-image:first-child {
        border-right: none;
    }

    .ss-hero-image:last-child {
        background: rgba(10, 49, 76, 0.05);
        border-left: none;
    }

    .ss-hero-title {
        height: 15.3125rem; 
    }

    .ss-hero-title h2 {
        font-size: 3.75rem; 
    }
}

@media (min-width: 1280px) {
    .ss-hero-title h2 {
        font-size: 4.125rem; 
    }
}

.ss-content {
    width: 100%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--background);
}

.ss-content-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    width: 100%;
}

.ss-content-text {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.ss-content-logo {
    height: 100px;
    display: flex;
    align-items: center;
}

.ss-content-logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.ss-content-description {
    color: #0B314C;
    text-align: left;
    letter-spacing: normal;
    opacity: 1;
    font-size: 24px;
    line-height: 32px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.ss-content-stats {
    padding-top: 1.5rem;
}

.ss-stats-title {
    color: #0B314C;
    font-size: 48px;
    line-height: 52px;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    overflow-wrap: break-word;
    font-family: 'Outfit', sans-serif;
}

.ss-stats-subtitle {
    color: #0B314C;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.ss-stats-extra {
    color: #0B314C;
    font-size: 24px;
    margin-top: 1rem;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: left;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.ss-content-image {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    min-height: 500px;
}

.ss-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ss-content-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.ss-content-image-text {
    padding-top: 1rem;
}

.ss-overlay-title {
    color: white;
    font-size: 48px;
    line-height: 48px;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    overflow-wrap: break-word;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.text-green {
    color: var(--brand-primary);
}

.ss-overlay-subtitle {
    color: white;
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0px;
    text-align: left;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

@media (min-width: 640px) {
    .ss-content-text {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .ss-content-logo {
        height: 120px;
    }

    .ss-content-description {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-content-stats {
        padding-top: 2rem;
    }

    .ss-stats-title {
        margin-bottom: 2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .ss-stats-subtitle {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-stats-extra {
        padding-left: 0;
        padding-right: 0;
    }

    .ss-content-image-overlay {
        padding: 1.5rem;
    }

    .ss-content-image-text {
        padding-top: 1.5rem;
    }

    .ss-overlay-title {
        margin-bottom: 0.75rem;
        padding-left: 0;
        padding-right: 0;
    }

    .ss-overlay-subtitle {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .ss-content-text {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .ss-content-image-overlay {
        padding: 2rem;
    }

    .ss-content-image-text {
        padding-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .ss-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .ss-content-text {
        padding-left: clamp(1.5rem, 2.5vw, 3rem);
        padding-right: clamp(1.5rem, 2.5vw, 3rem);
        padding-top: 4rem;
        padding-bottom: 4rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .ss-content-image {
        width: 100%;
        box-sizing: border-box;
    }

    .ss-content-logo {
        height: 140px;
    }

    .ss-content-image {
        aspect-ratio: auto;
    }

    .ss-content-image-overlay {
        padding: 3rem;
    }

    .ss-content-image-text {
        padding-top: 3rem;
    }
}

@media (min-width: 1280px) {
    .ss-content-image-overlay {
        padding: 4rem;
    }

    .ss-content-image-text {
        padding-top: 4rem;
    }
}

.ss-steps {
    width: 100%;
    border-top: 1px solid var(--border);
    background: var(--background);
    overflow-x: hidden;
}

.ss-steps-container {
    padding: 2rem 1rem 2rem; 
}

.ss-steps-title {
    color: #0B314C;
    font-size: 2.25rem; 
    line-height: 2.25rem; 
    font-weight: 700;
    text-align: center;
    padding-top: 2rem; 
    padding-left: 1rem; 
    padding-right: 1rem; 
    word-wrap: break-word;
}

.ss-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; 
    padding-bottom: 2rem; 
}

.ss-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem; 
    max-width: 100%;
}

.ss-step-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 25rem; 
    margin-bottom: 1rem; 
    box-sizing: border-box;
    padding: 0;
}

.ss-step-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ss-step-title {
    color: #0B314C;
    font-size: 2.25rem; 
    line-height: 2.25rem; 
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.75rem; 
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: 'Outfit', sans-serif;
}

.ss-step-title .font-black {
    font-weight: 900;
}

.ss-step-description {
    color: #0B314C;
    font-size: 1.5rem; 
    text-align: center;
    line-height: 1.75rem; 
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 639px) {
    .ss-step {
        padding: 0 1rem; 
    }

    .ss-step-title {
        font-size: 1.875rem; 
        line-height: 2rem; 
    }

    .ss-step-description {
        font-size: 1.25rem; 
        line-height: 1.625rem; 
    }
}

@media (min-width: 640px) {
    .ss-steps-container {
        padding: 3rem 1.5rem 3rem; 
    }

    .ss-steps-title {
        padding-top: 3rem; 
    }

    .ss-steps-grid {
        gap: 2rem; 
        padding-bottom: 3rem; 
    }

    .ss-step {
        padding: 0 1.5rem; 
    }

    .ss-step-image {
        margin-bottom: 1.5rem; 
    }

    .ss-step-title {
        margin-bottom: 1rem; 
    }
}

@media (min-width: 768px) {
    .ss-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem; 
    }
}

@media (min-width: 1024px) {
    .ss-steps-container {
        padding: 4rem 2.5rem 4rem; 
    }

    .ss-steps-title {
        font-size: 3rem; 
        padding-top: 4rem; 
        margin-bottom: 3rem; 
    }

    .ss-step {
        padding: 0 2rem; 
    }

    .ss-step-title {
        font-size: 3rem; 
        line-height: 3rem; 
    }
}

@media (min-width: 1280px) {
    .ss-steps-container {
        padding: 4rem 4rem 4rem; 
    }

    .ss-steps-title {
        margin-bottom: 4rem; 
    }
}

.ss-application {
    width: 100%;
    border-top: 1px solid var(--border);
    background: var(--background);
    overflow-x: hidden;
}

.ss-application .safe-area {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.ss-app-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.ss-app-grid-reverse .ss-app-image {
    order: 1;
}

.ss-app-grid-reverse .ss-app-contact {
    order: 2;
}

.ss-app-image {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.ss-app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ss-app-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem; 
}

.ss-app-text p {
    color: #0B314C;
    font-size: 1.5rem; 
    line-height: 1.875rem; 
    font-weight: 500;
    letter-spacing: 0;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.ss-app-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem; 
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
    min-width: 0;
}

.ss-app-contact > * {
    min-width: 0;
    max-width: 100%;
}

.ss-contact-title {
    color: #0B314C;
    font-size: 2.5rem; 
    line-height: 2.5rem; 
    font-weight: 800;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 1rem; 
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0;
}

.ss-contact-subtitle {
    color: #0B314C;
    line-height: 1.5rem; 
    font-size: 1.125rem; 
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.5rem; 
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0;
}

.ss-contact-phone {
    color: #0B314C;
    font-size: 1.75rem; 
    line-height: 2.25rem; 
    font-weight: 600;
    letter-spacing: 0;
    text-align: left;
    margin-bottom: 2.875rem; 
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0;
}

.ss-whatsapp-btn {
    height: 7rem; 
    background: #A1C85C;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; 
    padding: 0 1.5rem; 
    cursor: pointer;
    transition: opacity 0.2s;
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.ss-whatsapp-btn:hover {
    opacity: 0.9;
}

.ss-whatsapp-btn svg {
    width: 2.25rem; 
    height: 2.25rem; 
    color: #0B314C;
}

.ss-whatsapp-btn span {
    font-size: 2.25rem; 
    line-height: 2.8125rem; 
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #0B314C;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex-shrink: 1;
}

@media (max-width: 640px) {
    .ss-whatsapp-btn {
        padding: 0 1rem; 
    }

    .ss-whatsapp-btn span {
        font-size: 1.75rem; 
        line-height: 2.25rem; 
        white-space: normal;
    }
}

@media (max-width: 500px) {
    .ss-app-contact {
        padding: 2rem 1rem; 
    }

    .ss-contact-title {
        font-size: 2rem; 
        line-height: 2.25rem; 
    }

    .ss-contact-subtitle {
        font-size: 1rem; 
        line-height: 1.5rem; 
    }

    .ss-contact-phone {
        font-size: 1.5rem; 
        line-height: 2rem; 
    }

    .ss-whatsapp-btn {
        height: 6rem; 
        padding: 0 0.75rem; 
    }

    .ss-whatsapp-btn span {
        font-size: 1.5rem; 
        line-height: 2rem; 
    }
}

@media (min-width: 430px) and (max-width: 500px) {
    .ss-app-contact {
        padding: 2rem 1.25rem; 
    }

    .ss-contact-title {
        font-size: 2.25rem; 
        line-height: 2.5rem; 
    }

    .ss-contact-subtitle {
        font-size: 1.125rem; 
        line-height: 1.625rem; 
    }

    .ss-contact-phone {
        font-size: 1.625rem; 
        line-height: 2.125rem; 
    }
}

@media (min-width: 640px) {
    .ss-app-text {
        padding: 3rem 1.5rem; 
    }

    .ss-app-contact {
        padding: 3rem 1.5rem; 
    }

    .ss-contact-title {
        font-size: 3.125rem; 
        line-height: 3.125rem; 
    }

    .ss-contact-subtitle {
        font-size: 1.25rem; 
    }

    .ss-contact-phone {
        font-size: 2rem; 
        line-height: 2.5rem; 
    }
}

@media (min-width: 768px) {
    .ss-app-text {
        padding: 3rem 2rem; 
    }

    .ss-app-contact {
        padding: 3rem 2rem; 
    }

    .ss-contact-title {
        font-size: 3.75rem; 
        line-height: 3.75rem; 
    }

    .ss-contact-subtitle {
        font-size: 1.375rem; 
    }

    .ss-contact-phone {
        font-size: 2.125rem; 
        line-height: 2.75rem; 
    }
}

@media (min-width: 1024px) {
    .ss-application .safe-area {
        max-width: 100%;
        width: 100%;
    }

    .ss-app-grid {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 100%;
    }

    .ss-app-grid-reverse {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        max-width: 100%;
    }

    .ss-app-grid-reverse .ss-app-image {
        order: 2;
    }

    .ss-app-grid-reverse .ss-app-contact {
        order: 1;
    }

    .ss-app-image {
        height: 33.3125rem; 
        aspect-ratio: auto;
        width: 100%;
        max-width: 100%;
    }

    .ss-app-grid-reverse .ss-app-image {
        height: 46rem; 
    }

    .ss-app-text {
        padding: 4rem 3rem; 
        width: 100%;
        box-sizing: border-box;
    }

    .ss-app-contact {
        padding: 4rem clamp(1.5rem, 4vw, 5rem); 
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }

    .ss-contact-title {
        font-size: 4.125rem; 
        line-height: 4.125rem; 
    }

    .ss-contact-subtitle {
        font-size: 1.5rem; 
    }

    .ss-contact-phone {
        font-size: 2.25rem; 
        line-height: 3rem; 
    }
}

@media (min-width: 1280px) {
    .ss-app-text {
        padding: 4rem 4rem; 
    }
}