body {
    font-family: 'Outfit', sans-serif !important;
    background: linear-gradient(135deg, #F8FAFC, #EEF4FF);
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: 'Outfit', sans-serif;
}

.logo {
    width: 200px;
    margin-top: 10px;
}

/* MENU PRINCIPAL */
.menu-principal {
    padding: 15px 0;
    position: absolute;
    z-index: 9;
    width: 100%;
    transition: .3s ease;
}

.menu-principal.sticky {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    transition: .3s ease;
    z-index: 9;
    background: rgb(0 0 0 / 45%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.menu-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-desktop>li {
    position: relative;
}

.menu-desktop a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    padding: 15px 0;
    transition: .3s;
}

.menu-desktop a:hover {
    color: #007bff;
}

/* SETA AUTOMÁTICA */
.menu-item-has-children>a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: .3s;
}

.menu-item-has-children:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item-has-children:hover>a::after {
    transform: rotate(-135deg);
}

/* SUBMENU */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;
    z-index: 999;
}

/* ABRIR SUBMENU */
.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* LINKS DO SUBMENU */
.sub-menu li {
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #444;
    font-weight: 500;
}

.sub-menu a:hover {
    background: #f5f7fa;
    color: #007bff;
}

.pesquisar-drone {
    width: 90%;
    padding: 10px;
    margin-top: 4px;
    border-radius: 50px;
    border: solid 1px #ccc;
}

.pesquisa-icone {
    position: absolute;
    background: #29abe2;
    padding: 7px 11px;
    border-radius: 50px;
    color: white;
    float: right;
    margin: 8px 0 0 -42px;
    display: inline;
}

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #222;
    margin: 6px auto;
    transition: .3s;
}


/* =========================================================
   REDES SOCIAIS - GODRONES
========================================================= */

.gd-social-section {

    padding: 90px 0;

    background:
        radial-gradient(circle at top left,
            rgba(37, 99, 235, .14),
            transparent 35%),
        #0f172a;

}


/* =========================================================
   CABEÇALHO
========================================================= */

.gd-social-header {

    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;

}

.gd-social-eyebrow {

    display: block;

    margin-bottom: 12px;

    color: #60a5fa;

    font-size: .7rem;

    font-weight: 700;

    letter-spacing: 1.8px;

}

.gd-social-header h2 {

    margin: 0 0 15px;

    color: #ffffff;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 700;

    line-height: 1.15;

}

.gd-social-header p {

    max-width: 580px;

    margin: 0 auto;

    color: #94a3b8;

    font-size: .95rem;

    line-height: 1.7;

}


/* =========================================================
   GRID
========================================================= */

.gd-social-grid {

    display: grid;

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

    gap: 18px;

}


/* =========================================================
   CARD
========================================================= */

.gd-social-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    min-height: 120px;

    padding: 24px;

    overflow: hidden;

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

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

    border-radius: 18px;

    color: #ffffff;

    text-decoration: none;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}

.gd-social-card:hover {

    transform:
        translateY(-6px);

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

    border-color:
        rgba(255, 255, 255, .14);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .22);

}


/* linha decorativa */

.gd-social-card::before {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #2563eb;

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .3s ease;

}

.gd-social-card:hover::before {

    transform:
        scaleX(1);

}


/* =========================================================
   ÍCONE
========================================================= */

.gd-social-icon {

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 14px;

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

    font-size: 1.45rem;

    transition:
        transform .3s ease;

}

.gd-social-card:hover .gd-social-icon {

    transform:
        scale(1.08);

}


/* CORES */

.gd-social-icon.youtube {

    color: #ff0033;

}

.gd-social-icon.instagram {

    color: #e1306c;

}

.gd-social-icon.tiktok {

    color: #ffffff;

}

.gd-social-icon.facebook {

    color: #ffffff;

}


/* =========================================================
   TEXTO
========================================================= */

.gd-social-content {

    min-width: 0;

}

.gd-social-content span {

    display: block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: .95rem;

    font-weight: 700;

}

.gd-social-content strong {

    display: block;

    color: #94a3b8;

    font-size: .75rem;

    font-weight: 500;

    line-height: 1.4;

}


/* =========================================================
   SETA
========================================================= */

.gd-social-arrow {

    margin-left: auto;

    color: #64748b;

    font-size: .9rem;

    transition:
        transform .3s ease,
        color .3s ease;

}

.gd-social-card:hover .gd-social-arrow {

    color: #ffffff;

    transform:
        translate(3px, -3px);

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:991px) {

    .gd-social-grid {

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

    }

}


@media(max-width:575px) {

    .gd-social-section {

        padding: 65px 0;

    }

    .gd-social-grid {

        grid-template-columns: 1fr;

    }

    .gd-social-header {

        margin-bottom: 35px;

    }

    .gd-social-card {

        min-height: 100px;

    }

}








































































































