@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

:root {
    --color-royal-blue: #3651FF;
    --color-deep-blue: #001BCC;
    --color-pink-neon: #FE0058;
    --color-dark-raspberry: #990035;
}

html, body {
    font-family: 'Inter Tight', Helvetica, Arial, sans-serif;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 100%
}

h2 {
    color: black;
    font-weight: 400;
    font-size: 3rem;
}

h3 {
    color: var(--color-pink-neon);
    font-weight: 700;
    font-size: 0.875rem;
}

.text-xl {
    font-weight: 300;
    font-size: 1.5rem;
}

a, .btn-link {
    color: #0366d6;
}

.btn {
    border: 2px transparent solid;
    border-radius: 30px;
    font-weight: 700;
    padding: 12px 24px;
}

.btn-primary {
    background: var(--color-royal-blue);
    color: #FFF;
}

    .btn-primary:hover {
        border-color: #FFF;
        background: var(--color-deep-blue);
    }

.btn-primary-invert {
    background: #FFF;
    color: var(--color-royal-blue);
}

    .btn-primary-invert:hover {
        background: var(--color-deep-blue);
        color: #FFF;
    }

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
}

    .btn-secondary:hover {
        border-color: var(--color-pink-neon);
        background: rgba(10, 10, 10, 0.3);
    }

.btn-secondary-invert {
    background: #FFF;
    color: var(--color-royal-blue);
}

    .btn-secondary-invert:hover {
        border-color: var(--color-pink-neon);
        background: rgba(10, 10, 10, 0.3);
        color: #FFF
    }

.custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    user-select: none;
}

    .custom-radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 50%;
}

.custom-radio input:checked ~ .checkmark::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-royal-blue);
}

.toggle-switch {
    display: inline-flex;
    background: #FFF;
    color: #7F7F7F;
    border-radius: 999px;
    padding: 3px 0;
    position: relative;
    width: 300px;
    height: 36px;
    cursor: pointer;
    user-select: none;
    font-size: 18px;
    font-weight: 400;
}

    .toggle-switch .option {
        flex: 1;
        text-align: center;
        line-height: 32px;
        z-index: 2;
        transition: color 0.3s;
    }

    .toggle-switch .active-option {
        color: #1a73e8;
        font-weight: 600;
    }

    .toggle-switch .switch-indicator {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 50%;
        background: #dfe7ff;
        border-radius: 20px;
        transition: left 0.3s ease;
        z-index: 1;
    }

.content {
    margin: 0 !important;
    padding: 0 !important;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.gray-background {
    background: #F8F8F8
}

.element1 {
    margin-top: -8%;
}

.element2 {
    position: absolute;
    margin-top: -50px;
}

/* ==== navbar ==== */

.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent;
}

    .navbar .nav-link {
        cursor: pointer;
        color: #FFF;
        border-radius: 30px;
        padding: 4px 16px;
        margin-top: 10px;
    }

        .navbar .nav-link:hover {
            background: rgba(255, 255, 255, 0.16);
        }

    .navbar.scrolled .nav-link {
        color: #333;
    }

        .navbar.scrolled .nav-link:hover {
            color: #000;
        }

    .navbar.scrolled {
        background-color: rgba(255, 255, 255, 0.63);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px)
    }

.navbar-offset {
    padding-top: 98px;
}

/* ====== HERO ===== */

.bg-hero {
    background-image: url('/assets/img/hero_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .bg-hero {
        min-height: 300px;
    }
}

/*===== features ======*/

#feature-content {
    padding: 30% 18%;
}

.feature-row {
    padding: 100px 0;
}

.feature-content-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.feature-content-description {
    font-weight: 300;
    font-size: 1.5rem;
}

/*===== Plan Component ======*/

.plan-card {
    transition: box-shadow 0.3s linear, box-shadow 0.3s linear;
    background: #F8F8F8;
    border-radius: 30px;
    border: none;
    padding: 15px;
    height: 350px;
    margin: 0 15px;
}

    .plan-card:hover {
        background: #FFF;
        box-shadow: 9px 0 24px 0 #00000029;
    }

.tag {
    transition: 0.3s linear;
    background: #FFF;
    border: 1px solid;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.75rem;
    width: 48px;
}

.plan-type-tag {
    color: var(--color-pink-neon);
    border-color: var(--color-pink-neon);
}

.card.plan-card:hover .plan-type-tag {
    background: var(--color-pink-neon);
    color: #FFF;
}

.plan-discount-tag {
    color: var(--color-royal-blue);
    border-color: var(--color-royal-blue);
    width: 90px;
}

