:root {
    --navy: #091a3a;
    --navy2: #06142e;
    --gold: #f3b51b;
    --red: #e21e2b;
    --ink: #101b2d;
    --muted: #687286;
    --line: #e6e9ef;
    --soft: #f7f8fa;
    --white: #fff
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.scroll-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    z-index: 9999
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(14px);
    box-shadow: 0 7px 30px rgba(9, 26, 58, .07)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 220px
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy)
}

.main-nav a {
    position: relative
}

.main-nav a:not(.nav-cta):after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%
}

.nav-cta {
    background: var(--navy);
    color: #fff;
    padding: 11px 18px;
    border-radius: 4px
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy)
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px auto
}

.hero {
    padding: 170px 0 100px;
    min-height: 650px;
    background-image: url('../images/home_hero.png');
    position: relative;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: #000;
    top: 0;
    left: 0;
}

.hero-inner {
    position: relative;
    z-index: 1
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--navy);
    display: inline-flex;
    gap: 9px;
    align-items: center
}

.eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(243, 181, 27, .13)
}

h1,
h2,
h3,
h4 {
    font-family: Manrope, Arial, sans-serif;
    color: var(--navy)
}

.hero h1 {
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.04;
    letter-spacing: -.055em;
    max-width: 820px;
    margin: 22px 0
}

.hero h1 span,
h2 span {
    color: var(--gold)
}

.hero p {
    max-width: 760px;
    color: #5f6b7e;
    font-size: 18px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}

.btn {
    padding: 14px 21px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    gap: 15px;
    align-items: center;
    transition: .3s
}

.btn-primary {
    background: var(--navy);
    color: #fff
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px)
}

.btn-outline {
    border: 1px solid #ccd2db;
    color: var(--navy)
}

.btn-outline:hover {
    border-color: var(--navy);
    transform: translateY(-3px)
}

.page-hero {
    padding: 150px 0 80px;
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    right: -140px;
    top: -170px;
    background: rgba(243, 181, 27, .13);
    filter: blur(15px)
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -.05em;
    max-width: 850px;
    margin: 18px 0
}

.page-hero p {
    color: #bac5d6;
    max-width: 760px
}

.page-hero .eyebrow {
    color: #dfe5ee
}

.section {
    padding: 100px 0
}

.soft {
    background: var(--soft)
}

.dark {
    background: var(--navy);
    color: #fff
}

.section-heading {
    max-width: 780px;
    margin-bottom: 45px
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.section-heading h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
    margin-top: 12px
}

.section-heading p {
    color: #687487;
    margin-top: 16px
}

.dark h2 {
    color: #fff
}

.dark p {
    color: #b8c3d4
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 30px;
    transition: .35s
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(9, 26, 58, .1);
    border-color: rgba(243, 181, 27, .6)
}

.card h3 {
    font-size: 21px;
    line-height: 1.25;
    margin: 15px 0 9px
}

.card p {
    font-size: 13px;
    color: #687487
}

.icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #fff2ca;
    color: #a16f00;
    display: grid;
    place-items: center;
    font: bold 21px Manrope
}

.feature-box {
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    padding: 45px
}

.feature-box h2,
.feature-box h3 {
    color: #fff
}

.feature-box p {
    color: #bac5d4
}

.list {
    list-style: none;
    margin-top: 22px
}

.list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    color: #d6deea
}

.list li:before {
    content: "✓";
    color: var(--gold);
    font-weight: 900;
    margin-right: 10px
}

.stats {
    background: var(--navy);
    color: #fff
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .13);
    display: flex;
    gap: 15px;
    align-items: center
}

.stat strong {
    font: 800 27px Manrope;
    color: var(--gold)
}

.stat span {
    font-size: 11px;
    color: #bac5d6;
    line-height: 1.4
}

.course-card {
    min-height: 350px;
    position: relative
}

.course-card .number {
    position: absolute;
    right: 25px;
    top: 22px;
    font: 800 11px Manrope;
    color: #9ba5b5
}

.tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 20px
}