/*#################### MOBILE ####################*/
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
        float: right;
    }

    .menu-desktop {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 90vw;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 90px 0 30px;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
        transition: .35s ease;
        z-index: 9999;
    }

    .menu-desktop.active {
        right: 0;
    }

    .menu-desktop>li {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }

    .menu-desktop>li>a {
        display: flex;
        justify-content: space-between;
        align-items: center;

        width: 100%;

        padding: 18px 25px;
    }


    /* SUBMENUS */

    .menu-desktop .sub-menu {
        position: static;

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;

        width: 100%;

        background: #f8f9fb;

        box-shadow: none;
        border-radius: 0;

        padding: 0;
    }

    .menu-desktop .sub-menu.active {
        display: block;
    }

    .menu-desktop .sub-menu a {
        padding: 14px 40px;
        font-size: 14px;
    }


    /* SETA */

    .menu-item-has-children>a::after {
        margin-left: auto;
    }

}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-mobile-header {
    display: none;
}



/* =========================================================
   CURSO ONLINE - GODRONES
========================================================= */

.gd-course-section {

    padding: 80px 0;

}


/* =========================================================
   BOX PRINCIPAL
========================================================= */

.gd-course-box {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 360px;

    align-items: center;

    gap: 70px;

    padding: 55px;

    overflow: hidden;

    background:
        radial-gradient(circle at 10% 10%,
            rgba(37, 99, 235, .22),
            transparent 35%),
        linear-gradient(135deg,
            #111c30 0%,
            #0f172a 55%,
            #0b1220 100%);

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

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, .12);

}


/* =========================================================
   CONTEÚDO
========================================================= */

.gd-course-content {

    position: relative;

    z-index: 2;

    max-width: 680px;

}


/* BADGE */

.gd-course-badge {

    width: max-content;

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    padding: 8px 12px;

    background:
        rgba(37, 99, 235, .15);

    border:
        1px solid rgba(96, 165, 250, .18);

    border-radius: 100px;

    color: #60a5fa;

    font-size: .68rem;

    font-weight: 700;

    letter-spacing: 1.3px;

}


/* TÍTULO */

.gd-course-content h2 {

    max-width: 650px;

    margin: 0 0 20px;

    color: #ffffff;

    font-family: 'Outfit', sans-serif;

    font-size:
        clamp(2.2rem, 4vw, 3.4rem);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1px;

}

.gd-course-content h2 span {

    color: #60a5fa;

}


/* DESCRIÇÃO */

.gd-course-description {

    max-width: 650px;

    margin: 0 0 30px;

    color: #94a3b8;

    font-size: .95rem;

    line-height: 1.75;

}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.gd-course-benefits {

    display: grid;

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

    gap: 14px 25px;

}

.gd-course-benefits>div {

    display: flex;

    align-items: center;

    gap: 9px;

    color: #cbd5e1;

    font-size: .85rem;

}

.gd-course-benefits i {

    color: #22c55e;

    font-size: .9rem;

}


/* =========================================================
   CARD DA OFERTA
========================================================= */

.gd-course-offer {

    position: relative;

    z-index: 2;

    padding: 30px;

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

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

    border-radius: 22px;

    backdrop-filter:
        blur(15px);

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

}


/* LABEL */

.gd-course-offer-label {

    display: block;

    margin-bottom: 15px;

    color: #94a3b8;

    font-size: .63rem;

    font-weight: 700;

    letter-spacing: 1.5px;
    text-align: center;

}


/* =========================================================
   PREÇO
========================================================= */

.gd-course-price {

    display: flex;

    align-items: flex-start;

    margin-bottom: 22px;

    color: #ffffff;
    justify-content: center;

}

.gd-course-currency {

    margin-top: 13px;

    margin-right: 5px;

    color: #94a3b8;

    font-size: 1rem;

    font-weight: 600;

}

.gd-course-price>strong {

    font-family: 'Outfit', sans-serif;

    font-size: 5.5rem;

    font-weight: 700;

    line-height: .9;

    letter-spacing: -3px;

}

.gd-course-price>div {

    display: flex;

    flex-direction: column;

    margin-top: 7px;

}

.gd-course-price>div>span {

    color: #ffffff;

    font-size: 2rem;

    font-weight: 700;
    margin-left: 5px;

}

.gd-course-price small {

    margin-top: 4px;

    color: #ffffff;

    font-size: .75rem;

}


/* =========================================================
   ACESSO VITALÍCIO
========================================================= */

.gd-course-lifetime {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    padding: 15px;

    background:
        rgba(37, 99, 235, .10);

    border:
        1px solid rgba(96, 165, 250, .12);

    border-radius: 12px;
    justify-content: center;

}

.gd-course-lifetime>i {

    color: #60a5fa;

    font-size: 1.55rem;

}

