/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

/* =========================
   VARIABLES
========================= */

:root {
    --primary: #9AB23D;
    --primary-dark: #7f9331;
    --dark: #0d0d0d;
    --gray: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

/* =========================
   GENERAL
========================= */

.container {
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}

.badge {
    display: inline-block;
    background: rgba(154, 178, 61, .15);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}

.btn i {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.btn-white {
    background: white;
    color: black;
}

.btn-white:hover {
    transform: translateY(-3px);
}

/* =========================
   HEADER
========================= */

/* =========================
   HEADER
========================= */

/*=====================================
HERO
======================================*/

.hero {

    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background-image:

        linear-gradient(90deg,
            rgba(0, 0, 0, .97) 0%,
            rgba(0, 0, 0, .95) 22%,
            rgba(0, 0, 0, .88) 35%,
            rgba(0, 0, 0, .55) 48%,
            rgba(0, 0, 0, .15) 63%,
            rgba(0, 0, 0, 0) 78%),

        url("../assets/hero/hero-bg.jpeg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}

.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .35));

}

.hero-overlay {

    display: none;

}

.hero .container {

    position: relative;

    z-index: 5;

}



/*=====================================
HEADER
======================================*/

.hero-header {

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    z-index: 100;

    padding: 18px 0;

}

.navbar {

    display: grid;

    grid-template-columns: 220px 1fr auto;

    align-items: center;

    gap: 40px;

}

.logo img {

    width: 170px;

}

.nav-links {

    display: flex;

    justify-content: center;

    gap: 42px;

    list-style: none;

    margin: 0;

    padding: 0;

}

.nav-links a {

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: .3s;

}

.nav-links a:hover {

    color: #98b73d;

}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 18px;

}

.btn-navbar {

    background: #98b73d;

    color: #fff;

    padding: 14px 28px;

    border-radius: 6px;

    font-size: 14px;

    font-weight: 700;

    transition: .3s;

}

.btn-navbar:hover {

    background: #89a633;

}

.whatsapp {

    width: 44px;

    height: 44px;

    border: 2px solid rgba(255, 255, 255, .8);

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 22px;

}

.menu-toggle {

    display: none;

}



/*=====================================
CONTENT
======================================*/

.hero-container {

    min-height: 100vh;

    display: flex;

    align-items: center;

}

.hero-content {

    width: 610px;

    padding-top: 95px;

}

.hero-badge {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #fff;

    font-size: 15px;

    font-weight: 600;

}

.hero-badge i {

    color: #98b73d;

}

.hero h1 {

    margin: 0;

    font-size: 55px;

    line-height: .92;

    font-weight: 900;

    text-transform: uppercase;

    color: #fff;

}

.hero h1 span {

    display: block;

    color: #98b73d;

}

.hero h3 {

    margin-top: 28px;

    margin-bottom: 8px;

    color: #fff;

    font-size: 30px;

    font-weight: 800;

}

.hero p {

    margin: 0;

    color: #98b73d;

    font-size: 25px;

    font-weight: 700;

}

/*=====================================
BENEFICIOS
======================================*/

.hero-benefits {

    display: flex;

    justify-content: space-between;

    gap: 25px;

    margin-top: 45px;

    margin-bottom: 45px;

}

.benefit {

    display: flex;

    align-items: center;

    gap: 12px;

    flex: 1;

}

.benefit .icon {

    width: 52px;

    height: 52px;

    border: 2px solid #98b73d;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-shrink: 0;

}

.benefit .icon i {

    color: #98b73d;

    font-size: 22px;

}

.benefit strong {

    display: block;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: .3px;

}

.benefit small {

    display: block;

    margin-top: 4px;

    color: #d0d0d0;

    font-size: 11px;

    line-height: 1.3;

}


/*=====================================
BOTONES
======================================*/

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-bottom: 38px;

}

.btn-primary {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #98b73d;

    color: #fff;

    padding: 18px 34px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 700;

    transition: .3s;

    box-shadow: 0 12px 25px rgba(152, 183, 61, .30);

}

.btn-primary:hover {

    transform: translateY(-3px);

    background: #89a633;

}

.btn-secondary {

    display: flex;

    justify-content: center;

    align-items: center;

    border: 2px solid rgba(255, 255, 255, .45);

    color: #fff;

    padding: 18px 34px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 700;

    transition: .3s;

}

.btn-secondary:hover {

    background: #fff;

    color: #000;

}


/*=====================================
FOOTER HERO
======================================*/

.hero-footer {

    display: flex;

    align-items: center;

    gap: 18px;

}


/*=====================================
AVATARS
======================================*/

.avatars {

    display: flex;

    align-items: center;

}

.avatars img {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    object-fit: cover;

    border: 3px solid #fff;

    margin-left: -12px;

    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);

}

.avatars img:first-child {

    margin-left: 0;

}


/*=====================================
RATING
======================================*/

.rating {

    display: flex;

    flex-direction: column;

    justify-content: center;

}

.stars {

    display: flex;

    gap: 3px;

    margin-bottom: 5px;

}

