/*
*
*
*/

/* Cores principais */
:root {
        --primary-red: #DC3545;
        --primary-blue: #003366;
}


* {
        margin: 0;
        padding: 0;
}

body {
        font-family: 'Poppins', sans-serif;
}


/* Navbar */
.navbar {
        background-color: var(--primary-blue);
        position: fixed;
        top: 0;
        width: 100%;
        padding: 1rem;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.21);
}

.navbar-background {
        background-image: url("assets/img/navbar-background.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #000;
}

.navbar-brand {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
}

.navbar-logo {
        opacity: 0;
        transition: opacity 0.3s ease;
        height: 35px;
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.navbar-logo.visible {
        opacity: 1;
}

.nav-links {
        display: flex;
        gap: 2rem;
}

.nav-links a {
        color: white;
        text-decoration: none;
        font-weight: 500;
}




/* Hero Section */
.hero {
        height: 100vh;
        position: relative;
}

.hero .carousel-item {
        height: 100vh;
}

.hero .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
        filter: brightness(0.4);
}

.hero-content {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        color: white;
}

.hero-logo {
        opacity: 1;
        max-width: 100%;
        height: auto;
        max-height: 250px;
        margin-bottom: 2rem;
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.hero-logo.hidden {
        opacity: 0;
        transition: opacity 0.3 ease;
}

/* Seção História */
.history {
        padding: 5rem 0;
        background-color: #f8f9fa;
}

/* Cards de Valores */
.values .card {
        transition: transform 0.3s;
        margin-bottom: 2rem;
}

.values .card:hover {
        transform: translateY(-10px);
}


/* Carrossel de Modalidades */
.modalities .modalities-carousel {
        position: relative;
        overflow: hidden;
}

.modalities .modalities-items {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding: 20px 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
}

.modalities .modalities-items::-webkit-scrollbar {
        display: none;
}

.modalities .card {
        display: inline-block;
        width: 350px;
        height: 400px;
        margin: 0 15px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        flex: 0 0 auto;
}

.modalities .card img {
        height: 200px;
        object-fit: cover;
}

.modalities .card-body {
        padding: 1rem;
        height: 100%;
        /* display: flex; */
        flex-direction: column;
        justify-content: space-between;
}

.modalities .card-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
}

.modalities .card-text {
        font-size: 1rem;
        line-height: 1.4;
        /* overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal; */
}

.modalities .scroll-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1;
}

.modalities .scroll-button.left {
        left: 0;
}

.modalities .scroll-button.right {
        right: 0;
}

@media (max-width: 768px) {}




/* Preços */
.pricing {
        background-color: rgb(219, 219, 219);
}

.pricing .card {
        transition: transform 0.3s;
}

.pricing .card:hover {
        transform: scale(1.05);
}

.pricing .card-title-bg {
        background-color: var(--primary-blue);
}

.pricing .info-bg {
        background-color: #99000f;
}

.pricing .text-yellow {
        color: #ffefc4;
}



