@import url('https://fonts.googleapis.com/css2?family=Poppins:ital@0;1&family=Roboto+Mono:wght@500&family=Roboto:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    overflow-x: hidden;
    /* Impede scroll horizontal global */
    width: 100%;
    max-width: 100%;
}

button {
    display: inline-block;
    border: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

:root {
    --primary-color: #0080ff;
    --secondary-color: #0080ff;
    --light-color: #f8f9fa;
    --dark-color: #111;
    --text-color: #333333;
}

/* Navbar Style */
header {
    background: #fff;
    width: 100%;
    height: 85px;
    color: #007fc9;
    position: fixed;
    z-index: 9999;
}

.navbar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    margin: 10px;
    width: 220px;
    align-items: center;
}

.logo {
    font-weight: 600;
    font-size: 30px;
}

.navbar ul {
    display: flex;
    align-items: center;
}

.navbar ul li {
    margin: 0 15px;
    list-style: none;
}

.navbar ul li a {
    position: relative;
    padding: 8px 0;
    color: #007fc9;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s linear;
}

.navbar ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: auto;
    width: 0;
    height: 5px;
    border-radius: 10px;
    background-color: #00a5b1;
    transition: all 0.3s cubic-bezier(1, 1, 1, 1);
}

.nav-link {
    padding: 15px;
    margin: 0.6rem;
}

.login:hover {
    background: #003a92;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #007fc9;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
    right: auto;
    left: 0;
}

.hamburger {
    display: none;
    position: relative;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    display: inline-block;
    width: 100%;
    height: 3px;
    background-color: #007fc9;
    position: absolute;
    top: calc(50% - 1.5px);
    left: 0;
    transition: all 0.2s;
}

.hamburger span:first-child {
    transform: translateY(-300%);
    transform-origin: right top;
}

.hamburger span:last-child {
    transform: translateY(300%);
    transform-origin: right bottom;
}

.hamburger.active span:first-child {
    transform: rotate(45deg) scaleX(0.5) translateX(4px);
}

.hamburger.active span:last-child {
    transform: rotate(-45deg) scaleX(0.5) translateX(4px);
}

/* Navbar media query */
@media (max-width: 992px) {
    header {
        padding: 1px;
        background-color: #fff;
    }

    .navbar-container {
        max-width: 940px;
    }

    .hamburger {
        display: block;
    }

    .navbar ul {
        position: fixed;
        top: 80px;
        right: 0;
        width: 220px;
        height: 100%;
        padding: 40px 0;
        background-color: #f7f7f7;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        box-shadow: -8px 2px 10px rgba(0, 0, 0, 0.082);
        transform: translateX(100%);
        text-align: center;
        border-radius: 15px;
        transition: all 0.3s;
    }

    .navbar ul.active {
        transform: translateX(0);
    }

    .navbar ul li {
        margin: 0;
        width: 100%;
    }

    .navbar ul li a {
        display: block;
        padding: 15px;
    }

    .navbar ul li a::after {
        display: none;
    }

    .navbar ul li a:hover {
        color: #080808;
        background-color: #f0f0f0;
    }

    .navbar ul li a.active {
        color: #fff;
        background-color: #4761ff;
        border-radius: 10px;
    }

}

@media (max-width: 768px) {
    header {
        padding: 1px;
        height: 80px;
    }

    .navbar-container {
        max-width: 650px;
    }

    .navbar .logo {
        height: 100%;
    }
}

@media (max-width: 992px) {
    .navbar .logo {
        width: 200px;
    }
}

@media (max-width: 375px) {
    .navbar .logo {
        width: 200px;
    }
}

/* Home Style */
#home-page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    padding: 0px;
    /*     background: url(../assets/home-secatt-bg.png) no-repeat center center/cover; */
    background: #0053D1;
    /*     background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: color; */
    color: #fff;
    text-align: center;
}


.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    max-width: 1600px;
    width: 100%;
}