.stars i {

    color: #FFC107;

    font-size: 16px;

}

.rating span {

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.2;

}

.rating small {

    color: #d8d8d8;

    font-size: 13px;

    margin-top: 2px;

}


/*=====================================
EFECTOS
======================================*/

.hero-content {

    animation: fadeUp .9s ease;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at 25% 50%,

            rgba(0, 0, 0, .20),

            rgba(0, 0, 0, .55),

            rgba(0, 0, 0, .82));

    z-index: 1;

}

.hero-header {

    z-index: 30;

}

.hero-content {

    position: relative;

    z-index: 25;

}


/*=====================================
DETALLES
======================================*/

.hero h1 {

    text-shadow:

        0 5px 18px rgba(0, 0, 0, .55);

}

.hero h3 {

    text-shadow:

        0 2px 8px rgba(0, 0, 0, .4);

}

.hero p {

    text-shadow:

        0 2px 8px rgba(0, 0, 0, .4);

}

.hero-benefits {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding-top: 28px;

}

/*========================================
TABLET
========================================*/

@media (max-width:1200px) {

      .hero{

        background-position:80% center;

    }

    .navbar {

        grid-template-columns: 180px 1fr auto;
        gap: 25px;

    }

    .logo img {

        width: 145px;

    }

    .nav-links {

        gap: 22px;

    }

    .hero-content {

        width: 560px;

    }

    .hero h1 {

        font-size: 64px;

    }

    .hero h3 {

        font-size: 24px;

    }

    .hero p {

        font-size: 20px;

    }

    .hero-benefits {

        gap: 15px;

    }

}


/*========================================
992 PX
========================================*/

/*========================================
TABLET
========================================*/