.gd-course-lifetime strong {

    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: .8rem;

}

.gd-course-lifetime span {

    display: block;

    color: #64748b;

    font-size: .85rem;

}


/* =========================================================
   BOTÃO
========================================================= */

.gd-course-button {

    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: #2563eb;

    border-radius: 12px;

    color: #ffffff;

    font-size: .85rem;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.gd-course-button:hover {

    background: #1d4ed8;

    color: #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 30px rgba(37, 99, 235, .30);

}

.gd-course-button i {

    transition:
        transform .25s ease;

}

.gd-course-button:hover i {

    transform:
        translate(3px, -3px);

}


/* =========================================================
   TEXTO ABAIXO DO BOTÃO
========================================================= */

.gd-course-secure {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin-top: 12px;

    color: #90a3bd;

    font-size: .8rem;

}

.gd-course-secure i {

    color: #64748b;

}


/* =========================================================
   DECORAÇÃO
========================================================= */

.gd-course-decoration {

    position: absolute;

    width: 450px;
    height: 450px;

    left: -270px;
    bottom: -300px;

    border-radius: 50%;

    border:
        80px solid rgba(37, 99, 235, .035);

    pointer-events: none;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:991px) {

    .gd-course-box {

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 45px;

    }

    .gd-course-offer {

        max-width: 500px;

    }

}


@media(max-width:767px) {

    .gd-course-section {

        padding: 60px 0;

    }

    .gd-course-box {

        padding: 35px;

        border-radius: 22px;

    }

    .gd-course-benefits {

        grid-template-columns: 1fr;

    }

}


@media(max-width:575px) {

    .gd-course-box {

        padding: 28px 22px;

    }

    .gd-course-content h2 {

        font-size: 2.15rem;

    }

    .gd-course-offer {

        padding: 25px;

    }

    .gd-course-price>strong {

        font-size: 4rem;

    }

}

/* =========================================================
   NEWSLETTER - GODRONES
========================================================= */

.gd-newsletter-section {

    padding: 90px 0;



}


/* =========================================================
   CONTAINER PRINCIPAL
========================================================= */

.gd-newsletter-box {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr) minmax(420px, 520px);

    align-items: center;

    gap: 70px;

    padding: 55px;

    overflow: hidden;

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

    border-radius: 26px;

    background:
        radial-gradient(circle at top left,
            rgba(37, 99, 235, .20),
            transparent 40%),
        linear-gradient(135deg,
            #111c30,
            #0f172a);

}


/* detalhe decorativo */

.gd-newsletter-box::after {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(37, 99, 235, .08);

    pointer-events: none;

}


/* =========================================================
   CONTEÚDO
========================================================= */

.gd-newsletter-content {

    display: flex;

    align-items: flex-start;

    gap: 22px;

}

.gd-newsletter-icon {

    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

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

    border-radius: 16px;

    background:
        rgba(37, 99, 235, .16);

    border:
        1px solid rgba(96, 165, 250, .16);

    color: #60a5fa;

    font-size: 1.45rem;

}

.gd-newsletter-eyebrow {

    display: block;

    margin-bottom: 10px;

    color: #60a5fa;

    font-size: .68rem;

    font-weight: 700;

    letter-spacing: 1.7px;

}

.gd-newsletter-content h2 {

    max-width: 540px;

    margin: 0 0 14px;

    color: #fff;

    font-family: 'Outfit', sans-serif;

    font-size: clamp(2rem, 3vw, 2.7rem);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -.5px;

}

.gd-newsletter-content p {

    max-width: 580px;

    margin: 0;

    color: #94a3b8;

    font-size: .93rem;

    line-height: 1.7;

}


/* =========================================================
   FORMULÁRIO
========================================================= */

.gd-newsletter-form-area {

    position: relative;

    z-index: 2;

}

.gd-newsletter-form {

    width: 100%;

}

.gd-newsletter-field {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 7px;

    background: #fff;

    border-radius: 15px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18);

    transition:
        box-shadow .25s ease,
        transform .25s ease;

}

.gd-newsletter-field:focus-within {

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, .18),
        0 20px 45px rgba(0, 0, 0, .20);

}

.gd-newsletter-field>i {

    margin-left: 10px;

    color: #94a3b8;

    font-size: 1rem;

}


/* INPUT */

.gd-newsletter-field input {

    width: 100%;

    min-width: 0;

    height: 48px;

    padding: 0 5px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #0f172a;

    font-family: 'Inter', sans-serif;

    font-size: .9rem;

}

.gd-newsletter-field input::placeholder {

    color: #94a3b8;

}


/* =========================================================
   BOTÃO
========================================================= */