.text-section .home-btn {
    display: block;
    padding: 10px 20px;
    color: #fff;
    background: #2ca0ff;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.2rem;
    cursor: pointer;
    text-align: center;
    width: 300px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.text-section .home-btn:hover {
    background: #0089c9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.text-section .home-btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-section h1 {
    margin-top: 2.8rem;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.text-section p {
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 700;
    color: #fffc40;
}

.blue-text {
    color: #00a2ff;
}

.home-image-section img {
    width: 100%;
    border-radius: 20px;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .text-section h1 {
        font-size: 1.5rem;
        text-align: left;
        margin: 5.5rem 0rem 0rem 1rem;
    }

    .text-section p {
        font-size: 1rem;
        text-align: left;
        margin: 1rem;
    }

    .text-section .home-btn {
        margin: 15px;
        width: 220px;
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .home-page {
        flex-direction: row;
        text-align: left;
        margin: 1rem;
    }

    .text-section {
        flex: 1;
        padding-right: 30px;
    }

    .home-image-section {
        flex: 1;
    }
}

/* Who we are Style */
#about-section {
    padding: 50px 0;
    background: linear-gradient(to left, #ffffff, #f0f0f0, #e0e0e0);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-about {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.w-section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-color);
    line-height: 1.6;
}

.about-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.highlight {
    color: #fbff00;
    font-weight: 600;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    flex: 1 1 200px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .w-section-title {
        font-size: 2rem;
    }

    .about-text,
    .about-image {
        min-width: 100%;
    }
}

/* Objetivo Style */
.objetivo {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.objetivo .container {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.objetivo h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    position: relative;
}

.objetivo h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b00;
    margin: 10px auto;
}

.objetivo-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.objetivo-text {
    flex: 1;
}

.objetivo-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #202020;
    margin-bottom: 1.5rem;
}

.objetivo-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.objetivo-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.objetivo-img img:hover {
    transform: scale(1.03);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #eeff00;
    font-size: 1.2rem;
    color: #111;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #927c00;
}

/* Responsivo */
@media (max-width: 768px) {
    .objetivo .container {
        text-align: left;
    }

    .objetivo-content {
        flex-direction: column;
    }

    .objetivo-img {
        margin-top: 2rem;
    }

    .btn {
        font-size: 1rem;
    }
}

/* Services Style */
#servicos {
    position: relative;
    padding: 5rem 0;
    background: url(../assets/highway.png) no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: color;
    background-attachment: fixed;
}

/* #servicos::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            hsl(222.2, 47.4%, 11.2%, 0.8) 0%,
            hsl(211, 98%, 19%) 50%,
            hsl(211, 86%, 70%, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
} */

#servicos>* {
    position: relative;
    z-index: 2;
}

#servicos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

#servicos .subtitulo {
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 3rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    /* Reduzi o gap para caber mais cards */
}

.servico-card {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.servico-card h3 {
    font-size: 1.3rem;
    color: #007fc9;
    font-weight: 800;
    margin-bottom: 1rem;
}

.servico-card p {
    color: #111;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-servico {
    display: inline-block;
    padding: 10px 20px;
    background: #007fc9;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-servico:hover {
    background: #003a92;
}

@media (min-width: 1400px) {
    .servicos-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 colunas em telas muito grandes */
    }
}

/* Ajuste para 2 colunas em tablets */
@media (max-width: 992px) {
    .servicos .container {
        padding: 5px;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 coluna em mobile */
@media (max-width: 576px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Style */
.site-footer {
    background-color: #111;
    color: #ecf0f1;
    padding: 40px 0 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #007fc9;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 1px;
    background: #007fc9;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #003a92;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #f7f7f7;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #003a92;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    /*     border-top: 1px solid #34495e; */
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-section {
        flex: 100%;
        margin-bottom: 30px;
    }
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 12px;
    /* Largura da barra de rolagem */
}

/* Estilizando a parte interna da barra de rolagem */
::-webkit-scrollbar-track {
    background: #303030;
    /* Cor do fundo da barra de rolagem */
}

/* Estilizando o polegar da barra de rolagem */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, #003a92, #00a2ff);
    /* Cor do polegar da barra de rolagem */
    border-radius: 15px;
    /* Bordas arredondadas no polegar */
}

/* Cor do polegar ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
    background: #00415f;
    /* Cor do polegar ao passar o mouse */
}

::selection {
    background-color: #001824;
    color: #fff;
}

.category-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: #555;
    margin: 0 10px;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    font-weight: normal;
    transition: all 0.3s ease;
}