@media (max-width:1200px) {

      .hero{

        background-position:80% center;

    }


    .navbar {
        grid-template-columns: 160px 1fr auto;
        gap: 20px;
    }

    .logo img {
        width: 145px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-content {
        width: 560px;
    }

    .hero h1 {
        font-size: 64px;
    }

}


/*========================================
MOBILE NAVBAR
========================================*/

@media (max-width:992px) {

     .hero{

        background-position:50% center;

    }


    .hero-header {
        padding: 15px 0;
    }

    .navbar {

        display: flex;
        justify-content: space-between;
        align-items: center;

        position: relative;

    }

    .logo img {
        width: 150px;
    }

    .menu-toggle {

        display: flex;

        justify-content: center;
        align-items: center;

        width: 46px;
        height: 46px;

        border: none;
        background: none;

        color: #fff;

        font-size: 30px;

        cursor: pointer;

        z-index: 1001;

    }

    .nav-actions {
        display: none;
    }

    .nav-links {

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        background: rgba(0, 0, 0, .97);

        backdrop-filter: blur(12px);

        overflow: hidden;

        max-height: 0;

        transition: max-height .35s ease;

        border-radius: 12px;

    }

    .nav-links.active {

        max-height: 500px;

    }

    .nav-links li {

        width: 100%;
        list-style: none;

    }

    .nav-links li a {

        display: block;

        padding: 18px;

        color: #fff;

        text-align: center;

        border-bottom: 1px solid rgba(255, 255, 255, .08);

    }

    .hero-container {

        padding-top: 150px;
        padding-bottom: 80px;

    }

    .hero-content {

        width: 100%;
        max-width: 620px;

    }

    .hero h1 {

        font-size: 56px;

    }

    .hero-benefits {

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;

    }

}


/*========================================
TABLET SMALL
========================================*/

@media(max-width:768px) {

    .hero {

        background-position: 74% center;

    }

    .hero-container {

        padding-top: 130px;

    }

    .hero-content {

        text-align: center;

    }

    .hero-badge {

        justify-content: center;

    }

    .hero h1 {

        font-size: 44px;

    }

    .hero h3 {

        font-size: 20px;

    }

    .hero p {

        font-size: 16px;

    }

    .hero-benefits {

        grid-template-columns: 1fr;

    }

    .benefit {

        justify-content: center;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-primary,
    .btn-secondary {

        width: 100%;

    }

    .hero-footer {

        flex-direction: column;

        justify-content: center;

    }

}


/*========================================
PHONE
========================================*/

@media(max-width:480px){

    .hero{

        background-position:40% center;
        min-height:auto;

    }

    .hero-container{

        padding-top:95px;
        padding-bottom:30px;

    }

    .hero-content{

        text-align:center;

    }

    .logo img{

        width:120px;

    }

    .menu-toggle{

        font-size:28px;

    }

    /* Badge */

    .hero-badge{

   
        font-size:11px;
       
    }

    .hero-badge br{
        display:none;
    }

    /* Título */

   
.hero h1 span {

        font-size:40px;
        

    }

    .hero h3{

        font-size:17px;


    }

    .hero p{

        font-size:14px;
 

    }

    /* Beneficios */

    .hero-benefits{

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:12px;

    margin:15px 0;

}

.benefit{

    display:flex;
    align-items:center;

    padding:10px;

    justify-content:flex-start;

}

    .benefit .icon{

        width:42px;
        height:42px;

    }

    .benefit strong{

        font-size:14px;

    }

    .benefit small{

        font-size:12px;

    }

    /* Botón */

    .hero-buttons{

        gap:10px;
        margin-bottom:18px;

    }

    .btn-primary,
    .btn-secondary{

        padding:14px;
        font-size:14px;

    }

    /* Footer */

    .hero-footer{

        margin-top:0;
        gap:12px;
        flex-direction:column;

    }

    .avatars img{

        width:38px;
        height:38px;

    }

    .rating{

        font-size:13px;

    }

    .rating small{

        display:block;
        margin-top:3px;

    }

}

/*====================================
BENEFITS
====================================*/

.benefits {
    background: #f7f5f0;
    padding: 70px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.benefits .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.benefits-title2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 60px;
    line-height: 1.2;
}

.benefits-title2 span {
    color: #8f9644;
}


/*====================================
SLIDER
====================================*/

.benefits-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.benefits-track {
    display: flex;
    transition: transform .8s ease;
}

.benefit-item {
    box-sizing: border-box;
    text-align: center;
}

.benefit-item i {
    display: block;
    font-size: 52px;
    color: #6d8d13;
    margin-bottom: 22px;
}

.benefit-item h3 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin-bottom: 14px;
}

.benefit-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


/*====================================
DESKTOP
====================================*/

@media (min-width:769px) {

    .benefits-track {

        display: grid;

        grid-template-columns: repeat(6, 1fr);

        gap: 0;

        transform: none !important;

    }

    .benefit-item {

        padding: 0 22px;

        position: relative;

    }

    .benefit-item:not(:last-child)::after {

        content: "";

        position: absolute;

        top: 10%;

        right: 0;

        width: 1px;

        height: 80%;

        background: #d8d8d8;

    }

    .benefits-dots {

        display: none;

    }

}


/*====================================
MOBILE
====================================*/

@media (max-width:768px) {

    .benefits {

        padding: 50px 20px;

    }

    .benefits-title2 {

        font-size: 28px;

        margin-bottom: 35px;

    }

    .benefits-slider {

        overflow: hidden;

        width: 100%;

    }

    .benefits-track {

        display: flex;

        width: 100%;

    }

    .benefit-item {

        flex: 0 0 100%;

        min-width: 100%;

        width: 100%;

        padding: 0;

        position: relative;

    }

    .benefit-item::after {

        display: none;

    }

    .benefit-item i {

        font-size: 60px;

        margin-bottom: 18px;

    }

    .benefit-item h3 {

        font-size: 20px;

        margin-bottom: 15px;

    }

    .benefit-item p {

        font-size: 16px;

        line-height: 1.6;

        max-width: 320px;

        margin: auto;

    }

    .benefits-dots {

        display: flex;

        justify-content: center;

        gap: 10px;

        margin-top: 35px;

    }

    .benefits-dots span {

        width: 10px;

        height: 10px;

        border-radius: 50%;

        background: #d0d0d0;

        cursor: pointer;

        transition: .3s;

    }

    .benefits-dots span.active {

        background: #8f9644;

        transform: scale(1.3);

    }

}


/*====================================
SMALL MOBILE
====================================*/

@media (max-width:480px) {

    .benefits {

        padding: 45px 15px;

    }

    .benefits-title2 {

        font-size: 24px;

        margin-bottom: 30px;

    }

    .benefit-item i {

        font-size: 50px;

    }

    .benefit-item h3 {

        font-size: 18px;

    }

    .benefit-item p {

        font-size: 15px;

        max-width: 260px;

    }

}

/*====================================
CTA BANNER
====================================*/

.cta-banner {

    background: #6d8d13;
    padding: 28px 0;

}

.cta-wrapper {

    max-width: 1250px;
    margin: auto;

    padding: 0 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

}

.cta-info {

    display: flex;
    align-items: center;
    gap: 25px;

}

.cta-icon {

    width: 82px;
    height: 82px;

    border-radius: 50%;

    background: #1f1f1f;

    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;

}

.cta-icon i {

    font-size: 40px;
    color: #ffffff;

}

.cta-small {

    display: block;

    color: #ffffff;

    font-size: 24px;

    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 4px;

}

.cta-text h2 {

    color: #d8ea36;

    font-size: 52px;

    line-height: 1;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 10px;

}

.cta-text p {

    color: #ffffff;

    font-size: 22px;

}

.cta-button {

    background: #ffffff;

    color: #587300;

    padding: 22px 55px;

    border-radius: 10px;

    font-size: 24px;

    font-weight: 800;

    text-decoration: none;

    display: flex;
    align-items: center;
    gap: 14px;

    transition: .35s;

    white-space: nowrap;

}

.cta-button i {

    color: #587300;

}

.cta-button:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);

}


/*====================================
TABLET
====================================*/