/* Aplicativos */
.applications .card {
        padding: 20px;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.applications .card-text {
        font-size: 1.2rem;
        font-style: italic;
        color: #555;
}

.applications .carousel-item {
        padding: 2rem;
}


.app-logo {
        height: 50px;
}


/* Depoimentos */
.testimonials .card {
        padding: 20px;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials .card-text {
        font-size: 1.2rem;
        font-style: italic;
        color: #555;
}

.testimonials .blockquote-footer {
        font-weight: bold;
        color: #333;
        margin-top: 10px;
}

.testimonials .carousel-item {
        padding: 2rem;
}

.testimonials .name {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 5px;
}

.testimonials .date {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 10px;
}

.testimonials .rating {
        color: #f5b301;
        margin-bottom: 10px;
}

/* Galeria */
.gallery img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 1.5rem;
        transition: transform 0.3s;
}

.gallery img:hover {
        transform: scale(1.05);
}

/* Footer */
footer {
        background-color: #333;
        color: white;
        padding: 3rem 0;
}

.social-icons a {
        color: white;
        margin-right: 1rem;
        font-size: 1.5rem;
        transition: color 0.3s;
}

.social-icons a:hover {
        color: var(--primary-red);
}



/* Estilo para os botões de navegação do carrossel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
        filter: invert(0.5) sepia(1) hue-rotate(180deg);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
        filter: brightness(0.5) invert(1);
}


/* Estilo do botão WhatsApp */
.btn-whatsapp {
        background-color: #068f38;
        /* Cor verde do WhatsApp */
        color: white;
        /* Texto branco */
        border: none;
        padding: 8px 20px;
        font-size: 0.9rem;
        border-radius: 5px;
        cursor: pointer;
        width: 200px;
        height: 40px;
        transition: transform 0.3s ease;
}

.btn-whatsapp:hover {
        background-color: #068f38;
        transform: scale(1.05);
}



.btn-matricula {
        background-color: var(--primary-red);
        color: white;
        border: none;
        padding: 8px 20px;
        font-size: 0.9rem;
        border-radius: 5px;
        cursor: pointer;
        width: 200px;
        height: 40px;
        transition: transform 0.3s ease;
}

.btn-matricula:hover {
        background-color: var(--primary-red);
        transform: scale(1.05);
}


.highlight-blue {
        color: var(--primary-blue);
        font-weight: bold;
}

.highlight-red {
        color: var(--primary-red);
        font-weight: bold;
}







/* Estilo do modal */
.image-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        align-items: center;
        justify-content: center;
}

.image-modal .image-modal-content {
        max-width: 90%;
        max-height: 90%;
}

.image-modal .image-modal-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #ffffff;
        font-size: 30px;
        font-weight: bold;
        cursor: pointer;
}

.image-modal .image-modal-prev,
.image-modal .image-modal-next {
        position: absolute;
        top: 50%;
        font-size: 30px;
        color: #ffffff;
        background-color: transparent;
        border: none;
        cursor: pointer;
        transform: translateY(-50%);
        padding: 10px;
}

.image-modal .image-modal-prev {
        left: 10px;
}

.image-modal .image-modal-next {
        right: 10px;
}







/* Fonte e estilo global */
.body {
        background-color: #f0f2f5;
        height: 100vh;
}

/* Contêiner de login centralizado */
.login-container {
        height: 100vh;
        width: 100%;
        background-color: #f0f2f5;
}

/* Caixa de login */
.login-box {
        width: 100%;
        max-width: 400px;
        background-color: #ffffff;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Estilo do título */
.login-box h2 {
        font-weight: 600;
        color: #333;
}

/* Estilo dos campos de entrada */
.login-box .form-control {
        border-radius: 5px;
        height: 45px;
}

/* Botão de login */
.login-box .btn-primary {
        background-color: #007bff;
        border: none;
        font-weight: 600;
        padding: 12px;
        border-radius: 5px;
        transition: background-color 0.3s;
}

.login-box .btn-primary:hover {
        background-color: #0056b3;
}

/* Link para recuperação de senha */
.login-box a {
        color: #007bff;
        transition: color 0.3s;
}

.login-box a:hover {
        color: #0056b3;
}



/* Container da imagem */
.hover-image {
        position: relative;
        display: inline-block;
        overflow: hidden;
        border-radius: 50%;
}

.hover-image .image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
}

/* Overlay do ícone */
.hover-image .overlay {
        position: absolute;
        bottom: -20px;
        left: 50px;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        border-radius: 50%;
        padding: 10px;
        opacity: 0;
        text-align: center;
        font-size: 2rem;
        text-decoration: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
}

.hover-image .overlay i {
        color: var(--primary-red);
        /* Cor do Instagram */
}

/* Efeito hover */
.hover-image:hover .image {
        transform: scale(1.1);
}

.hover-image:hover .overlay {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
}