.gd-newsletter-field button {

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 0 20px;

    border: 0;

    border-radius: 10px;

    background: #2563eb;

    color: #fff;

    font-family: 'Inter', sans-serif;

    font-size: .8rem;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.gd-newsletter-field button:hover {

    background: #1d4ed8;

    transform: translateY(-1px);

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

}

.gd-newsletter-field button i {

    transition: transform .2s ease;

}

.gd-newsletter-field button:hover i {

    transform: translateX(3px);

}


/* =========================================================
   PRIVACIDADE
========================================================= */

.gd-newsletter-privacy {

    display: flex;

    align-items: center;

    gap: 7px;

    margin: 12px 0 0;

    color: #64748b;

    font-size: .7rem;

}

.gd-newsletter-privacy i {

    color: #64748b;

}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:991px) {

    .gd-newsletter-box {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 45px;

    }

}


@media(max-width:767px) {

    .gd-newsletter-section {

        padding: 65px 0;

    }

    .gd-newsletter-box {

        padding: 35px;

        border-radius: 20px;

    }

    .gd-newsletter-content {

        flex-direction: column;

    }

}


@media(max-width:575px) {

    .gd-newsletter-box {

        padding: 28px;

    }

    .gd-newsletter-content h2 {

        font-size: 2rem;

    }

    .gd-newsletter-field {

        flex-wrap: wrap;

        padding: 9px;

    }

    .gd-newsletter-field>i {

        margin-left: 8px;

    }

    .gd-newsletter-field input {

        width: calc(100% - 40px);

    }

    .gd-newsletter-field button {

        width: 100%;

        margin-top: 3px;

    }

}

@media(max-width:991px) {
    .menu-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        border-bottom: 1px solid #eee;
        margin-bottom: 10px;
    }

    .menu-mobile-logo {
        width: 150px;
        height: auto;
    }

    .menu-close {
        border: none;
        background: none;
        font-size: 24px;
        cursor: pointer;
        padding: 0;
        color: #222;
    }
}

.gd-course-sidebar-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at top right,
            rgba(37, 99, 235, .22),
            transparent 42%),
        linear-gradient(145deg,
            #111c30,
            #0f172a);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    color: #fff;
    margin-bottom: 50px;
}


/* detalhe decorativo */

.gd-course-sidebar-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -110px;

    border-radius: 50%;

    background:
        rgba(37, 99, 235, .07);

    pointer-events: none;

}


/* badge */

.gd-header-badge {
    display: flex;
    justify-content: center;
}

.gd-course-sidebar-badge {
    position: relative;
    z-index: 2;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 7px 10px;
    border-radius: 100px;
    background: rgba(37, 99, 235, .15);
    border: 1px solid rgba(96, 165, 250, .18);
    color: #60a5fa;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* título */

.gd-course-sidebar-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    line-height: 1.2;
    text-align: center;
}


/* descrição */

.gd-course-sidebar-card>p {
    position: relative;
    z-index: 2;
    margin: 0 0 20px;
    color: #94a3b8;
    font-size: .82rem;
    line-height: 1.6;
    text-align: center;
}


/* benefícios */

.gd-course-sidebar-features {

    position: relative;

    z-index: 2;

    display: flex;
    justify-content: center;

    gap: 8px;

    margin-bottom: 24px;

}

.gd-course-sidebar-features span {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #cbd5e1;

    font-size: .75rem;

}

.gd-course-sidebar-features i {

    color: #22c55e;

    font-size: .75rem;

}


/* preço */

.gd-course-sidebar-price {

    position: relative;

    z-index: 2;

    margin-bottom: 22px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, .08);

}

.gd-course-sidebar-price>small {
    display: block;
    color: #64748b;
    text-align: center;
    font-size: 1rem;
}

.gd-course-sidebar-price>div {

    display: flex;
    align-items: flex-start;
    margin: 6px 0 4px;
    justify-content: center;
}

.gd-course-sidebar-price>div>span:first-child {
    margin-top: 10px;
    margin-right: 4px;
    color: #94a3b8;
    font-size: 1rem;
}

.gd-course-sidebar-price strong {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    line-height: .85;
    letter-spacing: -2px;
}

.gd-price-cents {
    margin-top: 3px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 5px;
}


/* botão */

.gd-course-sidebar-button {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

}

.gd-course-sidebar-button:hover {

    background: #1d4ed8;

    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(37, 99, 235, .28);

}

.gd-course-sidebar-button i {

    transition: transform .2s ease;

}

.gd-course-sidebar-button:hover i {

    transform: translate(2px, -2px);

}

/*Código para o slider*/


.swiper-ban {
    height: 75vh;
}