.tags span {
    font-size: 9px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 5px 9px;
    color: #707b8c;
    font-weight: 700
}

.course-card a {
    display: inline-block;
    margin-top: 25px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 900
}

.workflow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .16);
    margin-top: 45px
}

.workflow div {
    padding: 25px 14px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.workflow b {
    display: block;
    color: var(--gold);
    font-size: 10px;
    margin-bottom: 22px
}

.workflow span {
    font: 700 14px Manrope;
    display: block
}

.workflow small {
    color: #8997ac;
    font-size: 9px
}

.timeline>div {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

.timeline b {
    color: var(--gold);
    font: 800 11px Manrope;
    min-width: 30px
}

.timeline span {
    font-size: 13px;
    color: #6b7688
}

.timeline strong {
    color: var(--navy)
}

.roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.roles span {
    border: 1px solid #dfe3e9;
    border-radius: 100px;
    padding: 12px 18px;
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    transition: .3s
}

.roles span:hover {
    background: var(--navy);
    color: #fff
}

.faq details {
    border-top: 1px solid var(--line)
}

.faq details:last-child {
    border-bottom: 1px solid var(--line)
}

summary {
    list-style: none;
    padding: 22px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font: 800 14px Manrope;
    color: var(--navy)
}

summary::-webkit-details-marker {
    display: none
}

summary span {
    color: var(--gold);
    font-size: 20px
}

details p {
    font-size: 13px;
    color: #6c7788;
    padding: 0 40px 23px 0
}

.cta {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.cta h2 {
    color: #fff;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    letter-spacing: -.05em
}

.cta p {
    color: #bac5d6;
    max-width: 700px;
    margin: 18px auto
}

.footer {
    background: #06142e;
    color: #fff
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 45px;
    padding: 65px 0
}

.footer-brand img {
    width: 215px;
    background: #fff;
    padding: 10px;
    border-radius: 4px
}

.footer-brand p,
.footer-col a,
.footer-col span {
    font-size: 11px;
    color: #a5b1c4
}

.footer-brand p {
    margin-top: 14px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-col h4 {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 7px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: #708099
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: .75s
}

.reveal.show {
    opacity: 1;
    transform: none
}

@media(max-width:850px) {
    .container {
        width: min(100% - 28px, 700px)
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 14px;
        right: 14px;
        background: #fff;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 20px 45px rgba(9, 26, 58, .14);
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a {
        padding: 11px
    }

    .nav-cta {
        text-align: center;
        margin-top: 5px
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .workflow {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .footer-brand {
        grid-column: 1/-1
    }
}

@media(max-width:520px) {
    .brand img {
        width: 175px
    }

    .hero {
        padding-top: 135px
    }

    .section {
        padding: 75px 0
    }

    .grid-4,
    .stats-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column
    }

    .page-hero {
        padding-top: 135px
    }

    .workflow {
        grid-template-columns: 1fr 1fr
    }

    .card {
        padding: 24px
    }
}

/* =========================================
   MAESTRO HERO SLIDER
========================================= */

.maestro-hero-slider {
    position: relative;
    width: 100%;
    height: 780px;
    overflow: visible;
    background: #071a3a;
}


/* SLIDES */

.hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


/* IMAGE */

.hero-slide>img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(4, 19, 43, 0.92) 0%,
            rgba(4, 19, 43, 0.72) 35%,
            rgba(4, 19, 43, 0.28) 68%,
            rgba(4, 19, 43, 0.10) 100%);
}


/* CONTENT */

.hero-content {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-top: 40px;

    color: #fff;
}


.hero-tag {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #f5b719;

    margin-bottom: 20px;
}


.hero-tag::before {
    content: "";

    width: 32px;
    height: 2px;

    background: #f5b719;

    margin-right: 12px;
}


.hero-content h1 {
    max-width: 760px;

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 4.5vw, 76px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 800;

    color: #fff;
}


.hero-content h1 span {
    display: block;
    color: #f5b719;
}


.hero-content p {
    max-width: 650px;

    margin: 25px 0 0;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .82);
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 32px;
}


.hero-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 800;

    transition: all .3s ease;
}


.hero-btn.primary {
    background: #f5b719;

    color: #071a3a;
}


.hero-btn.primary:hover {
    background: #fff;

    transform: translateY(-3px);
}


.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, .5);

    color: #fff;

    background: rgba(255, 255, 255, .04);

    backdrop-filter: blur(8px);
}


