:root {
    /* Cores */
    --color-primary: #4A90A4;
    --color-secondary: #5BA4B8;
    --color-dark: #1A3A4A;
    --color-darker: #0F2432;
    --color-text-light: #FFFFFF;
    --color-text-muted: #B0C4D0;
    --color-accent: #6DB3C7;

    /* Tipografia */
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.raleway {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 16px;
    font-style: normal;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-light);
    background-color: var(--color-darker);
    min-height: 100vh;
}

/* Background */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    /* 🔹 Mantém o fundo atrás de tudo */
    background:
        linear-gradient(180deg, #000000CC 0%, #00000000 100%),
        url('../imagens/home-background.png') center / cover no-repeat;
    background-attachment: fixed;
}


/* Content wrapper - 80% */
.content-wrapper {
    position: relative;
    z-index: 1;
    width: 80%;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

/* Header */
.header {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
}


.logo {
    background: url("../imagens/logo_cabecalho_embrio.svg");
    background-size: cover;
    cursor: pointer;
    height: 70px;
    width: 58px;
    margin-top: 12px;
    padding-right: 5px !important;
    left: 15px;
}

/* Navbar */
.navbar {
    padding: 0;
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-text-light) !important;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-accent) !important;
}

/* Sublinhado hover - APENAS para links normais, NÃO para dropdown */
.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:not(.dropdown-toggle):hover::after {
    width: 100%;
}


/* Forçar layout inline-flex no link do dropdown */
.nav-link.dropdown-toggle {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    white-space: nowrap !important;
    gap: 0.5rem !important;
}
/* Estilizar o ícone de seta do dropdown */
.nav-link.dropdown-toggle::after {
    position: static !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    vertical-align: 0.15em !important;
    content: "" !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
    background: none !important;
    transition: none !important;
}

/* Estilo do menu dropdown */
.dropdown-menu {
    background: rgba(26, 58, 74, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0;
    margin-top: 0.25rem !important;
    min-width: 200px;
}

.dropdown-item {
    color: var(--color-text-light);
    padding: 0.625rem 1.25rem;
    font-size: 16px;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(109, 179, 199, 0.2);
    color: var(--color-text-light);
}

/* HOVER - Abrir dropdown ao passar mouse */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    animation: fadeIn 0.2s ease-in;
}

.dropdown-menu.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Toggle */
.navbar-toggler {
    background: var(--color-text-light);
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 58, 74, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    min-height: 740px;
}

