/* Componente Principal */
.c-internet-section {
    padding: 40px 1rem;
    text-align: center;
    box-sizing: border-box;
}

.c-internet-section__main-title {
    font-size: 32px;
    margin-bottom: 40px;
    margin-top: 0;
}

/* Objeto de Disposición (Layout) */
.o-container {
    max-width: 1100px;
    margin: 0 auto;
}

.o-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Componente Card */
.c-product-card {
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.c-product-card__title {
    font-size: clamp(1.2rem, 3vw, 1.25rem);
    font-weight: 300;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.c-product-card__description {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 auto 1.5rem;
    max-width: 365px;
    flex-grow: 1;
}

.c-product-card__price {
    font-size: clamp(1.55rem,3vw,1.75rem);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.c-product-card__price span{
    display: block;
    font-size: 53%;
}

.c-product-card__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Componentes de Átomo (Botones y Links) */
.c-button {
    width: 100%;
    padding: 8px 20px;
    border-radius: 25px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.c-button--primary {
    background-color: var(--blue2);
    color: var(--white);
}

.c-call-card {
    width: 100%;
    max-width: 320px;
}

.c-call-card .callback-sencillo {
    margin: 0 !important;
    min-height: auto;
}

.c-call-card .curtain {
    background-color: var(--white) !important;
    color: var(--blue2) !important;
    text-decoration: underline;
    font-family: var(--f4);
}

.c-call-card i.icon-phone {
    display: none !important;
}

/* Media Query - Desktop (First Mobile) */
@media (min-width: 768px) {
    .o-grid {
        flex-direction: row;
        justify-content: center;
    }

    .c-product-card {
        flex: 1;
        max-width: 470px;
    }

    .c-button {
        max-width: 320px;
    }
}