.hero-btn.secondary:hover {
    background: #fff;

    color: #071a3a;

    transform: translateY(-3px);
}


.hero-btn span {
    font-size: 18px;
}


/* =========================================
   ARROWS
========================================= */

.hero-arrow {
    position: absolute;

    z-index: 10;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .3);

    background: rgba(7, 26, 58, .75);

    color: #fff;

    cursor: pointer;

    display: grid;
    place-items: center;

    transition: all .3s ease;

    backdrop-filter: blur(8px);
}


.hero-arrow span {
    font-size: 34px;

    line-height: 1;

    margin-top: -3px;
}


.hero-arrow:hover {
    background: #f5b719;

    color: #071a3a;

    border-color: #f5b719;

    transform:
        translateY(-50%) scale(1.08);
}


.hero-prev {
    left: 30px;
}


.hero-next {
    right: 30px;
}


/* =========================================
   DOTS
========================================= */

.hero-dots {
    position: absolute;

    z-index: 10;

    bottom: 125px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;
}


.hero-dot {
    width: 10px;
    height: 10px;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .65);

    cursor: pointer;

    padding: 0;

    transition: all .3s ease;
}


.hero-dot.active {
    width: 28px;

    border-radius: 20px;

    background: #f5b719;
}


/* =========================================
   FEATURE STRIP
========================================= */

.hero-feature-wrap {
    position: absolute;

    z-index: 20;

    left: 50%;

    bottom: -75px;

    transform: translateX(-50%);

    width: min(1180px, calc(100% - 40px));
}


.hero-features {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    background: rgba(255, 255, 255, .97);

    border-radius: 18px;

    padding: 22px;

    box-shadow:
        0 25px 70px rgba(7, 26, 58, .20);

    backdrop-filter: blur(12px);
}


.hero-feature {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 8px 22px;

    border-right:
        1px solid #e2e5eb;
}


.hero-feature:last-child {
    border-right: 0;
}


.feature-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #071a3a;

    color: #fff;

    font-size: 22px;
}


.feature-icon.gold {
    background: #f5b719;

    color: #071a3a;
}


.hero-feature strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    color: #071a3a;
}


.hero-feature span {
    display: block;

    margin-top: 2px;

    font-size: 11px;

    line-height: 1.3;

    color: #697487;
}


/* =========================================
   SLIDE ANIMATION
========================================= */

.hero-slide.active .hero-content {
    animation: heroContentUp .9s ease both;
}


