@font-face {
    font-family: 'Montserrat';
    src: url('../assets/Montserrat,Noto_Sans,Poppins/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../assets/Montserrat,Noto_Sans,Poppins/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-background {
    background-image: linear-gradient(to right, #090b39, #081340, #091a46, #0a204d, #0b2753);
}

.navbar.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* MENU HAMBURGUER*/
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 0;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 6px;
}

.navbar-toggler span:nth-child(2) {
    top: 14px;
}

.navbar-toggler span:nth-child(3) {
    top: 22px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    top: 14px;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    top: 14px;
    transform: rotate(-45deg);
}


.nav-link.active {
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: white !important;
    position: relative;
    padding-bottom: 0.25rem;
}

.about-us .btn {
    color: #090b39 !important;
    background-color: transparent !important;
    border: 1px solid #090b39 !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500 !important;
    box-shadow: 20px 22px 17px -6px rgba(181,177,177,0.38);
    -webkit-box-shadow: 20px 22px 17px -6px rgba(181,177,177,0.38);
    -moz-box-shadow: 20px 22px 17px -6px rgba(181,177,177,0.38);
    border-radius: 0;
}

.about-us .btn:hover {
    color: white !important;
    background-color: #090b39 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}


.about-title {
    font-weight: 700;
}

.about-us-img {
    box-shadow: 10px 10px 17px -6px rgba(48, 48, 48, 0.38);
    -webkit-box-shadow: 10px 10px 17px -6px rgba(48, 48, 48, 0.38);
    -moz-box-shadow: 10px 10px 17px -6px rgba(48, 48, 48, 0.38);
}

.about-us-img:hover {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* licencas Section */
.licencas {
    background-color: #f8f9fa;
    margin-top: 7rem;
    padding-top: 7rem;
    margin-bottom: 7rem;
    padding-bottom: 7rem;
}
.licencas .card {
    transition: transform 0.3s ease;
    cursor: pointer;
    background: #fff;
    border-radius: 0;
}

.licencas .card:hover {
    transform: translateY(-10px);
}

.licencas .card-img-top {
    height: 280px;
    object-fit:  fill;
}

.licencas .card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.licencas .card-title i {
    font-size: 0.8em;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.licencas .card:hover .card-title i {
    opacity: 1;
    transform: translateX(5px);
}

.licencas .card-text {
    color: #666;
}

.licencas h6 {
    font-weight: 600;
    letter-spacing: 1px;
}

.licencas h2 {
    font-weight: 700;
    color: #333;
}

.accordion-button {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
}
  
.accordion-button:not(.collapsed) {
    border-color: #ccc;
    box-shadow: none;
}
  
.accordion-button {
    display: flex;
    justify-content: space-between;
}

.accordion-button::after {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}
  
.accordion-body {
    background-color: #f9f9f9;
    border-radius: 0 0 0.5rem 0.5rem;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 39, 83, 0.25);
    border-color: #0b2753;
}

.text-start {
    color: #212529;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.suporte{
    background-color: #fbfbfb;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

footer {
    background-image: linear-gradient(to right, #090b39, #081340, #091a46, #0a204d, #0b2753);
    color: white;
    padding: 4rem 0;
}

footer .logo-footer {
    max-width: 200px;
    margin-bottom: 1rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: #0d6efd;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
}

.site-seguro {
    max-width: 150px;
    width: 100%;
}

.text-description{
    font-size: 0.9rem;
    color: #ffffff;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    margin-top: -1px; /* Remove any gap between navbar */
}

.hero-content {
    position: relative;
    width: 100%;
    height: 600px; /* Match the image height */
    display: flex;
    align-items: center;
}

.hero-text {
    position: absolute;
    left: 10%;
    max-width: 500px;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Estilo padrão para todos os botões */
.hero-button,
.btn-primary,
.btn-outline-primary,
.btn-secondary,
.btn-outline-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background-color: #0078d4;
    color: #fff !important;
    border: none;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.hero-button:hover,
.btn-primary:hover,
.btn-outline-primary:hover,
.btn-secondary:hover,
.btn-outline-secondary:hover {
    background-color: #005a9e !important;
    color: #fff !important;
    border-color: #005a9e !important;
}

/* Reset outros estilos de botões do Bootstrap */
.btn {
    box-shadow: none !important;
    border: none !important;
}

.btn:active,
.btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-content {
        height: auto;
        min-height: 540px;
    }

    .hero-text {
        position: relative;
        left: 0;
        margin: 2rem auto;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 576px) {
    .hero-text {
        margin: 1rem;
        padding: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

/* Reset border-radius */
.btn,
.card,
.form-control,
.input-group-text,
.modal-content,
.alert,
.dropdown-menu,
.nav-pills .nav-link,
.pagination .page-link,
.list-group-item:first-child,
.list-group-item:last-child {
    border-radius: 0 !important;
}

/* Estilos da página de produto */
.produto {
    padding-top: 2rem;
}

.produto h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.produto .preco {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.produto .preco h2 {
    font-size: 2rem;
    color: #28a745;
    font-weight: bold;
}

.produto .descricao {
    color: #666;
    line-height: 1.6;
}

.produto .descricao ul li {
    margin-bottom: 0.5rem;
}

.produto img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}