@media(max-width:992px) {

    .cta-wrapper {

        flex-direction: column;
        text-align: center;

    }

    .cta-info {

        flex-direction: column;

    }

    .cta-small {

        font-size: 20px;

    }

    .cta-text h2 {

        font-size: 42px;

    }

    .cta-text p {

        font-size: 18px;

    }

    .cta-button {

        font-size: 20px;
        padding: 18px 38px;

    }

}


/*====================================
MOBILE
====================================*/

@media(max-width:768px) {

    .cta-banner {

        padding: 35px 20px;

    }

    .cta-wrapper {

        padding: 0;

        gap: 30px;

    }

    .cta-icon {

        width: 75px;
        height: 75px;

    }

    .cta-icon i {

        font-size: 34px;

    }

    .cta-small {

        font-size: 17px;

    }

    .cta-text h2 {

        font-size: 34px;

    }

    .cta-text p {

        font-size: 16px;

    }

    .cta-button {

        width: 100%;

        justify-content: center;

        font-size: 18px;

        padding: 18px;

    }

}


/*====================================
SMALL MOBILE
====================================*/

@media(max-width:480px) {

    .cta-icon {

        width: 65px;
        height: 65px;

    }

    .cta-icon i {

        font-size: 28px;

    }

    .cta-small {

        font-size: 15px;

    }

    .cta-text h2 {

        font-size: 28px;

    }

    .cta-text p {

        font-size: 14px;

    }

    .cta-button {

        font-size: 16px;

    }

}


/*====================================
STEPS
====================================*/

.steps {

    padding: 80px 0;
    background: #fff;

}

.steps-wrapper {

    max-width: 1250px;
    margin: auto;
    padding: 0 20px;

}

.steps-title {

    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 70px;
    position: relative;

}

.steps-title::after {

    content: "";
    width: 70px;
    height: 4px;
    background: #8f9644;
    display: block;
    margin: 18px auto 0;
    border-radius: 50px;

}

.steps-grid {

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: flex-start;
    gap: 15px;

}

.step-item {

    position: relative;
    text-align: center;

}

.step-number {

    position: absolute;
    top: -12px;
    left: 35px;

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #8f9644;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 15px;
    font-weight: 700;

}

.step-icon {

    width: 95px;
    height: 95px;

    border-radius: 50%;

    background: #f8f8f8;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 auto 25px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);

}

.step-icon i {

    font-size: 42px;
    color: #111;

}

.step-item h3 {

    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;

}

.step-item p {

    font-size: 16px;
    color: #555;
    line-height: 1.7;

}

.step-arrow {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 95px;

}

.step-arrow i {

    font-size: 34px;
    color: #8f9644;

}

/*====================================
TABLET
====================================*/

@media(max-width:992px) {

    .steps-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 30px;

    }

    .step-arrow {

        display: none;

    }

    .step-item {

        background: #f8f8f8;
        padding: 30px 20px;
        border-radius: 14px;

    }

    .step-number {

        left: 18px;
        top: 18px;

    }

    .step-icon {

        width: 80px;
        height: 80px;

    }

    .step-icon i {

        font-size: 36px;

    }

    .step-item h3 {

        font-size: 20px;

    }

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px) {

    .steps {

        padding: 30px 0;

    }

    .steps-title {

        font-size: 30px;
        margin-bottom: 45px;

    }

    .steps-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 20px;

    }

    .step-item {

        padding: 25px 15px;

    }

    .step-icon {

        width: 70px;
        height: 70px;
        margin-bottom: 18px;

    }

    .step-icon i {

        font-size: 30px;

    }

    .step-item h3 {

        font-size: 17px;

    }

    .step-item p {

        font-size: 14px;

    }

}

/*====================================
SMALL MOBILE
====================================*/

@media(max-width:480px) {

    .steps-wrapper {

        padding: 0 15px;

    }

    .steps-title {

        font-size: 24px;

    }

    .steps-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 15px;

    }

    .step-item {

        padding: 20px 12px;

    }

    .step-icon {

        width: 60px;
        height: 60px;

    }

    .step-icon i {

        font-size: 26px;

    }

    .step-number {

        width: 28px;
        height: 28px;
        font-size: 13px;

    }

    .step-item h3 {

        font-size: 15px;

    }

    .step-item p {

        font-size: 13px;
        line-height: 1.5;

    }

}



/*====================================
LIVE TRAINING
====================================*/

.live-training {
    
    padding: 80px 0;
    background: #fff;
}

.live-wrapper {
    max-width: 1280px;
    margin: auto;
    padding: 0 25px;

    display: grid;
    grid-template-columns: 420px 1fr 340px;
    align-items: center;
    gap: 45px;
}

/*====================================
IMAGE
====================================*/

.live-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-image img {
    width: 100%;
    max-width: 410px;
    height: auto;
    display: block;
}

/*====================================
CONTENT
====================================*/

.live-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.live-tag {
    display: block;
    color: #7d9228;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.live-content h2 {
    font-size: 52px;
    line-height: 1.05;
    font-weight: 900;
    color: #111;
    margin-bottom: 22px;
}

.live-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/*====================================
PLACES
====================================*/