.category-btn.active {
    font-weight: bold;
    color: #000;
    border-bottom: 2px solid #2c6efc;
    /* azul igual da imagem */
}

/* Carousel Style */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color system */
    --background: #111;
    --foreground: hsl(0, 0%, 98%);
    --primary: hsl(189, 100%, 50%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-glow: hsl(263, 70%, 65%);
    --secondary: hsl(240, 4%, 16%);
    --muted-foreground: hsl(240, 5%, 64.9%);
    --border: hsl(240, 6%, 20%);

    /* Custom design tokens */
    --gradient-primary: linear-gradient(135deg, hsl(226, 70%, 50%), hsl(184, 70%, 60%));
    --gradient-btn: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(184, 70%, 60%));
    --gradient-p: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(184, 70%, 60%));
    --gradient-secondary: linear-gradient(135deg, hsl(240, 10%, 3.9%), hsl(240, 5%, 6%));
    --glass-bg: hsla(240, 10%, 3.9%, 0.7);
    --glass-border: hsla(263, 70%, 50%, 0.2);
    --shadow-glow: 0 20px 40px -10px hsla(263, 70%, 50%, 0.3);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main section */
.carousel-section {
    background: var(--background);
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.background-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    animation: float 3s ease-in-out infinite;
}

.particle-1 {
    top: 25%;
    left: 25%;
    width: 25px;
    height: 25px;
    opacity: 0.3;
}

.particle-2 {
    top: 75%;
    right: 25%;
    width: 35px;
    height: 35px;
    opacity: 0.2;
    animation-delay: 1s;
}

.particle-3 {
    top: 50%;
    left: 16.67%;
    width: 8px;
    height: 8px;
    opacity: 0.4;
    animation-delay: 2s;
}

.particle-4 {
    top: 20%;
    left: 70.67%;
    width: 10px;
    height: 10px;
    opacity: 0.4;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Container */
.cr-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: #3da8ff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.35rem;
    color: #e0e0e0;
    max-width: 42rem;
    margin: 0 auto;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 75rem;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem;
    }
}

/* Image section */
.slide-image {
    position: relative;
}

/* .image-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 1rem;
    filter: blur(2rem);
    opacity: 0.2;
    transition: opacity 0.5s ease;
} */

.slide-image:hover .image-glow {
    opacity: 0.3;
}

.image-container {
    position: relative;
    backdrop-filter: blur(16px);
    border-radius: 1rem;
}

.image-container img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;

}

@media (min-width: 768px) {
    .image-container img {
        height: 20rem;
    }
}

/* Text section */
.slide-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.text-content h3 {
    font-size: clamp(1.875rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--foreground);
}

.text-content p {
    font-size: 1.1rem;
    color: #bebebe;
    line-height: 1.7;
}

/* Buttons */
.slide-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #2ca0ff;
    color: #eee;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -80px hsla(197, 70%, 50%, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 0.25rem;
    border-radius: 50%;
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow);
    z-index: 10;
}

.nav-arrow:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow-left {
    left: 0.8rem;
}

.nav-arrow-right {
    right: 0.8rem;
}

/* Dots indicator */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.25);
}

.dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cr-container {
        padding: 3rem 1rem;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .nav-arrow-left {
        left: 0.5rem;
    }

    .nav-arrow-right {
        right: 0.5rem;
    }

    .slide-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Seção principal */
#missao-institucional {
    background: linear-gradient(to right, #000f25, #001e4b, #003a92);
    padding: 5rem 1.5rem;
}

.missao-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* Título */
#missao-institucional h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#missao-institucional p {
    color: #dfdfdf;
}

/* Responsividade para telas menores */
@media (max-width: 600px) {
    #missao-institucional {
        padding: 3rem 1rem;
    }
}

