/* ================================= */
/* RESET */
/* ================================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================= */
/* BODY */
/* ================================= */

body{
    font-family: Arial, Helvetica, sans-serif;
    background: #020617;
    overflow-x: hidden;
}

/* ================================= */
/* HERO */
/* ================================= */

.hero{
    position: relative;

    min-height: 100vh;

    padding: 30px 8%;

    background: url('img/bg.jpg');

    background-size: cover;

    background-position: center right;

    background-repeat: no-repeat;

    overflow: hidden;

    display: flex;
    flex-direction: column;
}

/* OVERLAY */

.overlay{
    position: absolute;
    inset: 0;

    background:
    radial-gradient(
        circle at right,
        rgba(59,130,246,0.15),
        transparent 35%
    );
}

.hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.45);

    z-index: 1;

}

.overlay{
    z-index: 1;
}

.navbar,
.hero-content{
    position: relative;
    z-index: 2;
}

/* ================================= */
/* NAVBAR */
/* ================================= */

.navbar{
    position: relative;
    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 80px;
}

/* LOGO */

.logo{
    font-size: 2.3rem;
    font-weight: bold;
    color: white;
}

.logo span{
    color: #facc15;
}

/* NAV */

nav{
    display: flex;
    gap: 35px;
}

nav a{
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover{
    color: #facc15;
}

/* NAV BTN */

.nav-btn{
    padding: 14px 30px;

    border-radius: 50px;

    background: linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    color: black;

    font-weight: bold;

    text-decoration: none;
}

/* ================================= */
/* HERO CONTENT */
/* ================================= */

.hero-content{
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

/* ================================= */
/* LEFT */
/* ================================= */

.hero-text{
    flex: 1;
}

/* TAG */

.hero-tag{
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(250,204,21,0.12);

    border: 1px solid rgba(250,204,21,0.2);

    color: #facc15;

    font-weight: bold;

    margin-bottom: 25px;
}

/* TITLE */

.hero-text h1{
    font-size: 4.8rem;

    color: white;

    margin-bottom: 10px;

    line-height: 0.95;

    font-weight: 900;
}

/* SUBTITLE */

.hero-text h2{
    font-size: 1.45rem;

    color: white;

    line-height: 1.5;

    max-width: 650px;

    margin-bottom: 22px;

    font-weight: 500;
}

/* TEXT */

.hero-text p{
    color: #cbd5e1;

    line-height: 1.7;

    font-size: 0.98rem;

    max-width: 560px;

    margin-bottom: 35px;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 20px;

    margin-bottom: 50px;
}

/* BTN */

.btn-primary,
.btn-secondary{
    padding: 18px 35px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s;
}

/* PRIMARY */

.btn-primary{
    background: linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    color: black;
}

/* SECONDARY */

.btn-secondary{
    border: 2px solid rgba(255,255,255,0.2);

    color: white;
}

/* HOVER */

.btn-primary:hover,
.btn-secondary:hover{
    transform: translateY(-5px);
}

/* ================================= */
/* STATS */
/* ================================= */

.hero-stats{
    display: flex;
    gap: 25px;

    flex-wrap: wrap;
}

/* BOX */

.stat-box{
    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    padding: 25px 35px;

    border-radius: 20px;
}

/* NUMBERS */

.stat-box h3{
    color: #facc15;

    font-size: 2rem;

    margin-bottom: 5px;
}

/* TEXT */

.stat-box span{
    color: #d1d5db;
}

/* FLOAT */

@keyframes float{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width: 991px){

    nav{
        display: none;
    }

    .nav-btn{
        display: none;
    }

    .hero-content{
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1{
        font-size: 4rem;
    }

    .hero-text h2{
        font-size: 1.4rem;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats{
        justify-content: center;
    }

}

@media(max-width:768px){
     
    .hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.50) 25%,
        rgba(0,0,0,.20) 50%,
        transparent 100%
    );

    z-index: 1;

     }
    .hero{

        background: url('img/bg-mobile.png');

        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;

        padding: 25px 6% 60px;

        min-height: 100vh;

    }

    .hero-content{

        flex-direction: column;

        text-align: center;

        gap: 30px;

    }

    .hero-text h1{

        font-size: 3.2rem;

        line-height: 1;

    }

    .hero-text h2{

        font-size: 1.15rem;

        line-height: 1.5;

    }

    .hero-text p{

        font-size: .95rem;

    }

    .hero-buttons{

        flex-direction: column;

        gap: 15px;

    }

    .btn-primary,
    .btn-secondary{

        width: 100%;

        text-align: center;

    }

    .hero-stats{

        display: grid;

        grid-template-columns: repeat(2,1fr);

        gap: 15px;

    }

    .stat-box{

        padding: 20px;

    }

}

/* ================================= */
/* OPORTUNIDAD DIGITAL */
/* ================================= */

.opportunity{
    padding: 120px 8%;

    background:
    linear-gradient(
        to bottom,
        #020617,
        #071029
    );
}

/* TITULO */

.opportunity-title{
    text-align: center;

    margin-bottom: 70px;
}

.opportunity-title h2{
    font-size: 2.8rem;

    color: white;

    margin-bottom: 18px;

    line-height: 1.1;

    font-weight: 800;
}

.opportunity-title h2 span{
    color: #3b82f6;
}

.opportunity-title p{
    color: #cbd5e1;

    max-width: 620px;

    margin: auto;

    line-height: 1.7;

    font-size: 0.98rem;
}

/* CONTENEDOR */

.opportunity-container{
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 30px;
}

/* CARD */

.op-card{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 40px 30px;

    border-radius: 30px;

    text-align: center;

    transition: 0.4s;

    position: relative;

    overflow: hidden;
}

/* EFECTO */

.op-card::before{
    content: '';

    position: absolute;

    width: 160px;
    height: 160px;

    background: rgba(59,130,246,0.08);

    border-radius: 50%;

    top: -70px;
    right: -70px;
}

/* HOVER */

.op-card:hover{
    transform: translateY(-10px);

    border-color: rgba(250,204,21,0.3);
}

/* ICON */

.op-icon{
    width: 75px;
    height: 75px;

    margin: auto auto 25px;

    border-radius: 50%;

    background:
    linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ICON I */

.op-icon i{
    font-size: 1.9rem;

    color: #020617;
}

/* TITLE */

.op-card h3{
    color: white;

    font-size: 1.2rem;

    margin-bottom: 12px;

    font-weight: 700;
}

/* TEXT */

.op-card p{
    color: #cbd5e1;

    line-height: 1.6;

    font-size: 0.94rem;
}

/* RESPONSIVE */

@media(max-width: 991px){

    .opportunity-container{
        grid-template-columns: repeat(2,1fr);
    }

    .opportunity-title h2{
        font-size: 2.8rem;
    }

}

@media(max-width: 600px){

    .opportunity-container{
        grid-template-columns: 1fr;
    }

    .opportunity-title h2{
        font-size: 2.2rem;
    }

}

/* ================================= */
/* BENEFITS */
/* ================================= */

.benefits{
    padding: 120px 8%;

    background: #071029;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

/* LEFT */

.benefits-image{
    flex: 1;

    position: relative;
}

/* LIVE */

.live-badge{
    position: absolute;

    top: 20px;
    left: 20px;

    background: rgba(0,0,0,0.7);

    color: white;

    padding: 12px 20px;

    border-radius: 50px;

    font-weight: bold;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* LIVE ICON */

.live-badge i{
    color: #22c55e;

    font-size: 0.8rem;
}

/* IMG */

.benefits-image img{
    width: 100%;

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

/* RIGHT */

.benefits-content{
    flex: 1;
}

/* TAG */

.benefits-tag{
    display: inline-block;

    padding: 12px 22px;

    border-radius: 50px;

    background: rgba(250,204,21,0.12);

    border: 1px solid rgba(250,204,21,0.2);

    color: #facc15;

    font-weight: bold;

    margin-bottom: 25px;
}

/* TITLE */

.benefits-content h2{
    color: white;

    font-size: 2.7rem;

    line-height: 1.1;

    margin-bottom: 20px;

    font-weight: 800;

    max-width: 550px;
}

/* PALABRA RESALTADA */

.benefits-content h2 span{
    color: #facc15;
}

/* TEXT */

.benefits-content p{
    color: #cbd5e1;

    line-height: 1.7;

    margin-bottom: 35px;

    font-size: 0.98rem;

    font-weight: 400;

    max-width: 520px;
}

/* ITEMS */

.benefits-items{
    display: flex;
    flex-direction: column;

    gap: 22px;
}

/* TITULOS DE LOS BOX */

.benefit-box h3{
    color: white;

    margin-bottom: 6px;

    font-size: 1rem;

    font-weight: 700;
}

/* TEXTOS DE LOS BOX */

.benefit-box span{
    color: #cbd5e1;

    line-height: 1.6;

    font-size: 0.92rem;
}

/* BOX */

.benefit-box{
    display: flex;
    align-items: center;

    gap: 18px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    padding: 22px;

    border-radius: 22px;
}

/* ICON */

.benefit-box i{
    min-width: 55px;
    width: 55px;
    height: 55px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    color: #020617;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.2rem;

    flex-shrink: 0;
}

/* TITLE */

.benefit-box h3{
    color: white;

    margin-bottom: 6px;

    font-size: 1rem;

    font-weight: 700;
}

/* TEXT */

.benefit-box span{
    color: #cbd5e1;

    line-height: 1.6;

    font-size: 0.92rem;
}

/* BTN */

.benefits-btn{
    display: inline-block;

    padding: 18px 35px;

    border-radius: 50px;

    background:
    linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    color: black;

    font-weight: bold;

    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */

.benefits-btn:hover{
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width: 991px){

    .benefits{
        flex-direction: column;
    }

    .benefits-content{
        text-align: center;
    }

    .benefits-content h2{
        font-size: 2.5rem;
    }

}

@media(max-width: 600px){

    .benefits-content h2{
        font-size: 2rem;
    }

    .benefit-box{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

}

/* ================================= */
/* PLANES */
/* ================================= */

.plans{
    padding: 120px 8%;

    background:
    linear-gradient(
        to bottom,
        #071029,
        #020617
    );
}

/* TITULO */

.plans-title{
    text-align: center;

    margin-bottom: 80px;
}

/* TAG */

.plans-tag{
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(250,204,21,0.12);

    border: 1px solid rgba(250,204,21,0.2);

    color: #facc15;

    font-weight: bold;

    margin-bottom: 25px;
}

/* H2 */

.plans-title h2{
    color: white;

    font-size: 2.7rem;

    line-height: 1.1;

    margin-bottom: 18px;

    font-weight: 800;
}

/* PALABRA RESALTADA */

.plans-title h2 span{
    color: #ffffff;
}

/* P */

.plans-title p{
    color: #cbd5e1;

    max-width: 620px;

    margin: auto;

    line-height: 1.7;

    font-size: 0.98rem;

    font-weight: 400;
}

/* CONTENEDOR */

.plans-container{
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 35px;
}

/* CARD */

.plan-card{
    position: relative;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 35px;

    padding: 38px 30px;

    transition: 0.4s;

    overflow: hidden;
}

/* EFECTO */

.plan-card::before{
    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(59,130,246,0.08);

    border-radius: 50%;

    top: -70px;
    right: -70px;
}

/* HOVER */

.plan-card:hover{
    transform: translateY(-10px);
}

/* DESTACADO */

.featured-plan{
    border: 2px solid #facc15;

    transform: scale(1.03);
}

/* POPULAR */

.popular{
    position: absolute;

    top: 25px;
    right: -40px;

    background: #facc15;

    color: black;

    padding: 10px 50px;

    font-size: 0.8rem;

    font-weight: bold;

    transform: rotate(45deg);
}

/* H3 */

.plan-card h3{
    color: white;

    font-size: 1.4rem;

    margin-bottom: 20px;

    font-weight: 700;
}

/* PRECIO */

.plan-price{
    font-size: 3rem;

    font-weight: 800;

    color: #3b82f6;

    margin-bottom: 28px;
}

/* SUBTITLE */

.plan-subtitle{
    color: #facc15;

    font-size: 0.9rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;

    text-transform: uppercase;
}

/* LISTA */

.plan-card ul{
    list-style: none;

    margin-bottom: 40px;
}

/* LI */

.plan-card ul li{
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #cbd5e1;

    font-size: 0.95rem;

    line-height: 1.5;
}

/* ICON */

.plan-card ul li i{
    color: #facc15;
}

/* BTN */

.plan-btn{
    display: inline-block;

    width: 100%;

    text-align: center;

    padding: 18px;

    border-radius: 50px;

    background:
    linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    color: black;

    font-weight: bold;

    text-decoration: none;

    transition: 0.3s;
}

/* BTN HOVER */

.plan-btn:hover{
    transform: scale(1.03);
}

/* RESPONSIVE */

@media(max-width: 991px){

    .plans-container{
        grid-template-columns: 1fr;
    }

    .featured-plan{
        transform: scale(1);
    }

    .plans-title h2{
        font-size: 2.8rem;
    }

}

@media(max-width: 600px){

    .plans-title h2{
        font-size: 2.2rem;
    }

}

/* ================================= */
/* CONTACT */
/* ================================= */

.contact{
    padding: 120px 8%;

    background: #020617;
}

/* TITLE */

.contact-title{
    text-align: center;

    margin-bottom: 70px;
}

/* TAG */

.contact-tag{
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(250,204,21,0.12);

    border: 1px solid rgba(250,204,21,0.2);

    color: #facc15;

    font-weight: bold;

    margin-bottom: 25px;
}

/* H2 */

.contact-title h2{
    color: white;

    font-size: 2.8rem;

    line-height: 1.1;

    margin-bottom: 18px;

    font-weight: 800;
}

/* PALABRA */

.contact-title h2 span{
    color: #facc15;
}

/* P */

.contact-title p{
    color: #cbd5e1;

    max-width: 620px;

    margin: auto;

    line-height: 1.7;

    font-size: 0.98rem;

    font-weight: 400;
}

/* CONTAINER */

.contact-container{
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 40px;
}

/* LEFT */

.contact-info{
    display: flex;
    flex-direction: column;

    gap: 25px;
}

/* CARD */

.contact-box{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 30px;

    padding: 30px;

    display: flex;
    align-items: center;

    gap: 20px;

    transition: 0.4s;
}

/* HOVER */

.contact-box:hover{
    transform: translateY(-8px);

    border-color: rgba(250,204,21,0.3);
}

/* ICON */

.contact-icon{
    width: 60px;
    height: 60px;

    border-radius: 20px;

    background:
    linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ICON I */

.contact-icon i{
    color: #020617;

   font-size: 1.4rem;
}

/* TEXT */

.contact-box h3{
    color: white;

    margin-bottom: 6px;

    font-size: 1rem;

    font-weight: 700;
}

.contact-box span{
    color: #cbd5e1;

    font-size: 0.95rem;

    line-height: 1.5;
}

/* QR */

.qr-box{
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 35px;

    padding: 40px;

    text-align: center;
}

/* H3 */

.qr-box h3{
    color: white;

    font-size: 1.5rem;

    margin-bottom: 25px;

    font-weight: 700;

    line-height: 1.2;
}

/* QR IMAGE */

.qr-image{
    background: white;

    padding: 20px;

    border-radius: 25px;

    margin-bottom: 30px;
}

/* IMG */

.qr-image img{
    width: 100%;
    max-width: 250px;
}

/* BTN */

.qr-btn{
    display: inline-block;

    width: 100%;

    padding: 18px;

    border-radius: 50px;

    background:
    linear-gradient(
        135deg,
        #facc15,
        #fde047
    );

    color: black;

    font-weight: bold;

    text-decoration: none;

    transition: 0.3s;
}

/* HOVER */

.qr-btn:hover{
    transform: scale(1.03);
}

/* RESPONSIVE */

@media(max-width: 991px){

    .contact-container{
        grid-template-columns: 1fr;
    }

    .contact-title h2{
        font-size: 2.8rem;
    }

}

@media(max-width: 600px){

    .contact-title h2{
        font-size: 2.2rem;
    }

    .contact-box{
        flex-direction: column;
        text-align: center;
    }

}

/* ================================= */
/* VIDEO VERTICAL */
/* ================================= */

.benefits-image{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-phone{
    width: 320px;
    height: 620px;
    border-radius: 35px;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.08);
    background: #000;
    box-shadow:
    0 0 40px rgba(255, 208, 0, 0.15),
    0 0 80px rgba(0,0,0,0.6);
    position: relative;
}

/* brillo */

.video-phone::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.15),
        transparent 30%
    );
    z-index: 2;
    pointer-events: none;
}

.video-phone video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* badge */

.live-badge{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;

    background: #000;
    color: white;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-badge i{
    color: #00ff66;
    font-size: 12px;
}

/* ================================= */
/* EXPERIENCE */
/* ================================= */

.experience{

    width: 100%;
    padding: 80px 8%;
    background: #020617;

}

.experience-grid{

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;

}

.exp-card{

    position: relative;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;

}

.exp-card img{

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;

}

.exp-card:hover img{

    transform: scale(1.08);

}

.exp-overlay{

    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.2)
    );

}

.exp-content{

    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 2;
    color: white;

}

.exp-content h3{

    font-size: 20px;
    margin-bottom: 8px;

}

.exp-content p{

    font-size: 14px;
    opacity: .8;
    max-width: 240px;

}

.exp-icon{

    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 18px;

}

.blue{
    background: #2563eb;
}

.orange{
    background: #f97316;
}

.red{
    background: #ef4444;
}

.green{
    background: #22c55e;
}

.purple{
    background: #9333ea;
}

.cyan{
    background: #06b6d4;
}

/* RESPONSIVE */

@media(max-width: 900px){

    .experience-grid{

        grid-template-columns: 1fr;

    }

}

.experience-title{

    text-align: left;
    margin-bottom: 40px;
    color: white;

}

.experience-title h2{

    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;

}

.experience-title span{

    color: #facc15;

}

.experience-title p{

    max-width: 650px;
    opacity: .7;
    line-height: 1.6;

}

/* ================================= */
/* PLATAFORMAS */
/* ================================= */

.brands{
    padding: 100px 0;
    background: #071029;
    overflow: hidden;
}

/* TITULO */

.brands-title{
    text-align: center;
    margin-bottom: 60px;
    padding: 0 8%;
}

.brands-title h2{
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.brands-title span{
    color: #facc15;
}

.brands-title p{
    color: #cbd5e1;
    max-width: 650px;
    margin: auto;
    line-height: 1.7;
    font-size: 1rem;
}

/* CONTENEDOR */

.brands-slider{
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* CARRUSEL */

.brands-track{
    display: flex;
    align-items: center;
    gap: 45px;
    width: max-content;
    animation: brandsMove 30s linear infinite;
}

/* LOGOS */

.brands-track img{
    width: 220px;
    height: 100px;

    object-fit: contain;

    opacity: .9;

    transition: all .3s ease;

    flex-shrink: 0;
}

.brands-track img:hover{
    opacity: 1;
    transform: scale(1.08);
}

/* ANIMACION */

@keyframes brandsMove{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}

/* TABLET */

@media(max-width:991px){

    .brands-title h2{
        font-size: 2.4rem;
    }

    .brands-track img{
        width: 180px;
        height: 80px;
    }

}

/* TELEFONO */

@media(max-width:768px){

    .brands{
        padding: 80px 0;
    }

    .brands-title{
        margin-bottom: 40px;
    }

    .brands-title h2{
        font-size: 2rem;
    }

    .brands-title p{
        font-size: .95rem;
    }

    .brands-track{
        gap: 25px;
    }

    .brands-track img{
        width: 140px;
        height: 65px;
    }

}

@media(max-width:480px){

    .brands-track img{
        width: 120px;
        height: 55px;
    }

}