
/* ===== RESET ===== */
.section{
    max-width:1200px;
    margin:auto;
    padding:50px 20px;
}

.img-wifi {
    display:block;
    margin:10px auto;
    width: 130px;
}

.title-plan{
    font-weight: bold;
}

.title-speed{
    font-weight: bold;
}

/* ===== TABS ===== */
.tabs{
    display:flex;
    justify-content:center;
    background:#e5e5e5;
    border-radius:50px;
    padding:6px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.tab{
    border:none;
    background:transparent;
    padding:14px 28px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
    display:flex;
    flex-direction:column;
    align-items:center;
    line-height:1.2;
}

.tab.active{
    background:#00c2a8;
    color:#fff;
}

.tab-title{
    font-size:14px;
    font-weight:600;
}

.tab-subtitle{
    font-size:11px;
    opacity:.7;
}

.tab.active .tab-subtitle{
    opacity:.9;
}

/* ===== CAROUSEL ===== */
.carousel{
    position:relative;
    display:flex;
    align-items:center;
}

.carousel-track{
    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:10px 5px;
}

.carousel-track::-webkit-scrollbar{
    display:none;
}

/* ===== CARD ===== */
.card {
    min-width:320px;
    background:#fff;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.3s;
    line-height:0.7;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3 {
    margin:0 0 10px;
    font-size:18px;
    color:#333;
}

.speed {
    font-size:36px;
    font-weight:bold;
    color:#3f51b5;
    margin-bottom:15px;
}

/* ===== FEATURES ===== */
.features {
    margin:20px 0;
}

.feature-text {
    font-size:14px;
    color:#555;
    margin-bottom:15px;   /* antes 8px */
    line-height:1.2;     /* controla separación vertical */
}

.feature-logo {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-bottom:8px;
    /**********background:#000;*/
    padding:8px 15px;
    border-radius:25px;
}

.feature-logo img{
    height:30px;
    /*
    object-fit:contain;
    filter:brightness(0) invert(1);
    */
}

.feature-logo span{
    font-size:25px;
    color:#fff;
}

/* ===== PRECIO ===== */
.price {
    font-size:45px;
    font-weight:bold;
    margin:20px 0;
}

.small{
    font-size:14px;
    color:#777;
}

/* ===== BOTÓN ===== */
.btn-tab{
    background:#00c2a8;
    border:none;
    padding:20px 30px;
    border-radius:30px;
    font-weight:bold;
    color:#000;
    cursor:pointer;
    transition:.3s;
}

.btn-tab:hover{
    opacity:.85;
}

/* ===== FLECHAS ===== */
.carousel-btn{
    background:#fff;
    border:none;
    width:45px;
    height:45px;
    border-radius:50%;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    cursor:pointer;
    font-size:20px;
    position:absolute;
    z-index:2;
    transition:.3s;
}

.carousel-btn:hover{
    background:#00c2a8;
    color:#fff;
}

.prev{ left:-20px; }
.next{ right:-20px; }

.hidden{
    display:none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .carousel-btn{
        display:none;
    }
}