.card.plan-card:hover .plan-discount-tag {
    background: var(--color-royal-blue);
    color: #FFF;
}

.plan-price {
    font-size: 3rem;
    font-weight: 400;
}

.type-of-plan-span {
    font-size: 1.125rem;
    font-weight: 600;
}

.plan-features-list {
    font-size: 0.625rem;
    font-weight: 400;
    padding: 0;
    display: grid;
    gap: 7px;
}

    .plan-features-list li {
        list-style: none;
        display: inline-flex;
        gap: 10px;
    }

    .plan-features-list p {
        margin: 0;
    }

/*===== Feature ======*/
.quotes-p {
    color: var(--color-pink-neon);
    font-size: 4.62rem;
    font-family: arial, sans-serif;
    font-weight: 700;
}

.case-text {
    font-size: 1.25rem;
    font-weight: 300;
}

/*===== testimonial ======*/

.testimonial-content {
    padding-bottom: 160px;
}

.testimonial-box {
    max-width: 600px;
}

.quote-icon {
    font-size: 4.625rem;
    line-height: 1;
    font-family: arial, sans-serif;
    font-weight: bold;
    margin-top: -10px;
}

.text-pink {
    color: var(--color-pink-neon);
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
}

.arrow-btn {
    transition: filter 0.2s ease;
    background: none;
    border: none;
}

    .arrow-btn:hover img {
        filter: brightness(0.85);
    }

.bg-opacity {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

/*===== Contact ======*/

input.form-control::placeholder {
    color: #ccc;
}

.form-label {
    color: #FFF
}

.form-control {
    padding: 10px 19px;
}

    .form-control:focus {
        border: 2px var(--color-pink-neon) solid;
        background: #1a298d;
    }

.contact-text {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 300;
}

@media (max-width: 575.98px) {
    #feature-content {
        padding: 20% 0 15px 4%;
    }

    .feature-row {
        padding: 0 0 20px 0;
    }

    .text-hero {
        margin-top: 40px;
    }

        .text-hero h1 {
            font-size: 3rem;
        }

    .testimonial-content {
        padding-bottom: 270px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.63);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .navbar .nav-link {
        color: black;
    }
}

/* Estilos para a página de preços */
.pricing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.pricing-toggle {
    display: flex;
    background-color: #f0f5ff;
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 10px;
    width: 250px;
}

.pricing-option {
    flex: 1;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

    .pricing-option.active {
        background-color: #4169e1;
        color: white;
    }

    .pricing-option:not(.active) {
        color: #666;
    }

.annual-savings {
    color: #4169e1;
    font-size: 14px;
    font-weight: 500;
}

.pricing-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: left;
    position: relative;
}

    .pricing-card.highlighted {
        border: 1px solid #e6e6e6;
    }

.plan-label {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    width: auto;
    text-align: center;
}

.free-label {
    background-color: #ffebf0;
    color: #ff3366;
}

.pro-label {
    background-color: #f0f5ff;
    color: #4169e1;
}

.plan-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    min-height: 50px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-period {
    color: #777;
    font-size: 16px;
    margin-bottom: 25px;
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.feature-icon {
    color: #4169e1;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
}

.highlight-text {
    color: #4169e1;
    font-weight: 600;
}

.price-calculation {
    background-color: #f0f5ff;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

/* Adicionando o estilo para o destaque do desconto */
.discount-highlight {
    color: #ff3366;
    font-weight: 700;
}

/* Ajuste no espaçamento do preço */
.price-period span {
    margin-left: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    transform: translateY(100%); /* Começa fora da tela */
    transition: transform 0.3s ease-in-out;
}

    .cookie-banner.show {
        transform: translateY(0); /* Desliza para dentro da tela */
    }

    .cookie-banner.hide {
        transform: translateY(100%); /* Desliza para fora da tela */
    }

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }

    .cookie-text {
        flex: 1;
    }
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cookie-preferences {
    background-color: #f8f9fa;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 4px;
}

.preference-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

    .preference-item:last-child {
        border-bottom: none;
    }

    .preference-item p {
        margin-top: 0.25rem;
        font-size: 0.875rem;
        color: #6c757d;
    }

.preference-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.cookie-settings-button {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0;
}

.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    align-items: center;
    justify-content: center;
}

    .cookie-settings-modal.show {
        display: flex;
    }

.modal-content {
    background-color: #fff;
    border-radius: 4px;
    max-width: 500px;
    width: 100%;
    margin: 0 1rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-body {
    padding: 1rem;
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}