:root {
    --primary-accent: #00a1ff;
    --secondary-accent: #FFD700;
    --text-light: rgba(255, 255, 255, 0.95);
    --bg-gradient: linear-gradient(to right, #000f25, #001e4b, #003a92);
}

.training-benefits {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', system-ui, sans-serif;
}

.benefits-heading {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 3rem !important;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.benefits-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
    border-radius: 3px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 40, 80, 0.589);
    border-left: 10px solid var(--secondary-accent);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 80, 120, 0.4);
    transform: translateX(5px);
}

.benefit-icon {
    color: var(--secondary-accent);
    font-size: 1.4rem;
    margin-right: 1.3rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.benefit-content {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.benefit-text {
    color: #eee;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .training-benefits {
        padding: 1.5rem 1rem;
    }

    .benefits-heading {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }

    .benefit-item {
        padding: 1rem 1.2rem;
    }

    .benefit-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-heading {
        font-size: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .benefits-heading::after {
        width: 70px;
        height: 2px;
    }

    .benefit-icon {
        margin-right: 1rem;
        font-size: 1.2rem;
    }
}

/* Secatt Target */
/* Estilos Base */
.secatt-target-section {
    background: linear-gradient(135deg, #001a3d 0%, #003a92 100%);
    padding: 80px 20px;
    color: #fff;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.secatt-target-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Efeitos de Fundo */
.secatt-target-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 235, 59, 0.08) 0%, transparent 30%);
    z-index: 1;
}

/* Cabeçalho */
.secatt-header {
    text-align: center;
    margin-bottom: 50px;
}

.secatt-target-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbff00;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.secatt-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #fbff00, #fffb00);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.secatt-target-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Layout de Conteúdo */
.secatt-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

/* Lista */
.secatt-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.secatt-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.secatt-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #fbff00;
    transform: translateX(5px);
}

.list-icon {
    color: #fbff00;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 20px;
    padding-top: 2px;
}

.list-text {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Caixa de Contato */
.secatt-contact-box {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    background: rgba(0, 30, 80, 0.6);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.secatt-contact-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.secatt-contact-title {
    font-size: 1.5rem;
    text-align: center;
    color: #fbff00;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    color: #fbff00;
    font-size: 1.1rem;
}

.contact-link {
    color: #fbff00;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.secatt-cta-button {
    background: linear-gradient(to right, #fbff00, #FFA000);
    color: #001a3d;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.secatt-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Rodapé */
.secatt-footer {
    margin-top: 60px;
    text-align: center;
    position: relative;
}

.secatt-footer-text {
    font-size: 1.1rem;
    color: #fbff00;
    font-style: italic;
    margin-bottom: 10px;
}

.secatt-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fbff00;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.secatt-logo::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #FFD700, transparent);
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-info {
        flex-direction: column;
    }

    .secatt-target-list {
        grid-template-columns: 1fr;
    }

/*     .secatt-contact-box {
        order: -1;
    } */
}

@media (max-width: 768px) {
    .secatt-target-title {
        font-size: 2rem;
    }

    .secatt-target-subtitle {
        font-size: 1.1rem;
    }

    .secatt-list-item {
        padding: 12px 15px;
    }

    .secatt-contact-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .secatt-target-section {
        padding: 60px 15px;
    }

    .secatt-target-title {
        font-size: 1.8rem;
    }

    .secatt-contact-title {
        font-size: 1.3rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }
}

/* Whatsapp Style */
#whats {
    position: fixed;
    bottom: 3rem;
    right: 2.5rem;
    z-index: 9999;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#whats:hover {
    filter: brightness(150%);
}

.whats-img {
    width: 55px;
    transition: all 0.3s ease;
}

.whats-api {
    position: fixed;
    bottom: 3rem;
    right: 2.5rem;
    z-index: 9999;
    border-radius: 50px;
    cursor: pointer;
}

/* Base Styles */
.mvv-container {
    position: relative;
    padding: 8rem 2rem;
    background-color: #fff;
    overflow: hidden;
}

.mvv-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.mvv-starburst {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    z-index: 0;
    opacity: 0.3;
    animation: rotate 60s linear infinite;
}

.mvv-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 700;
    color: #000;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.mvv-title-highlight {
    color: #007fc9;
    position: relative;
    display: inline-block;
}

.mvv-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgb(21, 46, 78);
    z-index: -1;
    border-radius: 3px;
}