.places {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.place {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.place i {
    font-size: 34px;
    color: #111;
    margin-bottom: 10px;
}

.place span {
    font-size: 14px;
    color: #444;
}

/*====================================
CARD
====================================*/

.schedule-card {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 35px 28px;
}

.schedule-card h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #111;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.schedule-item i {
    font-size: 34px;
    width: 38px;
    color: #111;
}

.schedule-item strong {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: #111;
}

.schedule-item span {
    display: block;
    font-size: 15px;
    color: #666;
}

.schedule-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 60px;

    margin-top: 12px;

    background: #78951f;
    color: #fff;
    text-decoration: none;

    border-radius: 10px;

    font-size: 17px;
    font-weight: 800;

    transition: .3s;
}

.schedule-btn:hover {
    background: #667f18;
}

/*====================================
TABLET
====================================*/

@media(max-width:992px) {

    .live-training {
        padding: 70px 20px;
    }

    .live-wrapper {

        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;

    }

    .live-image {
        order: 1;
    }

    .live-content {
        order: 2;
    }

    .schedule-card {

        order: 3;

        width: 100%;
        max-width: 500px;

        margin: auto;

    }

    .live-image img {

        max-width: 430px;

    }

    .live-content h2 {

        font-size: 44px;

    }

    .live-content p {

        max-width: 620px;

        margin: 0 auto 30px;

    }

    .places {

        justify-content: center;

    }

}

/*====================================
MOBILE
====================================*/

@media(max-width:768px) {

    .live-training {
        padding: 50px 18px;
    }

    .live-wrapper {

        display: flex;
        flex-direction: column;
        gap: 28px;

    }

    .live-image img {

        width: 100%;
        max-width: 260px;

    }

    .live-tag {

        font-size: 15px;
        margin-bottom: 10px;

    }

    .live-content {

        text-align: center;

    }

    .live-content h2 {

        font-size: 31px;
        margin-bottom: 15px;

    }

    .live-content p {

        font-size: 15px;
        margin-bottom: 20px;

    }

    .places {

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;

    }

    .place i {

        font-size: 28px;

    }

    .place span {

        font-size: 13px;

    }

    .schedule-card {

        width: 100%;

        padding: 22px;

        border-radius: 15px;

    }

    .schedule-card h3 {

        font-size: 20px;
        margin-bottom: 22px;

    }

    .schedule-item {

        margin-bottom: 18px;

        gap: 15px;

    }

    .schedule-item i {

        font-size: 28px;
        width: 32px;

    }

    .schedule-item strong {

        font-size: 22px;

    }

    .schedule-item span {

        font-size: 13px;

    }

    .schedule-btn {

        height: 52px;
        font-size: 15px;

    }

}

/*====================================
SMALL MOBILE
====================================*/

@media(max-width:480px) {

    .live-training {
        padding: 10px 0px;
    }

    .live-image img {

        max-width: 210px;

    }

    .live-tag {

        font-size: 13px;

    }

    .live-content h2 {

        font-size: 26px;

    }

    .live-content p {

        font-size: 14px;

    }

    .places {

        grid-template-columns: repeat(5, 1fr);
        gap: 10px;

    }

    .place i {

        font-size: 23px;
        margin-bottom: 6px;

    }

    .place span {

        font-size: 11px;

    }

    .schedule-card {

        padding: 18px;

    }

    .schedule-card h3 {

        font-size: 18px;

    }

    .schedule-item {

        gap: 10px;

    }

    .schedule-item i {

        font-size: 24px;
        width: 24px;

    }

    .schedule-item strong {

        font-size: 20px;

    }

    .schedule-item span {

        font-size: 12px;

    }

    .schedule-btn {

        height: 48px;
        font-size: 14px;

    }

}




/*====================================
PLANS
====================================*/
.schedule-days {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: black;
  font-size: 25px;
  font-weight: bold;
}

.schedule-days i {
  color: #facc15; /* Amarillo */
  font-size: 1rem;
}
.plans {
    padding: 50px 20px;
    background: #f8f7f2;
}

.plans-wrapper {
    max-width: 1400px;
    width: 95%;
    margin: auto;
}

.plans-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin-bottom: 45px;
    text-transform: uppercase;
}

/*====================================
GRID
====================================*/

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/*====================================
CARD
====================================*/

.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid #d8d5c8;
    border-radius: 16px;
    padding: 35px;
    transition: .35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

.featured {
    border: 2px solid #819329;
}

.ultra {
    border: 2px solid #f5b301;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #819329;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.ultra-badge{
    background:#f5b301;
    color:#111;
}

/*====================================
TOP
====================================*/

.plan-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.plan-icon {
    width: 55px;
    height: 55px;
    border: 2px solid #819329;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.plan-icon i {
    color: #819329;
    font-size: 24px;
}

.ultra .plan-icon{
    border-color:#f5b301;
}

.ultra .plan-icon i{
    color:#f5b301;
}

.plan-top h3 {
    font-size: 34px;
    color: #5d7818;
    font-weight: 900;
    margin: 0;
}