.swiper-slide {
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.swiper-slide h2,
.swiper-slide h4 {
    color: #ffffff;
    width: 100%;
    display: block;
    text-align: center;
    padding: 0 15% 0 15%;
}

.swiper-slide h2 {
    margin-top: 15%;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.swiper-slide h3 {
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.guia-prev {
    left: 10px !important;
}

.guia-next {
    right: 10px !important;
}

.guiaSwiper {
    padding-bottom: 50px !important;
}

.ads {
    padding: 50px 0 50px 0;
}

.ads img {
    max-width: 100%;
}

.fabricantes-section {
    padding: 40px 0;
}

.container-setas {
    position: relative;
    top: 20px;
}

.fabricantesSwiper {
    position: relative;
}

.fabricante-btn {

    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    color: #111827;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    transition: .3s;
}

.fabricante-btn:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: #FFF;

}

.fabricantes-prev,
.fabricantes-next {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .12);
}

.fabricantes-prev {
    right: 55px;
}

.fabricantes-next {
    right: 0;
}

.fabricantes-prev:hover,
.fabricantes-next:hover {
    background: #2563EB;
    color: #FFF;
}


/*Fabricantes div*/
.fabricantes {
    margin-top: 50px;
}

.fabricantes-section h2 {
    font-weight: 600;
}

/*Estilização dos botões*/
.botao-vazado-branco {
    border: solid 1px #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
}

.botao-vazado-branco:hover {
    background: #ffffff;
    color: #333333;
}

.botao-vazado-cinza-quadrado {
    border: solid 1px #ccc;
    display: block;
    color: #333;
    padding: 15px 30px;
    border-radius: 5px;
    margin-top: 20px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.botao-vazado-cinza-quadrado:hover {
    background: #29abe2;
    transition: 0.3s;
    color: #ffffff;
    border: solid 1px #29abe2;
}

.botao-azul-fill {
    background: #29abe2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    border: none;
    transition: 0.3s;
    float: right;
}

.botao-azul-fill:hover {
    background: #e22955;
    transition: 0.3s;
    color: #ffffff;
}

.barra-de-titulos {
    background: radial-gradient(circle at top right,
            rgba(37, 99, 235, .22),
            transparent 42%),
        linear-gradient(145deg,
            #111c30,
            #0f172a);
    padding: 120px 0 50px 0;
    margin-bottom: 60px;
}

.conteudo-titulo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.conteudo-titulo h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.breadcrumb li a {
    display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #fff;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li i {
    display: inline-block;
    color: #ffffff;
    margin-top: 7px;

}

.botao-like {
    color: #ff5353 !important;
    font-size: 2rem;
    position: absolute;
    right: 40px;
    top: 27px;
}

.topo-drone-single {
    position: relative;
}

.topo-drone-single h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.topo-drone-single h6 {
    text-transform: uppercase;
    font-weight: 600;

}

.topo-drone-single a {
    color: #29abe2;
    text-decoration: none;
}

.topo-drone-single a:hover {
    text-decoration: underline;
}

.topo-drone-single>i {
    color: rgb(255, 187, 0);
    cursor: pointer;
}

.imagem-destaque-drone img {
    mix-blend-mode: darken;
}

.lista-atributos {
    margin-top: 20px;
}

.lista-atributos ul {
    padding: 0 !important;
}

.lista-atributos li {
    display: inline-flex;
    width: calc(30% - 1px);
    border: solid 1px #ccc;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    margin: 1%;
    transition: 0.3s;
}

.lista-atributos ul li:hover {
    background: linear-gradient(135deg, #28ace2, #29d7e2);
    transition: 0.3s;
}

.lista-atributos ul li:hover p,
.lista-atributos ul li:hover h3,
.lista-atributos ul li:hover i {
    color: #ffffff;
}

.lista-atributos li>i {
    font-size: 2rem;
    padding: 0;
    margin: 0;
}

.lista-atributos p {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    color: #29abe2;
}

.imagem-destaque-drone {
    margin-bottom: 30px;
}

.catalogo {}

.conteudo-catalogo {
    position: relative;
    border: solid 1px #dddddd;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
    background: #ffffff;
}

.conteudo-catalogo:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 20%);
    transition: 0.3s;
    scale: 1.05;
}

.conteudo-catalogo img {
    width: 100%;
}

.conteudo-catalogo h3 {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.conteudo-catalogo ul {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
}

.conteudo-catalogo ul li {
    border-right: solid 1px #dddddd;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
    margin: 0 0 10px 0;
}

.conteudo-catalogo button {
    width: 100%;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0;
    transition: 0.3s;
    background: #29abe2;
    color: #ffffff;
}

.conteudo-catalogo button:hover {
    background: #e22955;
    transition: 0.3s;
}

.conteudo-catalogo span {
    font-size: 0.75rem;
    color: #333333
}

.conteudo-catalogo-link {
    text-decoration: none;
    color: #333333;
}

.fabricantes-lateral-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    place-items: center;
}

.fabricantes-lateral-grid img {
    border: solid 1px #eee;
    border-radius: 10px;
    width: 100%;
}

.fabricantes-lateral-grid a {
    transition: 0.3s;
    border-radius: 10px;
}

.separador50 {
    width: 100%;
    height: 50px;
    display: block;
}

.fabricantes-lateral-grid a:hover {
    scale: 1.1;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .09);
}


.onde-comprar {

    margin: 60px 0;

    background: #FFF;

    border-radius: 20px;

    padding: 35px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

}

.comprar-header {

    margin-bottom: 30px;

}

.comprar-tag {

    display: inline-block;

    padding: 6px 14px;

    border-radius: 30px;

    background: #EFF6FF;

    color: #2563EB;

    font-size: .75rem;

    font-weight: 700;

    letter-spacing: 1px;

}

.comprar-header h2 {

    margin: 15px 0 10px;

    font-size: 2rem;

}

.comprar-header p {

    color: #64748B;

}

.comprar-lista {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.loja {

    display: grid;

    grid-template-columns:

        2fr 1fr 1fr 180px;

    align-items: center;

    gap: 20px;

    padding: 18px 25px;

    border: 1px solid #E2E8F0;

    border-radius: 16px;

    transition: .3s;

}

.loja:hover {

    border-color: #2563EB;

    transform: translateY(-2px);

}

.loja-info {

    display: flex;

    align-items: center;

    gap: 18px;

}

.loja-info img {

    width: 46px;

}

.loja-info strong {

    display: block;

    font-size: 1rem;

}

.loja-info small {

    color: #64748B;

}

.preco span {

    font-size: 1.5rem;

    font-weight: 700;

    color: #16A34A;

}

.vantagem {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: max-content;

    padding: 8px 16px;

    border-radius: 30px;

    background: #F1F5F9;

    font-size: .85rem;

    font-weight: 600;

}

.btn-comprar {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 48px;

    background: #2563EB;

    color: #FFF;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.btn-comprar:hover {

    background: #1D4ED8;

    color: #FFF;

}

article.conteudo-post {
    margin-bottom: 50px;
}

article figure img {
    margin-bottom: 0px;
    width: 100%;
    border-radius: 10px;
}

.catalogo-drone-lateral {}

.conteudo-catalogo-lateral {}

.titulo-coluna-lateral {
    margin: 0 0 30px 0;
    font-weight: 700;
}

.conteudo-catalogo-lateral img {
    width: 100px;
    float: left;
    margin-right: 30px;
    mix-blend-mode: darken;

}

.conteudo-catalogo-lateral a {
    border-bottom: solid 1px #ccc;
    padding: 10px 10px 30px 10px;
    text-decoration: none;
    color: #333333;
    display: block;


}

.conteudo-catalogo-lateral a:hover {
    background: #ffffff;
    transition: 0.25s;
    border-bottom: solid 1px #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    scale: 1.1;
}

.conteudo-catalogo-lateral a:hover img {
    mix-blend-mode: darken;

}

.conteudo-catalogo-lateral h5 {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 3px;
    padding-top: 11px;
}

.conteudo-catalogo-lateral ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.conteudo-catalogo-lateral ul li {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding-right: 20px;
    margin: 0 0 3px 0;
}

.conteudo-catalogo-lateral ul li:hover {
    background: #ffffff;
}

.conteudo-catalogo-lateral ul li i {
    font-size: 1.2rem;
    color: #333333;
}

.conteudo-catalogo-lateral ul li span {
    font-size: 1rem;
    color: #333333
}

.rate-lateral span {
    font-size: 1rem;
    color: #333333;
    margin-right: 5px;
    font-weight: 600;
}


.rate {
    position: absolute;
    right: 10px;
    top: 3px;
}

.rate i,
.rate-lateral i {
    color: rgb(255, 187, 0);
    font-size: 0.875rem;
}

.catalogo-drone {
    width: 20% !important;
    margin-bottom: 30px;
}

.destaque {
    background: #236683;
    color: #ffffff;
    padding: 5px 20px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px 0 5px 0;
}


.gd-news-section {
    padding: 80px 0;
}

.gd-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gd-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.gd-view-all {
    text-decoration: none;
    font-weight: 600;
}

.gd-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.gd-news-featured {
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.gd-news-image {
    display: block;
}

.gd-news-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.gd-news-content {
    padding: 30px;
}

.gd-category {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.gd-news-content h3 {
    margin-bottom: 15px;
}

.gd-news-content h3 a {
    text-decoration: none;
    color: #222;
}

.gd-news-content p {
    color: #666;
    margin-bottom: 20px;
}

.gd-date {
    color: #999;
    font-size: .9rem;
}

.gd-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gd-news-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    transition: .3s;
}

.gd-news-card:hover {
    transform: translateY(-3px);
}

.gd-news-card img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.gd-news-card h4 {
    margin: 8px 0 0;
    font-size: 1rem;
    line-height: 1.4;
}

.gd-news-card a {
    text-decoration: none;
    color: #222;
}



































































/* Responsivo */

@media(max-width:1199px) {
    .loja {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .loja-info {
        justify-content: center;
    }

    .vantagem {
        margin: auto;
    }

}

@media(max-width:991px) {
    .gd-news-grid {
        grid-template-columns: 1fr;
    }

    .gd-news-image img {
        height: 300px;
    }



}

@media(max-width:576px) {

    .gd-news-card {
        flex-direction: column;
    }

    .gd-news-card img {
        width: 100%;
        height: 180px;
    }

}

@media (max-width:768px) {
    .redes-sociais {
        flex-direction: column;
    }

    .share {
        justify-content: center;
        width: 100%;
    }
}




.gd-videos {
    padding: 80px 0;
}

.gd-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.gd-section-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.gd-view-all {
    text-decoration: none;
    font-weight: 600;
}

.gd-videos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.gd-video-featured {
    overflow: hidden;
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.gd-video-featured a {
    text-decoration: none;
    color: #111;
}

.gd-video-thumb {
    position: relative;
}

.gd-video-thumb img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.gd-play-icon {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90px;
    height: 90px;

    border-radius: 50%;

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

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

    font-size: 40px;

    transition: .3s;
}

.gd-video-featured:hover .gd-play-icon {
    transform:
        translate(-50%, -50%) scale(1.1);
}

.gd-video-content {
    padding: 30px;
}

.gd-video-category {
    font-size: .8rem;
    font-weight: 700;

    letter-spacing: 1px;
}

.gd-video-content h3 {
    margin: 15px 0;
    line-height: 1.4;
}

.gd-video-content p {
    color: #666;
}

.gd-video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gd-video-item {
    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, .05);

    transition: .3s;
}

.gd-video-item:hover {
    transform: translateY(-3px);
}

.gd-video-item a {
    display: flex;

    gap: 15px;

    text-decoration: none;
    color: #111;

    padding: 15px;
}

.gd-video-item img {
    width: 140px;
    height: 90px;

    object-fit: cover;

    border-radius: 10px;
}

.gd-video-item span {
    font-size: .75rem;
    font-weight: 700;

    color: #777;
}

.gd-video-item h4 {
    font-size: 1rem;
    line-height: 1.4;

    margin-top: 6px;
}

.gd-footer {
    background: #0F172A;
    color: #fff;
    padding: 70px 0 25px;
}

.gd-footer h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.gd-footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
}

.gd-footer-brand p {
    color: #CBD5E1;
    line-height: 1.8;
}

.gd-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gd-footer-links li {
    margin-bottom: 12px;
}

.gd-footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: .3s;
}

.gd-footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.gd-social {
    display: flex;
    gap: 15px;
}

.gd-social a {
    width: 45px;
    height: 45px;

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

    border-radius: 50%;

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

    color: #fff;

    text-decoration: none;

    transition: .3s;
}

.gd-social a:hover {
    transform: translateY(-4px);
    background: #2563EB;
}

.gd-social i {
    font-size: 1.2rem;
}

.gd-newsletter {
    display: flex;
    margin-top: 20px;
}

.gd-newsletter input {
    flex: 1;

    height: 50px;

    border: none;
    outline: none;

    padding: 0 15px;

    border-radius: 10px 0 0 10px;
}

.gd-newsletter button {
    border: none;

    padding: 0 25px;

    background: #2563EB;

    color: #fff;

    border-radius: 0 10px 10px 0;

    transition: .3s;
}

.gd-newsletter button:hover {
    background: #1D4ED8;
}

.gd-footer-bottom {
    margin-top: 50px;
    padding-top: 25px;

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

    text-align: center;
}

.gd-footer-bottom p {
    margin: 0;
    color: #94A3B8;
}

.guia-iniciante {
    padding: 90px 0;
    background: #F8FAFC;
}

.secao-topo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.secao-tag {
    display: inline-block;
    margin-bottom: 10px;

    font-size: .75rem;
    font-weight: 700;

    color: #2563EB;
    letter-spacing: 2px;
}

.secao-topo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.secao-topo p {
    color: #64748B;
    max-width: 650px;
}

.btn-tutoriais {
    text-decoration: none;
    font-weight: 600;
}

.card-guia {
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .3s;
}

.card-guia:hover {
    transform: translateY(-5px);
}

.card-guia a {
    text-decoration: none;
    color: #111827;
}

.thumb-video {
    position: relative;
}

.thumb-video img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.duracao {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, .85);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: .8rem;
}

.conteudo-guia {
    padding: 20px;
}

.conteudo-guia h3 {
    font-size: 1rem;
    line-height: 1.5;
    min-height: 60px;
    color: #333;
    text-shadow: none;
    font-weight: 700;
}

.meta-video {
    margin-top: 15px;
    color: #64748B;
    font-size: .9rem;
}

.meta-video i {
    margin-right: 5px;
}

.guiaSwiper {
    position: relative;
}

.guia-prev,
.guia-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 42%;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}

