@import url(./layout.css);
@import url(./typography.css);

:root {
    --orange-primary: rgb(242, 106, 0);
    --orange-secondary: rgb(135, 59, 0);
}

/* =============================== */
/* INDEX CLASSES                   */
/* =============================== */

.text-orange-primary {
    color: var(--orange-primary) !important;
}

.text-orange-secondary {
    color: var(--orange-secondary) !important;
}

.background-orange-primary {
    background-color: var(--orange-primary) !important;
}

.background-orange-secondary {
    background-color: var(--orange-secondary) !important;
}

.button-watch {
    background-color: #1f2224;
    color: #ffffff;
    height: 56px;
}

.custom-swiper-button {
    background-color: var(--orange-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-pagination-bullet {
    background-color: var(--orange-secondary);
}

.swiper-pagination-bullet-active {
    background-color: var(--orange-primary);
}
.technology-logo-carrousel {
    height: 64px;
    /* border: 1px solid green; */
    padding: 0.3rem 0;
}

.technology-logo-carrousel img {
    filter: grayscale(70%) brightness(0.7);
}
.technology-logo-carrousel-image {
    transition: transform 0.3s;
}
.technology-logo-carrousel-image:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* =============================== */
/* COMPONENTS STYLES               */
/* =============================== */

/* NavBar ======================== */

.navbar-button-style {
    border: 1.5px solid #ffffff;
}

.transition-navbar {
    background-color: transparent;
    transition: all 0.3s ease;
}

.transition-navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-link.disabled {
    pointer-events: none;
    color: var(--orange-primary) !important;
    cursor: default;
}

.navbar-link-alternative {
    color: #56585a !important;
}

.navbar-link-alternative:hover {
    color: #000000 !important;
}

.offcanvas {
    background-color: rgba(0, 0, 0, 0.7);
}

.offcanvas-header {
    background-color: var(--orange-primary);
    border-radius: 10px;
}

.navbar-toggler {
    color: var(--orange-primary) !important;
}
/* Button ======================== */
.button-secondary-alternative {
    background-color: var(--orange-primary) !important;
    color: #ffffff;
}
.button-secondary-alternative:hover {
    background-color: #f26a0029 !important;
    border: 1px solid var(--orange-primary);
}

.button-secondary-alternative span {
    color: #ffffff;
    transition: color 0.3s ease;
}

.button-secondary-alternative:hover span {
    color: var(--orange-primary) !important;
}

/* PlanCards ======================== */

.default-plan-card-background {
    background-color: #111416;
}

.special-plan-card-background {
    background: linear-gradient(
        201.7deg,
        #f26a00 -41.88%,
        rgba(242, 106, 0, 0) 118.2%
    );
}

.holographic-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.holographic-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.holographic-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(255, 255, 255, 0.3)
    );
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.holographic-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translateY(100%);
    z-index: 10;
}

.holographic-card * {
    position: relative;
    z-index: 2;
}
/* ReviewCards ======================== */

.review-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.review-card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px 2px rgba(242, 106, 0, 0.5);
}

.review-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: linear-gradient(
        0deg,
        transparent,
        transparent 30%,
        rgba(242, 106, 0, 0.3)
    );
    /* transform: rotate(-45deg); */
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.review-card:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.review-card * {
    position: relative;
    z-index: 2;
}

/* Button ======================== */

.partner-button-style {
    background: #ffffff3d;
    box-shadow: 0px 8px 28px 0px #00000033;
    border: none;
}

.button-slide {
    box-shadow: 0px 12px 24px 0px #f26a003d;
    color: white;
    transition: width 0.3s ease;
}

.icon-slide {
    transition: transform 0.3s ease;
}

.button-slide:hover {
    background-color: var(--orange-secondary) !important;
    color: white;
    width: 400px;
}

.button-slide:hover .icon-slide {
    background-color: var(--orange-primary) !important;
}

.button-alternative-background {
    background-color: #000000;
}

.button-secondary:hover {
    background-color: #f26a0029 !important;
    border: 1px solid var(--orange-primary);
}

.button-secondary span {
    color: #ffffff;
    transition: color 0.3s ease;
}