.price {
    font-size: 36px;
    font-weight: 900;
    color: #111;
}

.price span {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.plan-goal{
    display:block;
    margin-top:8px;
    color:#ff9800;
    font-weight:700;
    font-size:15px;
}

/*====================================
LIST
====================================*/

.plan-card ul {
    list-style: none;
    margin: 28px 0;
    padding: 0;
    flex: 1;
}

.plan-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.plan-card li i {
    color: #819329;
    margin-top: 3px;
}

.ultra li i{
    color:#f5b301;
}

/*====================================
BUTTONS
====================================*/

.plan-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 58px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: .3s;
    margin-top: auto;
}

.basic {
    border: 2px solid #819329;
    color: #819329;
}

.basic:hover {
    background: #819329;
    color: #fff;
}

.pro {
    background: #819329;
    color: #fff;
}

.pro:hover {
    background: #68791c;
}

.ultra-btn{
    background:#f5b301;
    color:#111;
}

.ultra-btn:hover{
    background:#d99d00;
}

/*====================================
TABLET Y MÓVIL
====================================*/

@media (max-width:992px){

    .plans{
        padding:40px 15px;
    }

    .plans-title{
        font-size:32px;
    }

    .plans-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .plan-card{
        padding:25px;
    }

    .plan-top h3{
        font-size:28px;
    }

    .price{
        font-size:30px;
    }

    .plan-card li{
        font-size:15px;
    }

    .plan-btn{
        height:50px;
        font-size:16px;
    }

}

/*====================================
CELULAR
====================================*/

@media (max-width:576px){

    .plans{
        padding:30px 12px;
    }

    .plans-wrapper{
        width:100%;
    }

    .plans-title{
        font-size:26px;
        margin-bottom:25px;
    }

    .plan-card{
        padding:20px;
    }

    .plan-top{
        flex-direction:column;
        text-align:center;
        gap:12px;
    }

    .plan-icon{
        width:48px;
        height:48px;
    }

    .plan-icon i{
        font-size:20px;
    }

    .plan-top h3{
        font-size:24px;
    }

    .price{
        font-size:28px;
    }

    .price span{
        display:block;
        font-size:14px;
    }

    .plan-card li{
        font-size:14px;
    }

    .plan-btn{
        height:48px;
        font-size:15px;
    }

}




/*=============================
    OFERTA
=============================*/

.launch-offer {

    background: #090909;

    border: 1px solid rgba(255, 255, 255, .08);



    padding: 20px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;

}

/*=============================
    TEXTO
=============================*/

.offer-left {

    min-width: 250px;

}

.offer-top {

    display: block;

    color: #fff;

    font-size: 13px;

    letter-spacing: 1px;

    font-weight: 700;

    margin-bottom: 5px;

}

.offer-left h2 {

    margin: 0;

    line-height: 1;

}

.offer-left h2 span {

    font-size: 56px;

    color: #B8D640;

    font-weight: 900;

}

.offer-left p {

    margin-top: 8px;

    color: #fff;

    font-size: 15px;

    line-height: 1.4;

    opacity: .95;

}

/*=============================
    CONTADOR
=============================*/

.countdown {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;

    justify-content: center;

}

.time-box {

    width: 88px;

    height: 88px;

    border-radius: 12px;

    border: 1px solid rgba(255, 255, 255, .08);

    background: #111;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}

.number {

    font-size: 38px;

    color: #fff;

    font-weight: 800;

    line-height: 1;

}

.label {

    margin-top: 8px;

    color: #9b9b9b;

    font-size: 11px;

    letter-spacing: 1px;

}

/*=============================
    BOTONES
=============================*/

.offer-actions {

    display: flex;

    flex-direction: column;

    gap: 12px;

    min-width: 260px;

}

.btn-primary {

    height: 52px;

    background: #B8D640;

    color: #111;

    text-decoration: none;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 800;

    transition: .3s;

}

.btn-primary:hover {

    transform: translateY(-2px);

}

.btn-whatsapp {

    height: 52px;

    background: #111;

    border: 1px solid rgba(255, 255, 255, .12);

    color: #fff;

    text-decoration: none;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-weight: 700;

    transition: .3s;

}

.btn-whatsapp svg {

    width: 22px;

    height: 22px;

}

.btn-whatsapp:hover {

    background: #1c1c1c;

}

/*=============================
    TABLET
=============================*/

@media(max-width:1000px) {

    .launch-offer {

        justify-content: center;

        text-align: center;

    }

    .offer-actions {

        width: 100%;

        max-width: 450px;

    }

}

/*=============================
    MOBILE
=============================*/

@media(max-width:768px) {

    .launch-offer {

        padding: 25px 18px;

    }

    .offer-left {

        width: 100%;

    }

    .offer-left h2 span {

        font-size: 44px;

    }

    .countdown {

        width: 100%;

    }

    .time-box {

        width: 70px;

        height: 70px;

    }

    .number {

        font-size: 28px;

    }

    .label {

        font-size: 10px;

    }

    .offer-actions {

        width: 100%;

    }

    .btn-primary,
    .btn-whatsapp {

        width: 100%;

    }

}

/*=============================
    CELULARES PEQUEÑOS
=============================*/

@media(max-width:480px) {

    .time-box {

        width: 64px;

        height: 64px;

    }

    .number {

        font-size: 24px;

    }

    .offer-left h2 span {

        font-size: 36px;

    }

    .offer-left p {

        font-size: 13px;

    }

}

.results-section {

    padding: 90px 0;

    background: #f5f5f2;

}

.results-title {

    text-align: center;

    font-size: 2.5rem;

    font-weight: 900;

    margin-bottom: 50px;

}

.results-slider {

    overflow: hidden;

    position: relative;

}

.results-track {

    display: flex;

    transition: transform .7s ease;

}

.result-item {

    flex: 0 0 calc(100% / 3);

    display: flex;

    align-items: center;

    background: white;

    border-radius: 14px;

    overflow: hidden;

    padding: 15px;

    box-sizing: border-box;

}

.result-photo {

    width: 170px;

    flex-shrink: 0;

}

.result-photo img {

    width: 100%;

    display: block;

    border-radius: 10px;

}

.result-content {

    padding-left: 20px;

}

.result-text {

    font-size: 15px;

    line-height: 1.7;

    color: #444;

    margin-bottom: 15px;

}

.result-content h4 {

    font-size: 20px;

    margin: 0;

    font-weight: 800;

}

.result-content span {

    color: #8fa331;

    font-weight: 700;

}

.results-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 30px;

}