.guia-prev {
    left: -25px;
}

.guia-next {
    right: -25px;
}


.comparador-drones {
    margin: 50px 0;
}

.comparacao-grupo {
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.grupo-titulo {
    background: #0F172A;
    color: #FFF;
    padding: 16px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px 12px 0 0;
}

.bi-check-circle-fill {
    color: #16A34A;
}

.bi-x-circle-fill {
    color: #DC2626;
}

.apagar-drone {
    background: #a5a5a5;
    padding: 8px 10px;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.apagar-drone:hover {
    background: #f94242;
    transition: 0.3s;
}

.tabela-comparacao {
    width: 100%;
    border-collapse: collapse;
    background: #FFF;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    border-radius: 0 0 12px 12px;
}

.pos-contras tbody tr td:last-child {
    text-align: left;
}

.tabela-comparacao tr td>img {
    max-width: 150px;
    display: block;
    margin: 0 auto;
    mix-blend-mode: darken;
}

.tabela-comparacao th {
    background: #1E293B;
    color: #FFF;
    padding: 18px;
    text-align: center;
}

thead {
    position: sticky;
    top: 0;
}

.tabela-comparacao th:first-child {
    border-radius: 12px 0 0 0;
    border-right: 1px solid #606e7d;
}

.tabela-comparacao td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #FFF;
}

.tabela-comparacao th:last-child {
    border-radius: 0 12px 0 0;
}

.tabela-comparacao tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px !important;
}

