body {
    margin: 0;
    padding: 0;
    color: white;
    background-color: rgb(0, 0, 0);
}

.videointro {
    text-align: center;
}

.punto {
    color: #f53636;
}

@font-face {
    font-family: 'Tactic Sans Black';
    src: url('fonts/tactic-sans-black.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-family: 'Tactic Sans Black', sans-serif;
    font-size: 38px;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.textarriba {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 22px;
    line-height: 30px;
}

.textrojo {
    background-color: #f53636;
    border-radius: 5px;
}

.entonces {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
}

.resenas {
    position: relative;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #f53636;
    font-size: 20px;
}

.resenas::before,
.resenas::after {
    content: "一";
    font-size: 20px;
    margin: 0 10px;
    color: #f53636;
    font-weight: normal;
}

.containervideo {
    text-align: center;
}

.containervideo video {
    border: 12px solid rgb(80, 80, 80);
    border-radius: 20px;
}

.result {
    font-size: 28px;
    margin-top: -15px;
}

/* CARDS DE CLIENTES (MANTENIDAS SIN CAMBIOS) */
.cards {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background-color: rgb(82, 81, 81);
    margin: 20px;
    border-radius: 25px;
    width: 320px;
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(245, 54, 54, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(245, 54, 54, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#card1{
    background-image: url(img/1.png);
    border: 1px solid white;
    background-repeat: no-repeat;
}

#card2{
    background-image: url(img/3.png);
    border: 1px solid white;
}

#card3{
    background-image: url(img/2.png);
    border: 1px solid white;
}


.card:hover::before {
    opacity: 1;
}

.text a {
    margin-bottom: -40px;
    color: white;
    font-size: 19px;
    transition: all 0.3s ease;
    display: inline-block;
}

.text a:hover {
    color: #f53636;
    transform: translateX(5px);
}

.text {
    margin-left: 28%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.seguidores {
    margin-top: -20px;
    transition: all 0.3s ease;
}

.card:hover .seguidores {
    color: #f53636;
}

.imagendescripcion img {
    margin-bottom: -90px;
    margin-left: 10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card:hover .imagendescripcion img {
    transform: scale(1.1);
    border-color: #f53636;
}

.descripcion {
    margin-top: 120px;
}

.meses {
    line-height: 30px;
    font-size: 24px;
}

/* SECCIÓN DE PLANES OPTIMIZADA */
.plan {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    max-width: 100%;
    margin: 50px auto;
   
}

.plans {
    width: 480px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    padding: 0;
}

#planes_img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.plans:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(245, 54, 54, 0.3);
}

.plans:hover #planes_img img {
    transform: scale(1.03);
}

/* Responsive para planes */
@media (max-width: 1024px) {
    .plans {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .plans {
        width: 350px;
        margin-bottom: 20px;
    }
    .plan {
        gap: 20px;
        
    }
}

@media (max-width: 480px) {
    .plans {
        width: 90%;
        max-width: 350px;
    }
    #planes_img img {
        border-radius: 15px;
    }
}

/* BOTONES (MANTENIDOS SIN CAMBIOS) */
.botones {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 70px;
    
}

button {
   
    background: linear-gradient(135deg, #f53636, #c62828);
    border-radius: 20px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 8px rgba(245, 54, 54, 0.3);
    position: relative;
    overflow: hidden;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(245, 54, 54, 0.4);
    background: linear-gradient(135deg, #c62828, #f53636);
}

button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(245, 54, 54, 0.4);
}

button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

button:hover::before {
    left: 100%;
}

button a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: 'Tactic Sans Black', sans-serif; /* Esta línea ya la tienes */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.gmaila a{
    padding-left: 100px;
}

.logows {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

button:hover .logows {
    transform: scale(1.1);
}

.haz {
    margin-left: 10px;
    letter-spacing: 1px;
    font-weight: bold;
    transition: all 0.3s ease;
   
}

button:hover .haz {
    letter-spacing: 1.2px;
}