.results-dots span {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #bbb;

    cursor: pointer;

    transition: .3s;

}

.results-dots span.active {

    background: #91a83b;

    width: 28px;

    border-radius: 30px;

}

@media(max-width:991px) {

    .result-item {

        flex: 0 0 50%;

    }

}

@media(max-width:768px) {

    .result-item {

        flex: 0 0 100%;

    }

    .result-photo {

        width: 120px;

    }

    .result-content {

        padding-left: 15px;

    }

    .results-title {

        font-size: 2rem;

    }

}

@media(max-width:480px) {

    .result-item {

        flex-direction: column;

        text-align: center;

    }

    .result-photo {

        width: 180px;

    }

    .result-content {

        padding: 20px 0 0;

    }

}


/* ===================================
   FOOTER PREMIUM RESPONSIVE
=================================== */

.footer {
    background: #050505;
    color: #fff;
    padding-top: 80px;
    overflow: hidden;
}

.footer-container {

    width: 90%;
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns:
        320px 1fr 280px;

    gap: 60px;

    align-items: start;

    padding-bottom: 60px;

}

/* ===================================
   BRAND
=================================== */

.footer-brand {

    display: flex;
    flex-direction: column;

}

.footer-logo {

    display: flex;
    align-items: center;
    gap: 15px;

}

.footer-logo i {

    font-size: 2.6rem;
    color: var(--primary);

}

.footer-logo h2 {

    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;

}

.footer-logo span {

    display: block;
    margin-top: 4px;

    color: #9c9c9c;

    font-size: .75rem;
    letter-spacing: 2px;

}

.footer-brand p {

    margin: 22px 0;

    color: #bfbfbf;

    font-size: .95rem;
    line-height: 1.7;

}

/* ===================================
   SOCIAL
=================================== */

.social-links {

    display: flex;
    gap: 12px;
    flex-wrap: wrap;

}

.social-links a {

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111;

    color: #fff;

    transition: .3s;

}

.social-links a:hover {

    background: var(--primary);

    transform: translateY(-4px);

}

/* ===================================
   LINKS
=================================== */

.footer-links {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

}

.footer-column h4 {

    margin-bottom: 15px;

    font-size: 1rem;
    font-weight: 800;

}

.footer-column ul {

    list-style: none;
    padding: 0;
    margin: 0;

}

.footer-column li {

    margin-bottom: 10px;

}

.footer-column a {

    color: #c7c7c7;

    font-size: .93rem;

    transition: .3s;

}

.footer-column a:hover {

    color: var(--primary);

    padding-left: 5px;

}

/* ===================================
   CTA
=================================== */

.footer-cta {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

}

.footer-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;
    padding: 0 28px;

    background: var(--primary);
    color: #fff;

    border-radius: 10px;

    font-weight: 700;

    transition: .3s;

}

.footer-btn:hover {

    background: var(--primary-dark);
    transform: translateY(-3px);

}

.footer-slogan {

    margin-top: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 700;

}

.footer-slogan i {

    color: var(--primary);
    font-size: 1.2rem;

}

/* ===================================
   COPYRIGHT
=================================== */

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    text-align: center;

    padding: 22px;

    color: #9b9b9b;
    font-size: .9rem;

}

/* ===================================
   LAPTOP
=================================== */