.tabela-comparacao tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0 !important;
}


.tabela-comparacao td {
    padding: 16px;
    border-bottom: 1px solid #E5E7EB;
    text-align: center;
}

.tabela-comparacao td:first-child {
    width: 30%;
    background: #F8FAFC;
    text-align: left;
    font-weight: 600;
    color: #334155;
}

.tabela-comparacao tr:hover {
    background: #c7d3df;
}

.tabela-comparacao tbody tr:last-child td {
    border-bottom: none;
}

.tabela-scroll {
    overflow-x: auto;
    margin-bottom: 50px;
}

.imagem-comparacao img {
    mix-blend-mode: darken;
}

.icone-comparacao-titulo {
    float: right;
}

.avaliacao td {
    text-align: left;
}

.avaliacao i {
    color: rgb(255, 187, 0);
    font-size: 1.25rem;
}

.avaliacao input,
.avaliacao textarea {
    margin-bottom: 10px;
}

.avaliacao textarea {
    resize: none;
    width: 100%;
    height: 180px;
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #ccc;
}

.comparador-form {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
    padding: 30px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;

}

.comparacao-container {
    display: flex;
    justify-content: center;
}

.barra-pesquisa-comparador {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formulario-categoria {
    padding: 12px;
    background: #29abe2;
    color: white;
    border: none;
    border-radius: 6px;
    margin-right: 10px;
    font-size: 1.25rem;
    max-width: 225px;
}

.formulario-categoria option {
    background: #ffffff;
    color: #333;
}


.comparador-form input {
    padding: 10px;
    font-size: 1.25rem;
    font-weight: 400;
    border-radius: 6px;
    border: solid 1px #cccccc;
    width: 100%;
    display: inline-block;
}

.comparador-form h3 {

    margin-bottom: 20px;
    font-weight: 700;
    color: #555;
}

.compartilhar {
    margin: 60px 0;
    padding: 30px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.compartilhar h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.redes-sociais {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #FFF;
    font-weight: 600;
    transition: .25s;
    border: none;
    cursor: pointer;
}

.share:hover {
    transform: translateY(-3px);
    color: #FFF;
}

.share i {
    font-size: 1.2rem;
}

.whatsapp {
    background: #25D366;
}

.facebook {
    background: #1877F2;
}

.twitter {
    background: #111827;
}

.linkedin {
    background: #0A66C2;
}

.copiar-link {
    background: #475569;
}

.copiar-link:hover {
    background: #334155;
}























































/*#################### MOBILE ####################*/

@media (min-width: 320px) {
    .catalogo-drone {
        width: 50% !important;
    }

}

@media (min-width: 576px) {
    .catalogo-drone {
        width: 50% !important;
    }

}

/* md */
@media (min-width: 768px) {
    .catalogo-drone {
        width: 50% !important;
    }
}

/* lg */
@media (min-width: 992px) {
    .catalogo-drone {
        width: 33.33% !important;
    }
}

/* xl */
@media (min-width: 1200px) {
    .catalogo-drone {
        width: 25% !important;
    }
}

/* xxl */
@media (min-width: 1400px) {
    .catalogo-drone {
        width: 20% !important;
    }
}