/* Edition Badge */
.edition-badge {
    display: inline-block;
    border: 2px solid var(--color-text-light);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Titles */
.title-main {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.title-outline {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-text-light);
    text-stroke: 2px var(--color-text-light);
}

.title-subtitle {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 24px;
    text-transform: uppercase;
}

.authors {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

/* Login Box */
.login-box {
    backdrop-filter: blur(20px);

}

.login-header h2 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: right;
}

.login-header span {
    font-weight: 600;
}

/* Form */
.form-label {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

.form-control {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--color-text-light);
    font-size: 12px;
    text-align: right;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: 0 0 0 0.25rem rgba(109, 179, 199, 0.25);
}

.forgot-password {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Buttons */
.btn-custom-secondary {
    background: transparent;
    border: 2px solid var(--color-text-light);
    color: var(--color-text-light);
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.btn-custom-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
}

.btn-custom-primary {
    background: var(--color-accent);
    border: none;
    color: var(--color-text-light);
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(109, 179, 199, 0.3);
    transition: all 0.3s ease;
    font-size: 12px;
}

.btn-custom-primary:hover {
    background: var(--color-secondary);
    color: var(--color-text-light);
    box-shadow: 0 6px 16px rgba(109, 179, 199, 0.4);
    transform: translateY(-2px);
}

.access-section {
    position: relative;
    z-index: 1;
    background: rgba(200, 215, 225, 0.95);
    padding: 2.5rem 0;
}

.btn-access {
    background: transparent;
    border: 2px solid rgba(26, 58, 74, 0.5);
    color: var(--color-dark);
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-access:hover {
    background: rgba(26, 58, 74, 0.1);
    border-color: var(--color-dark);
    color: var(--color-dark);
}

/* Responsive */
@media (max-width: 1400px) {
    .content-wrapper {
        width: 90%;
    }
}

@media (max-width: 992px) {

    .title-main,
    .title-outline {
        font-size: 3.5rem;
    }

    .title-subtitle {
        font-size: 2rem;
        letter-spacing: 12px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        width: 100%;
        padding: 0 1.5rem;
    }

    .title-main,
    .title-outline {
        font-size: 3rem;
    }

    .title-subtitle {
        font-size: 1.75rem;
        letter-spacing: 8px;
    }

    .navbar-nav {
        gap: 1rem;
        padding: 1rem 0;
    }
}

.testimonials-section {
    background: linear-gradient(180deg, #000000 0%, #020202 50%, #121212 100%);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.testimonials-section .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Poppins', sans-serif;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-container {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
    cursor: grab;
    user-select: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonials-container:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: 450px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 15px;
    transition: all 0.3s ease;
    user-select: none;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.star {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 300;
}

/* Autor */
/* .testimonial-author {
    text-align: left;
} */

.author-name {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.author-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
    text-align: right;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-nav svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-accent);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: 380px;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-section .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .testimonials-carousel {
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: 300px;
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
}

.experience-section {
    background: rgba(240, 245, 248, 1);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.experience-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #7A8A94;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.category-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-category {
    background: #2C3E50;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.cards-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.cards-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

.experience-card {
    min-width: 350px;
    height: 420px;
    border-radius: 24px;
    background: linear-gradient(163deg,
            rgba(176, 196, 208, 0.8) 0%,
            rgb(36, 89, 120) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: default;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(74, 144, 164, 0.3);
}

.experience-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


.card-title {
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-family: var(--font-poppins);
}

.card-subtitle {
    color: white;
    font-size: 0.85rem;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-family: var(--font-poppins);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.carousel-nav svg {
    width: 20px;
    height: 20px;
    stroke: #2C3E50;
}

.carousel-nav:hover svg {
    stroke: white;
}

/* Responsive */
@media (max-width: 768px) {
    .experience-title {
        font-size: 1.75rem;
    }

    .category-buttons {
        gap: 0.75rem;
    }

    .btn-category {
        padding: 0.75rem 1.25rem;
        font-size: 12px;
    }

    .cards-carousel {
        padding: 0 20px;
    }

    .experience-card {
        min-width: 240px;
        height: 340px;
    }

    .card-icon {
        width: 100px;
        height: 100px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}

.cards-container {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cards-container:active {
    cursor: grabbing;
}


.cards-container:not(:active) {
    scroll-behavior: smooth;
}

.experience-card img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.experience-card {
    user-select: none;
}


.cards-container {
    -webkit-overflow-scrolling: touch;
}

.cards-container {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.cards-container:active {
    cursor: grabbing;
}

.cards-container.smooth-scroll {
    scroll-behavior: smooth;
}

.experience-card img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.experience-card {
    user-select: none;
}

.cards-container {
    -webkit-overflow-scrolling: touch;
}

.features-video-section {
    background: linear-gradient(115deg, #0A1F2E 0%, #1A2F3E 50%, #000000 100%);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.feature-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-card {
    background: transparent;
    border: none;
    padding: 0;
    height: 100%;
    text-align: center;
}


.feature-card-title {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-accent);
    border-radius: 10px;
    display: inline-block;
    font-family: var(--font-poppins);
}


.feature-card-text {
    color: white;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto;
}


.features-cards-row {
    margin-bottom: 5rem;
}


.video-container {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    padding: 0;
}

.video-play-overlay.is-hidden {
    display: none;
}

.video-play-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    position: relative;
}

.video-play-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent #fff;
}

.video-play-overlay:hover .video-play-icon,
.video-play-overlay:focus .video-play-icon {
    background: rgba(13, 148, 136, 1);
}


.authors-section {
    width: 100%;
    background: transparent;
    padding: 5rem 0;
    display: flex;
    justify-content: left;
}

.container-authors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    /* background: rgba(255, 255, 255, 0.03); */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 12px;
    padding: 2rem 4rem;
    backdrop-filter: blur(12px);
    width: 80%;
    max-width: 1100px;
}

.authors-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    flex: 1;
    text-align: left;
    white-space: nowrap;
}

.authors-list {
    display: flex;
    gap: 2rem;
    flex: 2;
    justify-content: flex-start;
}

.author-name {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.8rem 2.5rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    min-width: 400px;
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.author-name a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.author-name a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.author-name:hover {
    background: rgba(255, 255, 255, 0.1);
}

.author-name:hover a {
    color: var(--color-accent);
}

.author-name:hover a::after {
    width: 100%;
}

@media (max-width: 768px) {
    .container-authors {
        flex-direction: column;
        gap: 2rem;
        width: 90%;
        padding: 2rem;
    }

    .authors-title {
        text-align: center;
    }

    .authors-list {
        flex-direction: column;
        align-items: center;
    }

    .author-name {
        width: 100%;
    }
}

.manual-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 22px
}


.manual-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 179, 199, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.manual-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 164, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}


.manual-section .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}


.manual-content {
    display: flex;
    align-items: center;
    gap: 8rem;
}

.manual-text {
    flex: 1;
}

.manual-cta {
    flex: 0 0 auto;
}


.manual-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}


.manual-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 500px;
    font-weight: 300;
}


.btn-download {
    display: inline-block;
    background: transparent linear-gradient(90deg, #202D40 0%, #83AFC8 100%) 0% 0% no-repeat padding-box;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(109, 179, 199, 0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-download::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-download:hover::after {
    left: 100%;
}

.btn-download:hover {
    background: transparent linear-gradient(90deg, #2A3A50 0%, #93BFD8 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0 12px 32px rgba(131, 175, 200, 0.5);
    transform: translateY(-4px);
    color: white;
}

.btn-download::before {
    content: '⬇';
    margin-right: 0.75rem;
    font-size: 1.25rem;
}


@media (max-width: 992px) {
    .manual-content {
        gap: 4rem;
    }

    .manual-title {
        font-size: 2.75rem;
    }

    .manual-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .manual-section {
        padding: 4rem 0;
    }

    .manual-section .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .manual-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .manual-title {
        font-size: 2rem;
    }

    .manual-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .btn-download {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

.experimente-section {
    background-image: url('../imagens/experimente-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}


.experimente-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 46, 0.35);
    z-index: -1;
}

.experimente-section .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.experimente-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-family: 'Poppins', sans-serif;
}

.experimente-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.experimente-subtitle strong {
    font-weight: 700;
}

.btn-amostra {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 1rem 3.5rem;
    border: 2px solid white;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2.5rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-amostra:hover {
    background: white;
    color: #0A1F2E;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .experimente-title {
        font-size: 3.5rem;
        letter-spacing: 6px;
    }

    .experimente-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .experimente-section {
        padding: 5rem 0;
    }

    .experimente-section .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .experimente-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 1.5rem;
    }

    .experimente-subtitle {
        font-size: 1.125rem;
    }

    .btn-amostra {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

.planos-section {
    background: #F0F5F8;
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.planos-section .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.planos-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: stretch;
}

.plano-card {
    flex: 0 0 350px;
    padding: 3rem 2.8rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent linear-gradient(0deg, #D3E2E4 0%, #F5FDFD 100%) 0% 0% no-repeat padding-box;
    border: 0.5px solid #cbcbcb;
    border-radius: 29px;
}

.plano-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(131, 175, 200, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(131, 175, 200, 0.2);
}
.plano-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #5A6E7A;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.plano-description {
    font-size: 1rem;
    font-weight: 300;
    color: #5A6E7A;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    min-height: 100px;
}

.btn-plano {
    display: inline-block;
    background: transparent linear-gradient(270deg, #7EA8C1 0%, #445670 100%) 0% 0% no-repeat padding-box;
    color: white;
    padding: 1rem 3rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-plano:hover {
    background: linear-gradient(90deg, #6A8A9A 0%, #8AAABA 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90, 122, 138, 0.3);
    color: white;
}

.footer {
    background: #000000;
    padding: 2rem 0 1rem 0;
    color: white;
    display: flex;
    justify-content: center;
}

.footer .container {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    gap: 3rem;
    padding-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
}
.footer-logo {
    background: url("../imagens/logo_cabecalho_embrio.svg");
    background-size: cover;
    cursor: pointer;
    height: 80px;
    width: 64px;
    margin-top: 15px;
    padding-right: 5px !important;
}

.footer-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-menu {
    flex: 0;
}

.footer-menu h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 0.75rem;
}

.footer-menu ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: white;
}

.footer-contato {
    flex: 1;
}

.footer-contato h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.footer-contato p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-contato a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contato a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 992px) {
    .planos-grid {
        flex-direction: column;
        align-items: center;
    }

    .plano-card {
        max-width: 500px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .planos-section {
        padding: 4rem 0;
    }

    .planos-section .container,
    .footer .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .plano-card {
        padding: 2.5rem 2rem;
    }

    .plano-title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-menu h3,
    .footer-contato h3 {
        font-size: 1.25rem;
    }
}

.capitulos-page {
    background: linear-gradient(180deg, #1D2D36 0%, #171717 100%);
    min-height: 100vh;
}

.capitulos-page .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.capitulos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.capitulos-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capitulos-icon img {
    width: 70px;
    height: 70px;
    filter: brightness(0) invert(1);
}

.capitulos-title-btn {
    display: inline-block;
    background: transparent;
    border: 2px solid  #37799F;
    color: black;
    padding: 7px 12px;
    border-radius: 16px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'LadyroseRegular', 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.capitulos-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.capitulo-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.capitulo-item:hover .capitulo-content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}
.capitulo-item:hover .capitulo-content-sistemas {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.capitulo-number {
    flex: 0 0 80px;
    height: 65px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.capitulo-number-sistemas {
    flex: 0 0 80px;
    height: 65px;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: black;
    font-family: 'Poppins', sans-serif;
}

.capitulo-content {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}
.capitulo-content-sistemas {
    flex: 1;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 6px;
    padding: 0.3rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.capitulo-icon {
    flex: 0 0 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capitulo-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.capitulo-icon-sistemas img {
    width: 50px;
    height: 50px;
    opacity: 0.9;
    filter: brightness(0);
}

.capitulo-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.capitulo-divider-sistemas {
    width: 1px;
    height: 50px;
    background: rgb(0, 0, 0);
}

.capitulo-title {
    flex: 1;
    color: white;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.capitulo-title-sistemas {
    flex: 1;
    color: black;
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 992px) {
    .capitulos-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .capitulos-page .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .capitulos-page-sistemas .container {
        width: 100%;
        padding: 0 1.5rem;
    }

    .capitulos-header {
        gap: 1.5rem;
    }

    .capitulos-icon {
        width: 100px;
        height: 100px;
    }

    .capitulos-icon img {
        width: 60px;
        height: 60px;
    }

    .capitulos-title-btn {
        font-size: 1rem;
        padding: 0.6rem 2rem;
    }

    .capitulo-item {
        gap: 1rem;
    }

    .capitulo-content {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
    .capitulo-content-sistemas {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .capitulo-number {
        flex: 0 0 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .capitulo-icon {
        flex: 0 0 45px;
        height: 45px;
    }

    .capitulo-icon img {
        width: 40px;
        height: 40px;
    }

    .capitulo-divider {
        height: 40px;
    }

    .capitulo-title {
        font-size: 1rem;
    }
}

.capitulos-header-bg {
    background-image: url('../imagens/capitulos-header-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
}

.capitulos-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.capitulos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.capitulos-sistemas-header-bg {
    background-image: url('../imagens/capitulos-header-background-sistemas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
    margin-bottom: 3rem;
    position: relative;
}

.capitulos-sistemas-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.capitulos-page-sistemas {
    background: linear-gradient(180deg, white 0%, white 100%);
    padding-bottom: 3rem;
}

.capitulos-page .container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.termos-page {
    background-color: #F5F5F5;
    min-height: auto;
    padding-bottom: 1.5rem;
}

/* Header */
.termos-header {
    background-color: #FFFFFF;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.termos-header .container {
    max-width: 80%;
    margin: 0 10%;
    padding: 0;
}

.termos-title-btn {
    background-color: transparent;
    border: 2px solid #2C3E50;
    border-radius: 25px;
    padding: 7px 12px;
    font-size: 30px;
    font-weight: 600;
    color: #2C3E50;
    letter-spacing: 1px;
    cursor: default;
    font-family: 'LadyroseRegular', var(--font-family);
}


.termos-wrapper {
    max-width: 80%;
    margin: 0 10%;
}

.termos-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dental-press-banner {
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.dental-press-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 150%;
    height: 200%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(255,255,255,0.03) 15px,
        rgba(255,255,255,0.03) 30px
    );
}

.dental-logo {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 0;
    position: relative;
    z-index: 1;
    font-family: 'Arial', sans-serif;
}

.dental-logo strong {
    font-weight: 700;
}

.termos-titulo {
    color: #2C3E50;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
}

.termos-conteudo {
    margin-bottom: 2.5rem;
}

.termos-conteudo p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    text-align: justify;
    font-family: var(--font-family);
}

.termos-conteudo p:last-child {
    margin-bottom: 0;
}

.termos-acoes {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.btn-termos {
    padding: 14px 36px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
}

.btn-aceitar {
    background-color: #304D5F;
    color: #FFFFFF;
}

.btn-aceitar:hover {
    background-color: #455A64;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(84, 110, 122, 0.4);
}

.btn-recusar {
    background-color: #555555;
    color: #FFFFFF;
}

.btn-recusar:hover {
    background-color: #607D8B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 144, 156, 0.4);
}

@media (max-width: 992px) {
    .termos-header .container,
    .termos-wrapper {
        max-width: 90%;
        margin: 0 5%;
    }
    
    .termos-box {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .termos-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .termos-title-btn {
        font-size: 12px;
        padding: 10px 24px;
    }

    .termos-box {
        padding: 2rem;
        border-width: 3px;
    }

    .dental-press-banner {
        padding: 2rem;
    }

    .dental-logo {
        font-size: 26px;
    }

    .termos-titulo {
        font-size: 15px;
    }

    .termos-conteudo p {
        font-size: 14px;
        text-align: left;
    }

    .termos-acoes {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-termos {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .termos-box {
        padding: 1.5rem;
    }

    .dental-press-banner {
        padding: 1.5rem;
    }

    .dental-logo {
        font-size: 22px;
    }

    .termos-titulo {
        font-size: 14px;
    }

    .termos-conteudo p {
        font-size: 13px;
    }
}


.exercicios-page {
    background-color: #F5F5F5;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.exercicios-header {
    background-color: #FFFFFF;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.exercicios-header .container {
    max-width: 80%;
    margin: 0 10%;
    padding: 0;
}

.exercicios-title-btn {
    background-color: transparent;
    border: 2px solid #2C3E50;
    border-radius: 25px;
    padding: 7px 12px;
    font-size: 30px;
    font-weight: 600;
    color: #2C3E50;
    letter-spacing: 1px;
    cursor: default;
    font-family: 'LadyroseRegular', var(--font-family);
}

.exercicios-wrapper {
    max-width: 80%;
    margin: 0 10%;
}

.exercicios-box {
    background-color: #FFFFFF;
    
    border-radius: 12px;
    padding: 4rem 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Instruções */
.exercicios-instrucoes {
    margin-bottom: 3rem;
}

.exercicios-instrucoes p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-family: var(--font-family);
}

.exercicios-instrucoes p strong {
    color: #2C3E50;
    font-weight: 600;
}

.exercicios-cta {
    margin-top: 1.5rem;
    color: #5A6E7A !important;
}

.exercicios-form {
    margin-top: 2.5rem;
}

.form-label-exercicios {
    color: #2C3E50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
    font-family: var(--font-family);
}

.form-select-exercicios {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #4A5568;
    background-color: #ffffff;
    border: 2px solid #CBD5E0;
    border-radius: 8px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-select-exercicios:focus {
    outline: none;
    border-color: #4A90A4;
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.select2-container--default .select2-selection--multiple {
    border: 2px solid #CBD5E0 !important;
    border-radius: 8px !important;
    padding: 4px;
    min-height: 46px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #4A90A4 !important;
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1) !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #4A90A4;
    border: none;
    color: rgb(0, 0, 0);
    padding: 4px 8px;
    border-radius: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgb(0, 0, 0);
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #ff6b6b;
}

.select2-container--default .select2-results__option {
    background-color: #FFFFFF;
    color: #2C3E50;
    padding: 8px 12px;
    font-size: 14px;
    font-family: var(--font-family);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4A90A4;
    color: #FFFFFF;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #E8F4F8;
    color: #2C3E50;
}

.select2-dropdown {
    background-color: #FFFFFF;
    border: 2px solid #CBD5E0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.select2-search--dropdown .select2-search__field {
    border: 2px solid #CBD5E0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    color: #2C3E50;
    font-family: var(--font-family);
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: #4A90A4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.exercicios-acoes {
    margin-top: 2.5rem;
    text-align: left;
}

.btn-gerar {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 14px 48px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-gerar:hover {
    background-color: #455A64;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
}

.btn-gerar:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.exercicios-page .alert {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-family);
}

.exercicios-page .alert-danger {
    background-color: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}


@media (max-width: 992px) {
    .exercicios-header .container,
    .exercicios-wrapper {
        max-width: 90%;
        margin: 0 5%;
    }

    .exercicios-box {
        padding: 3rem 2.5rem;
    }

    .exercicios-form .row {
        row-gap: 2rem;
    }
}

@media (max-width: 768px) {
    .exercicios-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .exercicios-title-btn {
        font-size: 12px;
        padding: 10px 24px;
    }

    .exercicios-box {
        padding: 2rem;
        border-width: 3px;
    }

    .exercicios-instrucoes p {
        font-size: 14px;
    }

    .exercicios-acoes {
        text-align: center;
    }

    .btn-gerar {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .exercicios-box {
        padding: 1.5rem;
    }

    .exercicios-instrucoes {
        margin-bottom: 2rem;
    }

    .exercicios-instrucoes p {
        font-size: 13px;
    }

    .form-label-exercicios {
        font-size: 13px;
    }

    .form-select-exercicios {
        font-size: 13px;
        padding: 10px 14px;
    }
}

.compra-page {
    background-color: #F5F5F5;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.compra-header {
    background-color: #FFFFFF;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.compra-header .container {
    max-width: 80%;
    margin: 0 10%;
    padding: 0;
}

@font-face {
    font-family: 'LadyroseRegular';
    src: url('../fontes/Ladyrose.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.compra-title-btn {
    background-color: transparent;
    border: 2px solid #2C3E50;
    border-radius: 25px;
    padding: 7px 12px;
    font-size: 30px;
    font-weight: 600;
    color: #2C3E50;
    letter-spacing: 1px;
    cursor: default;
    font-family: 'LadyroseRegular', var(--font-family);
}

.compra-wrapper {
    max-width: 80%;
    margin: 0 10%;
}

.compra-box {
    background-color: #FFFFFF;
    
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.compra-imagem {
    margin-bottom: 1.5rem;
    text-align: left;
}

.compra-imagem img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.compra-produto-info {
    margin-bottom: 2rem;
}

.compra-produto-info p {
    color: #2C3E50;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-family: var(--font-family);
}

.compra-produto-info p strong {
    font-weight: 600;
}

.compra-requisitos-section {
    margin-bottom: 2rem;
}

.compra-requisitos-titulo {
    color: #2C3E50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: var(--font-family);
}

.compra-requisitos-grid {
    margin-bottom: 1rem;
}

.compra-requisito-col {
    margin-bottom: 1rem;
}

.compra-requisito-titulo {
    color: #2C3E50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-family);
}

.compra-requisito-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compra-requisito-lista li {
    color: #4A5568;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 0;
    font-family: var(--font-family);
}

.compra-form {
    margin-top: 1.5rem;
}

.compra-termos {
    margin-bottom: 1.5rem;
}

.compra-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-family);
}

.compra-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #2C3E50;
}

.compra-checkbox-text {
    color: #2C3E50;
    font-size: 14px;
    font-weight: 500;
}

.compra-acoes {
    text-align: left;
}

.btn-adquirir {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 14px 48px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-adquirir:hover {
    background-color: #455A64;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
}

.btn-adquirir:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

@media (max-width: 992px) {
    .compra-header .container,
    .compra-wrapper {
        max-width: 90%;
        margin: 0 5%;
    }

    .compra-box {
        padding: 3rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .compra-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .compra-title-btn {
        font-size: 12px;
        padding: 10px 24px;
    }

    .compra-box {
        padding: 2rem;
        border-width: 3px;
    }

    .compra-produto-info p {
        font-size: 14px;
    }

    .compra-requisitos-titulo {
        font-size: 15px;
    }

    .compra-requisito-titulo {
        font-size: 13px;
    }

    .compra-requisito-lista li {
        font-size: 13px;
    }

    .compra-acoes {
        text-align: center;
    }

    .btn-adquirir {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .compra-box {
        padding: 1.5rem;
    }

    .compra-imagem {
        margin-bottom: 2rem;
    }

    .compra-produto-info {
        margin-bottom: 2rem;
    }

    .compra-produto-info p {
        font-size: 13px;
    }

    .compra-requisitos-titulo {
        font-size: 14px;
    }

    .compra-requisito-titulo {
        font-size: 12px;
    }

    .compra-requisito-lista li {
        font-size: 12px;
    }

    .compra-checkbox-text {
        font-size: 13px;
    }
}

.user-info-box {
    padding: 1rem 0;
}

.user-greeting {
    padding: 1.5rem 0;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    font-family: var(--font-family);
}

/* Institutional Access Badge */
.institutional-access-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00C7A6 0%, #00A88F 100%);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 199, 166, 0.3);
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.institutional-access-badge .badge-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.institutional-access-badge .badge-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-family);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .institutional-access-badge {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .institutional-access-badge .badge-icon {
        width: 20px;
        height: 20px;
    }

    .institutional-access-badge .badge-text {
        font-size: 12px;
    }

    .user-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .institutional-access-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 1rem 0;
        justify-content: center;
    }

    .user-name {
        font-size: 14px;
    }
}


.plano-preco {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 2px solid #E0E0E0;
    border-bottom: 2px solid #E0E0E0;
}

.preco-valor {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #00C7A6;
    font-family: var(--font-family);
    line-height: 1.2;
}

.preco-periodo {
    display: block;
    font-size: 14px;
    color: #5A6E7A;
    font-weight: 500;
    margin-top: 0.5rem;
    font-family: var(--font-family);
}

/* Responsive */
@media (max-width: 768px) {
    .preco-valor {
        font-size: 28px;
    }

    .preco-periodo {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .plano-preco {
        margin: 1rem 0;
        padding: 0.75rem 0;
    }

    .preco-valor {
        font-size: 24px;
    }

    .preco-periodo {
        font-size: 12px;
    }
}

.badge-construcao {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF9800 0%, #FF6F00 100%);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    z-index: 10;
}


.badge-bloqueado {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #757575 0%, #424242 100%);
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 18px;
    font-family: var(--font-family);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
}


.badge-indisponivel {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #EF5350 0%, #C62828 100%);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-family);
    box-shadow: 0 2px 8px rgba(239, 83, 80, 0.3);
    z-index: 10;
}

.capitulo-bloqueado {
    opacity: 0.6;
    cursor: not-allowed !important;
    pointer-events: none;
}

.capitulo-bloqueado:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.capitulo-subtitle {
    font-size: 14px;
    color: #B0BEC5;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-family);
    line-height: 1.4;
}

.capitulo-subsubtitle {
    font-size: 12px;
    color: #7A8E9A;
    font-weight: 400;
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-family: var(--font-family);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .badge-construcao,
    .badge-bloqueado,
    .badge-indisponivel {
        font-size: 10px;
        padding: 5px 10px;
        top: 8px;
        right: 8px;
    }

    .badge-bloqueado {
        font-size: 16px;
        padding: 6px 10px;
    }

    .capitulo-subtitle {
        font-size: 13px;
    }

    .capitulo-subsubtitle {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .badge-construcao,
    .badge-bloqueado,
    .badge-indisponivel {
        font-size: 9px;
        padding: 4px 8px;
        top: 6px;
        right: 6px;
    }

    .badge-bloqueado {
        font-size: 14px;
        padding: 5px 8px;
    }

    .capitulo-subtitle {
        font-size: 12px;
    }

    .capitulo-subsubtitle {
        font-size: 10px;
    }
}


.termos-modal {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.termos-modal-header {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: #FFFFFF;
    border-bottom: none;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem 2rem;
}

.termos-modal-header .modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.termos-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #2C3E50;
}

.termos-modal-body::-webkit-scrollbar {
    width: 8px;
}

.termos-modal-body::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 4px;
}

.termos-modal-body::-webkit-scrollbar-thumb {
    background: #D32F2F;
    border-radius: 4px;
}

.termos-modal-body::-webkit-scrollbar-thumb:hover {
    background: #B71C1C;
}

.termos-modal-body p {
    margin-bottom: 1rem;
}

.termos-modal-body strong {
    color: #D32F2F;
    font-weight: 600;
}

.termos-modal-footer {
    border-top: 1px solid #E0E0E0;
    padding: 1.5rem 2rem;
    background-color: #FAFAFA;
    border-radius: 0 0 16px 16px;
}

.termos-modal-footer form {
    margin: 0;
}

.btn-accept {
    background: linear-gradient(135deg, #00C7A6 0%, #00A88F 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #00A88F 0%, #008F7A 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 199, 166, 0.3);
}

.btn-decline {
    background: #FFFFFF;
    color: #D32F2F;
    border: 2px solid #D32F2F;
    padding: 12px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-decline:hover {
    background: #D32F2F;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.modal-backdrop.show {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .termos-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .termos-modal-header .modal-title {
        font-size: 20px;
    }

    .termos-modal-body {
        padding: 1.5rem;
        font-size: 14px;
    }

    .termos-modal-footer {
        padding: 1.25rem 1.5rem;
    }

    .btn-accept,
    .btn-decline {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .termos-modal-header {
        padding: 1rem;
    }

    .termos-modal-header .modal-title {
        font-size: 18px;
    }

    .termos-modal-body {
        padding: 1rem;
        font-size: 13px;
    }

    .termos-modal-footer {
        padding: 1rem;
    }

    .termos-modal-footer .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .btn-accept,
    .btn-decline {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
    }
}


.cadastro-page {
    background-color: #F5F5F5;
    min-height: 100vh;
    padding-bottom: 4rem;
}

.cadastro-header {
    background-color: #FFFFFF;
    padding: 2rem 0;
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cadastro-header .container {
    max-width: 80%;
    margin: 0 10%;
    padding: 0;
}

.cadastro-title-btn {
    background-color: transparent;
    border: 2px solid #2C3E50;
    border-radius: 25px;
    padding: 7px 12px;
    font-size: 30px;
    font-weight: 600;
    color: #2C3E50;
    letter-spacing: 1px;
    cursor: default;
    display: inline-block;
    font-family: 'LadyroseRegular', var(--font-family);
}

.cadastro-wrapper {
    max-width: 80%;
    margin: 0 10%;
}

.cadastro-box {
    background-color: #FFFFFF;
    
    border-radius: 12px;
    padding: 3rem 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.cadastro-info {
    background-color: #E3F2FD;
    border-left: 4px solid #2196F3;
    padding: 1rem;
    border-radius: 4px;
    font-size: 13px;
    color: #1976D2;
    font-family: var(--font-family);
    margin-bottom: 2rem;
}


.cadastro-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #E0E0E0;
}

.cadastro-section:last-of-type {
    border-bottom: none;
}

.cadastro-section-title {
    color: #2C3E50;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.form-label-cadastro {
    color: #2C3E50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-family);
}

.form-control-cadastro,
.form-select-cadastro {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: #4A5568;
    background-color: #ffffff;
    border: 2px solid #CBD5E0;
    border-radius: 8px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.form-control-cadastro:focus,
.form-select-cadastro:focus {
    outline: none;
    border-color: #4A90A4;
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
}

.form-control-cadastro.is-invalid,
.form-select-cadastro.is-invalid {
    border-color: #D32F2F;
}

.form-control-cadastro.is-valid,
.form-select-cadastro.is-valid {
    border-color: #00C7A6;
}

.invalid-feedback {
    color: #D32F2F;
    font-size: 13px;
    margin-top: 0.25rem;
    display: block;
    font-family: var(--font-family);
}

.valid-feedback {
    color: #00C7A6;
    font-size: 13px;
    margin-top: 0.25rem;
    display: block;
    font-family: var(--font-family);
}

.cadastro-page .form-check {
    margin-bottom: 0.75rem;
}

.cadastro-page .form-check-label {
    color: #4A5568;
    font-size: 14px;
    font-family: var(--font-family);
    margin-left: 0.5rem;
}

.cadastro-page .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
    cursor: pointer;
}

.cadastro-page .form-check-input:checked {
    background-color: #4A90A4;
    border-color: #4A90A4;
}

.condicional-section {
    background-color: #F8F9FA;
    border-left: 4px solid #4A90A4;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 8px;
}

.sub-section {
    padding-left: 2rem;
    margin-top: 1rem;
}

.cadastro-acoes {
    text-align: center;
    margin-top: 2rem;
}

.btn-cadastrar {
    background-color: #2C3E50;
    color: #FFFFFF;
    padding: 14px 48px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-cadastrar:hover {
    background-color: #455A64;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
}

.cadastro-links {
    text-align: center;
}

.cadastro-links p {
    color: #5A6E7A;
    font-size: 14px;
    font-family: var(--font-family);
    margin: 0;
}

.cadastro-links a {
    color: #4A90A4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cadastro-links a:hover {
    color: #2C3E50;
    text-decoration: underline;
}

.cadastro-login-box {
    background-color: #F8F9FA;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 2rem;
}

.cadastro-login-box h4 {
    color: #2C3E50;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-family);
    margin-bottom: 1.5rem;
}

/* Alertas */
.cadastro-page .alert {
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-family);
    font-size: 14px;
}

.cadastro-page .alert-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: var(--font-family);
}

@media (max-width: 992px) {
    .cadastro-wrapper {
        max-width: 90%;
        margin: 0 5%;
    }

    .cadastro-box {
        padding: 2.5rem 2rem;
        border-width: 3px;
    }
}

@media (max-width: 768px) {
    .cadastro-header {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .cadastro-header .container {
        max-width: 90%;
        margin: 0 5%;
    }

    .cadastro-title-btn {
        font-size: 13px;
        padding: 10px 24px;
    }

    .cadastro-wrapper {
        max-width: 95%;
        margin: 0 2.5%;
    }

    .cadastro-box {
        padding: 2rem;
        border-width: 3px;
    }

    .cadastro-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .cadastro-section-title {
        font-size: 18px;
    }

    .form-label-cadastro {
        font-size: 13px;
    }

    .form-control-cadastro,
    .form-select-cadastro {
        font-size: 13px;
        padding: 10px 14px;
    }

    .btn-cadastrar {
        padding: 12px 36px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cadastro-header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }

    .cadastro-title-btn {
        font-size: 12px;
        padding: 8px 20px;
    }

    .cadastro-box {
        padding: 1.5rem;
        border-width: 2px;
        border-radius: 8px;
    }

    .cadastro-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .cadastro-section-title {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .form-label-cadastro {
        font-size: 12px;
    }

    .form-control-cadastro,
    .form-select-cadastro {
        font-size: 12px;
        padding: 10px 12px;
    }

    .cadastro-page .form-check-label {
        font-size: 13px;
    }

    .condicional-section {
        padding: 1rem;
    }

    .sub-section {
        padding-left: 1rem;
    }

    .btn-cadastrar {
        width: 100%;
        padding: 12px 24px;
        font-size: 12px;
    }

    .cadastro-login-box {
        padding: 1.5rem;
    }

    .cadastro-login-box h4 {
        font-size: 16px;
    }

    .cadastro-page .alert {
        font-size: 13px;
        padding: 1rem;
    }

    .cadastro-page .alert-heading {
        font-size: 16px;
    }
}

/*
   LOGIN PAGE - TEMPLATE 2025
   */

.login-page {
    min-height: 60vh;
    padding: 10px 0;
    background-color: #F5F5F5;
}

.login-page-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    padding: 30px 0;
    margin-bottom: 40px;
}

.login-page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--color-text-light);
    text-align: left;
    margin: 0;
    letter-spacing: 2px;
}

.login-wrapper {
    margin: 0 auto;
}

.login-content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Alertas */
.login-alert {
    background-color: #E3F2FD;
    border: 2px solid #2196F3;
    border-radius: 12px;
    color: #1565C0;
    padding: 20px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.access-status {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.access-status.alert-success {
    background-color: #E8F5E9;
    border: 2px solid #4CAF50;
    color: #2E7D32;
}

.access-status.alert-danger {
    background-color: #FFEBEE;
    border: 2px solid #F44336;
    color: #C62828;
}

/* Instruções */
.login-instructions {
    color: #333;
    margin-bottom: 40px;
}

.instructions-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 30px;
    text-align: center;
}

.instruction-section {
    background: #F8F9FA;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
}

.instruction-type {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.instruction-list {
    margin: 0;
    padding-left: 25px;
    color: #555;
}

.instruction-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 16px;
}

.instruction-list a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.instruction-list a:hover {
    color: var(--color-dark);
    text-decoration: underline;
}

/* Formulário */
.login-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 30px;
}

.login-form-main {
    width: 100%;
}

.login-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.login-link {
    color: var(--color-primary);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: var(--color-dark);
    text-decoration: underline;
}

.separator {
    color: #999;
    font-size: 14px;
}

/* Nota */
.login-note {
    background: #FFF9E6;
    border: 2px solid #FFC107;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.login-note p {
    margin: 0;
    color: #F57C00;
    font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-page-title {
        font-size: 28px;
    }

    .login-content-box {
        padding: 25px;
    }

    .login-form-container {
        padding: 25px;
    }

    .instructions-title {
        font-size: 18px;
    }

    .instruction-type {
        font-size: 16px;
    }

    .instruction-list li {
        font-size: 14px;
    }

    .login-links {
        flex-direction: column;
        gap: 8px;
    }

    .separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .login-page {
        padding: 40px 0;
    }

    .login-content-box {
        padding: 20px;
    }

    .login-form-container {
        padding: 20px;
    }

    .form-title {
        font-size: 20px;
    }
}