/* Cards Layout */
.mvv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mvv-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mvv-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

/* Card Specific Styles */
.mvv-card-icon {
    font-size: 1rem;
    background: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-card-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mvv-card-text {
    color: #555;
    line-height: 1.7;
}

/* Mission Card */
.mvv-card-mission .mvv-card-decoration {
    background: linear-gradient(90deg, #001824, #007fc9);
}

/* Vision Card */
.mvv-card-vision .mvv-card-decoration {
    background: linear-gradient(90deg, #01a2ff, rgb(255, 246, 122));
}

.mvv-vision-graphic {
    margin-top: 2rem;
    position: relative;
    height: 60px;
}

.mvv-vision-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #001824, #007fc9);
    transform: translateY(-50%);
}

.mvv-vision-dots {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.mvv-vision-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #003a92;
}

.mvv-vision-dots span:nth-child(2) {
    background: #003a92;
}

.mvv-vision-dots span:nth-child(3) {
    background: #003a92;
}

/* Values Card */
.mvv-card-values .mvv-card-decoration {
    background: linear-gradient(90deg, #f1c40f, #00aaff);
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-values-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.mvv-values-list svg {
    width: 18px;
    height: 18px;
    fill: #2ecc71;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mvv-title {
        text-align: left;
        font-size: 1.6rem;
    }

    .mvv-container {
        padding: 5rem 1.5rem;
    }

    .mvv-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mvv-card {
        padding: 2rem;
    }

    .mvv-starburst {
        width: 200px;
        height: 200px;
        top: -30px;
        right: -30px;
    }
}

/* Service Carousel Style */
/* Reset básico para evitar conflitos */
.tr-edu-services-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Estilos da seção principal */
.tr-edu-services-wrapper {
    padding: 50px 20px;
    background: url(../assets/highway.png) no-repeat center center/cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: color;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-attachment: fixed;
}

.tr-edu-header-block {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tr-edu-main-title {
    font-size: 2.5rem;
    color: #3da8ff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.tr-edu-subtitle {
    color: #eee;
    font-size: 1rem;
    line-height: 1.5;
}

/* Container do carrossel */
.tr-edu-carousel-holder {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    overflow: hidden;
}

/* Trilha dos slides */
.tr-edu-slide-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding-bottom: 10px;
}

/* Card individual */
.tr-edu-single-card {
    flex: 0 0 calc(100% - 20px);
    min-width: 0;
    scroll-snap-align: start;
}

.tr-edu-card-content {
    background: white;
    border-radius: 10px;
    padding: 45px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.tr-edu-single-card:hover .tr-edu-card-content {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Estilos do conteúdo do card */
.tr-edu-icon-holder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
    background: #eff6ff;
    /* Cor de fundo opcional */
}

.tr-edu-card-icon {
    width: auto;
    height: 110%;
    /* Aumenta a altura da imagem */
    min-width: 100%;
    /* Garante que a largura mínima cubra o container */
    object-fit: cover;
    object-position: center;
}

.tr-edu-card-title {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.tr-edu-card-text {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.tr-edu-card-link {
    display: block;
    color: #3b82f6;
    text-align: center;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tr-edu-card-link:hover {
    color: #2563eb;
}

/* Botões de navegação */
.tr-edu-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #3b82f6;
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr-edu-nav-btn:hover {
    background: #3b82f6;
    color: white;
}

#trEduPrevBtn {
    left: 10px;
}

#trEduNextBtn {
    right: 10px;
}

/* Pontos de navegação */
.tr-edu-dots-holder {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.tr-edu-dots-holder span {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tr-edu-dots-holder span.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* Responsividade */
@media (min-width: 640px) {
    .tr-edu-single-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (min-width: 768px) {
    .tr-edu-nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (min-width: 1024px) {
    .tr-edu-single-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (min-width: 1280px) {
    .tr-edu-single-card {
        flex: 0 0 calc(25% - 20px);
    }

    .tr-edu-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
}