﻿.tc-subscription-container {
    background: white;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    translate: 0 -50px;
}


.tc-background-image {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.tc-left-image {
    top: 60%;
    left: 0;
    width: 220px;
    height: auto;
}

.tc-right-image {
    top: 60%;
    right: 0;
    width: 220px;
    height: auto;
}

    .tc-left-image img,
    .tc-right-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        pointer-events: none;
        opacity: 1;
    }

.tc-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.tc-main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    width: 670px;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
    text-align: left;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #222;
}

.title {
    font-family: 'Urbanist', sans-serif;
    text-align: left;
    font-size: 32px;
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    width: 100%;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease-in-out;
    border: solid 1px #C5C4C4;
    max-height: 250px;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

.icon img {
    font-size: 2rem;
    height: 42px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 14px;
    color: #555;
}

.tc-top-lines {
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

    .tc-top-lines img {
        width: 100%;
        height: auto;
        object-fit: cover;
        opacity: 1;
        pointer-events: none;
    }

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        width: 100%;
        text-align: center;
    }

    .title {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 50px;
    }

    .tc-subscription-container {
        padding: 20px 16px;
        height: auto; /* En móviles permitimos altura automática */
        overflow-y: auto;
    }

    .tc-left-image,
    .tc-right-image {
        display: none; /* Opcional: ocultar decoraciones en pantallas pequeñas */
    }

    .section-title {
        font-size: 16px;
        margin-bottom: 2rem;
    }

    .title {
        font-size: 24px;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .icon img {
        height: 36px;
    }
}