@keyframes heroContentUp {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .maestro-hero-slider {
        height: 720px;
    }

    .hero-feature-wrap {
        bottom: -70px;
    }

    .hero-features {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 12px;
    }

    .hero-feature {
        border-right: 0;

        border-bottom:
            1px solid #e2e5eb;

        padding: 12px;
    }

    .hero-feature:nth-last-child(-n+2) {
        border-bottom: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .maestro-hero-slider {
        height: 720px;
    }


    .hero-slide>img {
        object-position: 65% center;
    }


    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(4, 19, 43, .90),
                rgba(4, 19, 43, .68));
    }


    .hero-content {
        justify-content: center;

        padding:
            30px 20px 100px;
    }


    .hero-content h1 {

        font-size:
            clamp(38px, 10vw, 54px);

        letter-spacing:
            -2px;
    }


    .hero-content p {

        font-size: 14px;

        max-width: 520px;

        margin-top: 18px;
    }


    .hero-buttons {
        margin-top: 25px;
    }


    .hero-btn {
        min-height: 48px;

        padding:
            0 17px;

        font-size: 11px;
    }


    .hero-arrow {

        width: 42px;
        height: 42px;

        top: auto;

        bottom: 135px;

        transform: none;
    }


    .hero-arrow:hover {
        transform: scale(1.05);
    }


    .hero-prev {
        left: 18px;
    }


    .hero-next {
        right: 18px;
    }


    .hero-dots {

        bottom: 155px;

        gap: 7px;
    }


    .hero-dot {

        width: 8px;
        height: 8px;
    }


    .hero-dot.active {
        width: 22px;
    }


    .hero-feature-wrap {

        width:
            calc(100% - 24px);

        bottom:
            -155px;
    }


    .hero-features {

        grid-template-columns:
            repeat(2, 1fr);

        padding: 12px;

        border-radius: 14px;

        gap: 0;
    }


    .hero-feature {

        padding:
            12px 8px;

        gap: 9px;
    }


    .feature-icon {

        flex: 0 0 38px;

        width: 38px;
        height: 38px;

        font-size: 16px;
    }


    .hero-feature strong {
        font-size: 10px;
    }


    .hero-feature span {
        font-size: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .maestro-hero-slider {
        height: 650px;
    }


    .hero-content {

        padding-left: 18px;

        padding-right: 18px;

        padding-bottom: 70px;
    }


    .hero-tag {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .hero-content h1 {

        font-size: 37px;

        line-height: 1.08;

        letter-spacing: -1.5px;
    }


    .hero-content p {

        font-size: 13px;

        line-height: 1.6;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-btn {
        width: auto;

        min-width: 160px;
    }


    .hero-arrow {

        bottom: 120px;
    }


    .hero-dots {

        bottom: 139px;
    }


    .hero-feature-wrap {

        bottom: -190px;
    }


    .hero-features {

        grid-template-columns: 1fr 1fr;

        padding: 8px;
    }


    .hero-feature {

        min-height: 62px;
    }


    .feature-icon {

        display: none;
    }

}

/* =========================================
   WHATSAPP FOOTER BUTTON
========================================= */

.footer-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    width: fit-content;

    color: #25D366 !important;

    font-weight: 800;

    transition: all .3s ease;
}

.footer-whatsapp:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;

    display: inline-grid;
    place-items: center;

    border-radius: 50%;

    background: #25D366;
    color: #fff;

    font-size: 15px;
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #fff;

    z-index: 9999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .20);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


/* Pulse */

.whatsapp-float::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 2px solid rgba(37, 211, 102, .35);

    animation: whatsappPulse 2s infinite;
}


@keyframes whatsappPulse {

    0% {
        transform: scale(.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.35);
        opacity: 0;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }

}


.whatsapp-float-icon {
    position: relative;

    z-index: 2;

    font-size: 27px;

    line-height: 1;
}


.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .25);
}


/* Tooltip */

.whatsapp-tooltip {
    position: absolute;

    right: 70px;

    top: 50%;

    transform:
        translateY(-50%) translateX(10px);

    white-space: nowrap;

    background: #071a3a;

    color: #fff;

    padding: 9px 14px;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 700;

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;
}


.whatsapp-tooltip::after {
    content: "";

    position: absolute;

    right: -6px;

    top: 50%;

    transform: translateY(-50%);

    border-width: 5px 0 5px 6px;

    border-style: solid;

    border-color:
        transparent transparent transparent #071a3a;
}


.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%) translateX(0);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .whatsapp-float {

        width: 52px;
        height: 52px;

        right: 17px;
        bottom: 17px;
    }

    .whatsapp-float-icon {
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}

.whatsapp-float-icon svg {
    width: 29px;
    height: 29px;
    display: block;
}

/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 95px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    background: #071a3a;
    color: #f5b719;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;
}

.back-to-top span {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #f5b719;
    color: #071a3a;
    transform: translateY(-4px);
}


/* Mobile */

@media (max-width: 600px) {

    .back-to-top {
        right: 17px;
        bottom: 82px;

        width: 44px;
        height: 44px;
    }

    .back-to-top span {
        font-size: 20px;
    }

}