.button-secondary:hover span {
    color: var(--orange-primary) !important;
}

.button-arrow-alternative-background {
    background-color: #2c2e31;
}

/* SubsTableStandard ======================== */

.accordion-button {
    border-bottom: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--orange-primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem var(--orange-secondary);
    outline: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.table-button:hover {
    background-color: var(--orange-secondary) !important;
}

/* ChatBot ======================== */

.whatsapp-header {
    background-color: #202c33;
}

.whatsapp-chat {
    background-color: #0b141a;
    height: 83%;
}

.whatsapp-footer {
    background-color: #202c33;
}

.whatsapp-text-input {
    background-color: #2a3942;
    height: 40px;
}

.whatsapp-audio-button {
    background-color: #00796a;
    height: 40px;
    width: 40px;
}

.chat-container {
    background-color: #1e1e1e;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 20px 0;
    overflow-y: auto;
    max-height: 700px;
}

.chat-container::-webkit-scrollbar {
    width: 8px;
}

.chat-container::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

.chat-container::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 10px;
    border: 2px solid #1e1e1e;
}

.chat-container::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}

.message {
    max-width: 80%;
    padding: 10px 20px;
    border-radius: 15px;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
    white-space: pre-line;
}
.client {
    background-color: #1a4d32;
    align-self: flex-end;
    color: #fff;
}
.bot {
    background-color: #333;
    align-self: flex-start;
    color: #ccc;
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* FuncCards ======================== */
.func-cards {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.func-cards:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}
/*
.start-cards {
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.start-cards:hover {
    box-shadow: -8px 8px 0 var(--orange-primary);
    transform: translate(8px, -8px);
}

.scale-in-center {
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.5s ease;
}

.scale-in-center.visible {
    transform: scale(1);
    opacity: 1;
} */

.button-watch {
    transition: all 0.3s;
}

.button-watch:hover {
    background-color: var(--orange-primary);
    box-shadow: 0px 0px 10px 5px var(--orange-secondary);
}

.blog-tabs-layout .nav-underline .nav-link:hover {
    border-bottom: 3px solid var(--orange-primary);
    /* color: var(--orange-primary); */
}

.blog-tabs-layout .nav-item a {
    color: white;
    font-family: Inter;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 4;
}
.blog-tabs-layout .nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
    background-color: #ffffff14;
    border-radius: 0.5rem 0.5rem 0 0;
    color: var(--orange-primary);
}

.section-observer {
    overflow: hidden;
}

.section-observer-slide-from-left {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease-out, opacity 2s;
}

.section-observer-slide-from-left-show {
    opacity: 1;
    transform: translateX(0);
}
.section-observer-slide-from-right {
    opacity: 0;
    transform: translateX(+100%);
    transition: all 0.7s ease-out;
}

.section-observer-slide-from-right-show {
    opacity: 1;
    transform: translateX(0);
}
.section-observer-slide-from-top {
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.7s ease-out;
}

.section-observer-slide-from-top-show {
    opacity: 1;
    transform: translateY(0);
}
.section-observer-slide-forward {
    opacity: 0;
    transform: translateZ(-1440px);
    transition: all 0.3s ease-out;
}

.section-observer-slide-forward-show {
    opacity: 1;
    transform: translateY(0);
}

.section-observer-flip-in-y {
    transform: rotateY(90deg);
    opacity: 0;
    transform-origin: center center;
    backface-visibility: hidden;
    transition: transform 0.8s ease-out, opacity 0.6s ease-in;
}

.section-observer-flip-in-y-show {
    transform: rotateY(0deg);
    opacity: 1;
}

/* Functionalities */

.functionalities-section-background-style {
    background: linear-gradient(
            201.7deg,
            #f26a00 -41.88%,
            rgba(242, 106, 0, 0) 118.2%
        ),
        linear-gradient(0deg, #070a0c, #070a0c);
}

.func-mini-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}
.func-mini-card:hover {
    cursor: default;
}

.func-mini-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 10%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.func-mini-card:hover::before {
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
}

.pulse-dot {
    position: absolute;
    width: 21px;
    height: 21px;
    background: #ff6600;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}