@media (max-width:1200px) {

    .footer-container {

        grid-template-columns: 1fr;
        gap: 45px;

    }

    .footer-brand {

        align-items: center;
        text-align: center;

    }

    .footer-links {

        grid-template-columns: repeat(4, 1fr);

    }

    .footer-column {

        text-align: center;

    }

    .footer-cta {

        align-items: center;
        text-align: center;

    }

}

/* ===================================
   TABLET
=================================== */

@media (max-width:992px) {

    .footer {

        padding-top: 60px;

    }

    .footer-container {

        width: 92%;
        gap: 35px;

    }

    .footer-links {

        grid-template-columns: repeat(2, 1fr);
        gap: 30px;

    }

    .footer-column {

        text-align: left;

    }

    .footer-btn {

        max-width: 320px;
        width: 100%;

    }

}

/* ===================================
   MOBILE
=================================== */

@media (max-width:768px) {

    .footer {

        padding-top: 45px;

    }

    .footer-container {

        width: 92%;
        gap: 28px;
        padding-bottom: 35px;

    }

    .footer-brand {

        align-items: center;
        text-align: center;

    }

    .footer-logo {

        justify-content: center;
        gap: 12px;

    }

    .footer-logo h2 {

        font-size: 1.7rem;

    }

    .footer-brand p {

        margin: 15px 0;

        max-width: 420px;

        font-size: .9rem;
        line-height: 1.6;

    }

    .social-links {

        justify-content: center;
        gap: 10px;

    }

    .social-links a {

        width: 40px;
        height: 40px;

    }

    /* AQUÍ ESTÁ EL CAMBIO IMPORTANTE */
    /* Se mantienen dos columnas para reducir la altura */

    .footer-links {

        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;

    }

    .footer-column {

        text-align: left;

    }

    .footer-column h4 {

        margin-bottom: 10px;
        font-size: .95rem;

    }

    .footer-column li {

        margin-bottom: 6px;

    }

    .footer-column a {

        font-size: .87rem;

    }

    .footer-cta {

        align-items: center;
        text-align: center;

    }

    .footer-btn {

        width: 100%;
        max-width: 280px;
        min-height: 50px;
        font-size: .9rem;

    }

    .footer-slogan {

        justify-content: center;

        margin-top: 15px;

        font-size: .85rem;

        gap: 8px;

    }

}

/* ===================================
   SMALL MOBILE
=================================== */

@media (max-width:480px) {

    .footer {

        padding-top: 35px;

    }

    .footer-container {

        gap: 22px;

    }

    .footer-logo {

        flex-direction: row;
        justify-content: center;

    }

    .footer-logo i {

        font-size: 2rem;

    }

    .footer-logo h2 {

        font-size: 1.45rem;

    }

    .footer-logo span {

        font-size: .65rem;

    }

    .footer-brand p {

        margin: 12px 0;

        font-size: .84rem;

    }

    .social-links {

        gap: 8px;

    }

    .social-links a {

        width: 36px;
        height: 36px;
        font-size: .9rem;

    }

    /* Sigue en 2 columnas para no alargar el footer */

    .footer-links {

        grid-template-columns: repeat(2, 1fr);
        gap: 16px 10px;

    }

    .footer-column h4 {

        margin-bottom: 8px;
        font-size: .9rem;

    }

    .footer-column li {

        margin-bottom: 5px;

    }

    .footer-column a {

        font-size: .8rem;

    }

    .footer-btn {

        width: 100%;
        min-height: 46px;

        font-size: .82rem;

    }

    .footer-slogan {

        font-size: .78rem;

    }

    .footer-bottom {

        padding: 16px;

        font-size: .75rem;
        line-height: 1.5;

    }

}

.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

@media (max-width:768px) {
    .footer-logo-img {
        height: 60px;
    }
}

@media (max-width:480px) {
    .footer-logo-img {
        height: 50px;
    }
}









.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;
    color: #fff;

    font-size: 2rem;
    text-decoration: none;

    z-index: 9999;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.35),
        0 0 0 10px rgba(37, 211, 102, 0.08);

    transition: all .3s ease;

    animation: whatsappPulse 2s infinite;
}

.whatsapp:hover {
    transform: translateY(-5px) scale(1.08);

    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.45),
        0 0 0 14px rgba(37, 211, 102, 0.12);
}

.whatsapp i {
    line-height: 1;
}

/* Efecto pulso */
@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 10px 25px rgba(37, 211, 102, 0.35),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow:
            0 10px 25px rgba(37, 211, 102, 0.35),
            0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 10px 25px rgba(37, 211, 102, 0.35),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Tooltip */
.whatsapp::before {
    content: "¡Escríbenos!";
    position: absolute;
    right: 80px;

    background: #111;
    color: white;

    padding: 10px 14px;
    border-radius: 10px;

    font-size: .85rem;
    font-weight: 600;

    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.whatsapp:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Tablet */
@media (max-width: 768px) {

    .whatsapp {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;

        right: 20px;
        bottom: 20px;
    }

    .whatsapp::before {
        display: none;
    }
}

/* Móvil pequeño */
@media (max-width: 480px) {

    .whatsapp {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;

        right: 15px;
        bottom: 15px;
    }
}