* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
@font-face {
    font-family: 'Stencil';
    src: url('../fonts/STENCIL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    display: swap;
}
body {
    font-family: "Instrument Sans", serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #000;
}
section, footer {
    overflow-x: clip;
}
/* Header */
header {
    position: absolute;
    z-index: 3;
    top: 0;
    width: 100%;
    padding: 0 20px;
    background: linear-gradient(90.83deg, rgba(41, 41, 41, 0.5) 30.75%, #000000 73.48%);
    overflow: hidden hidden;
}
.header > .btn-primary ~.btn-primary {
    margin-left: 20px;
}
.expansion-page header {
    position: relative;
}
.expansion-page::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(189.81deg, #C6CFDB 0.95%, #FFFFFF 80.19%);
}
.expansion-page .wrapper,
.highlight-header .wrapper {
    max-width: 1520px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1520px;
    margin: 0 auto;
    overflow: hidden;
}
.logo {
    display: flex;
    align-items: center;
    gap: 40px;
}
nav {
    flex: 1;
    padding: 0 30px;
}
nav ul {
    display: flex;
    gap: 48px;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 820px;
}
nav ul {
    max-width: 660px;
}
nav li {
    padding: 43px 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16rem;
    padding-bottom: 43px;
    position: relative;
}
nav ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ff0000;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}
nav ul li a:hover::after {
    width: 100%;
}
.header .btn-primary {
    font-size: 13px;
    padding: 10px 20px;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    color: #fff;
}
.menu-toggle.active {
    transform: rotate(90deg);
}
.header-buttons.show-desktop {
    display: flex;
    gap: 20px;
}
.show-mobile {
    display: none;
}
.show-desktop {
    display: block;
}
@media screen and (max-width: 1500px){
    nav ul {
        gap: 40px;
    }
}
/* Mobile styles */
@media (max-width: 1350px) {
    header {
        padding: 20px;
        max-width: 100vw;
    }
    .show-mobile {
        display: block;
    }
    .show-desktop {
        display: none !important;
    }
    .logo {
        z-index: 2;
    }
    .menu-toggle {
        display: block;
        z-index: 2;
    }
    nav {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        padding-top: 124px;
        padding-bottom: 50px;
        background: #000;
        text-align: center;
        display: flex;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;

        transform: translate(100%, -100%);
        /* transition: all 0.3s ease-in-out; */
        transition: opacity .3s ease-in-out, transform .3s ease-in-out, visibility .3s ease-in-out;
        z-index: 1;
        border-bottom: 1px solid #ff0000;
    }
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    nav ul li {
        padding: 15px;
    }
    nav ul li a{
        padding: 10px;
    }
    nav ul .btn-primary {
        margin: 0 auto;
    }
    nav.active {
        visibility: visible;
        opacity: 1;
        transform: translate(0);
    }
    .menu-toggle.active::before {
        content: '\2715'; /* Unicode for 'X' */
    }
    .menu-toggle::before {
        content: '\2630'; /* Unicode for hamburger menu */
    }
}
@media screen and (max-width: 576px){
    .logo {
        gap: 20px;
    }
    .logo a img {
        width: 130px;
        height: auto;
        aspect-ratio: 5.02;
    }
    .logo > img {
        width: 100px;
        height: auto;
        aspect-ratio: 3.73;
    }
}
@media screen and (max-width: 380px){
    .logo a img {
        width: 110px;
    }
    .logo > img {
        width: 80px;
    }
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    max-height: 95vh;
    min-height: 370px;
    color: #fff;
    aspect-ratio: 1.777;
}
.hero video {
    width: 100%;
    height: auto;
    max-height: 95vh;
    min-height: 370px;
    object-fit: cover;
    object-position: bottom;
    background-color: #000;
    aspect-ratio: 1.777;
}
.hero .content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0000004D;
}
.hero .content h1 {
    font-family: 'Stencil', Arial, sans-serif;
    font-weight: 400;
    font-size: 65px;
    line-height: 1.23;
}
.hero .content p {
    font-size: 20px;
    line-height: 2;
    margin: 32px auto 48px;
}
.btn-fullscreen {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    gap: 10px;
    transition: all .3s ease;
}

.btn-fullscreen:hover {
    background-color: rgba(0, 0, 0, 0.336);
}
@media screen and (max-width: 1200px){
    .hero .content {
        padding-top: 60px;
    }
    .hero .content h1 {
        font-size: 45px;
    }
    .hero .content p {
        font-size: 18px;
        margin: 24px auto 32px;
    }
    .hero .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}
@media screen and (max-width: 991px){
    .btn-fullscreen {
        right: 5px;
        left: auto;
        bottom: 10px;
        transform: none;
    }
    .btn-fullscreen span {
        display: none;
    }
}
@media screen and (max-width: 768px){
    .hero .content h1 {
        font-size: 36px;
    }
    .hero .content p {
        font-size: 16px;
        margin: 16px auto 20px;
    }
    .hero .content p br{
        display: none;
    }
}
@media screen and (max-width: 576px){
    .hero .content h1 {
        font-size: 32px;
    }
    .hero .content p {
        font-size: 14px;
        margin: 10px auto 12px;
    }
    .hero .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }
}
@media screen and (max-width: 400px){
    .hero .content {
        padding: 65px 15px 15px;
    }
    .hero .content h1 {
        font-size: 26px;
        line-height: 1em;
    }
}

/* Solutions */
.solutions {
    position: relative;
    background-color: #000000;
    margin-bottom: -148px;
    padding: 0 20px;
}
.solutions-header {
    position: relative;
    padding: 148px 0 48px;
    color: #fff;
}
.wrapper {
    margin-bottom: -148px;
    position: relative;
    z-index: 2;
}
.solutions-header h2{
    font-size: 50px;
    font-weight: 400;
    line-height: 1.4;
    margin: 28px 0;
    position: relative;
    color: #fff;
    transition: color 0.5s ease-in-out;
}
.solutions-header h2.active {
    background: linear-gradient(82.76deg, #848484 34.31%, #848484 81.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solutions-header h2.outdated {
    background: linear-gradient(82.76deg, #848484 34.31%, #E8E8E8 81.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.solutions-header h2:not(.active):not(.outdated) {
    background: none;
    color: #fff;
}
.solutions-header h2 span {
    font-weight: 600;
}
.solutions-header p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 890px;
    margin: 0 auto;
}
.missile-solutions-wrapper {
    width: 100%;
    position: absolute;
    top: 215px;
    left: -450px;
    transform-origin: left;
}
.missile-solutions {
    position: absolute;
    left: 0;
    top: 49%;
    width: 450px;
    transition: transform .7s ease-in-out;
    animation: missile-move 3s ease-in-out infinite;
    z-index: 3;
    display: none;
}
.missile-solutions.active {
    display: block;
}
@keyframes missile-move {
    0% { transform: translateX(0); }
    65% { transform: translateX(calc(50vw - 280px + 520px)); }
    70% { transform: translateX(calc(50vw + 260px )); }
    100% { transform: translateX(calc(100vw + 350px)); }
}
.solutions, .clients, .careers {
    text-align: center;
}
.solutions .grid {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    border-radius: 8px;
    min-height: 615px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #fff;
    width: calc(33% - 64px);
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("sua-imagem.jpg");
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease-in-out;
  }
.solutions .card:nth-child(1)::before {
    background-image: url("../images/card-precision.webp");
}
.solutions .card:nth-child(2)::before {
    background-image: url("../images/card-services.webp");
}
.solutions .card:nth-child(3)::before {
    background-image: url("../images/card-quality.webp");
}
.card:hover::before {
    transform: scale(1.05);
}
.card-content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translate(15%, 15%);
    transition: all 0.6s ease-out;
    opacity: 0;
    z-index: 1;
}
.card-content h3 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.16rem;
    margin-bottom: 48px;
}
.card-content p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.card button {
    font-size: 13px;
    padding: 10px 20px;
    letter-spacing: 0.16em;
    transform: translateY(50%);
    transition: all 0.6s ease-out;
    opacity: 0;
    z-index: 1;
}
.card .card-title {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: left;
    transition: all 0.6s ease-out;
    opacity: 1;
    padding: 60px 36px;
    width: 100%;
    z-index: 2;
}
.card-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(50.04deg, rgba(36, 36, 36, 0.5) 14.02%, rgba(0, 0, 0, 0.5) 85.98%);
    opacity: 0;
    transition: all 0.6s ease-out;
    z-index: 0;
}
.overlay-tittle {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 175px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -5.71%, #000000 64.57%);
}
.card:hover {
    background-size: 510%;
}
.card:hover .card-overlay {
    opacity: 1;
}
.card:hover .card-content {
    transform: translate(0);
    opacity: 1;
}
.card:hover button {
    transform: translateY(0);
    opacity: 1;
    z-index: 3;
}
.card:hover .card-title {
    opacity: 0;
}
.limited-text {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  line-clamp: 9;
  overflow: hidden;
  line-height: 1.5em;
  height: calc(1.5em * 9);
}
.carousel-container {
    position: relative;
    /* max-width: 800px; */
    margin: auto;
    overflow: hidden;
}
.carousel {
    display: flex;
    transition: transform 0.4s ease-in-out;
}
.carousel-item {
    /* min-width: 100%; */
    flex: 0 0 auto;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 10px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(175 175 175 / 50%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    z-index: 10;
    width: 4ch;
    height: 4ch;
    display: none;
    justify-content: center;
    align-items: center;
}
.prev {
    left: 0;
    padding-right: 2px;
    padding-bottom: 2px;
}
.next {
    right: 0;
    padding-left: 2px;
    padding-bottom: 2px;
}
.disabled {
    opacity: 0.3;
    display: none !important;
    pointer-events: none;
}
@media (max-width: 1200px) {
    .carousel-container {
        padding: 0 2%;
    }
    .carousel-item {
        width: 46%;
    }
    .carousel {
        gap: 2%;
    }
    .carousel-btn {
        display: flex;
    }
}
@media (max-width: 768px) {
    .carousel-item {
        width: 96%;
    }
    .card .card-overlay {
        opacity: 1;
    }
    .card .card-content {
        transform: translate(0);
        opacity: 1;
    }
    .card button {
        transform: translateY(0);
        opacity: 1;
        z-index: 3;
    }
    .card .card-title {
        opacity: 0;
    }
}
@media (max-width: 576px) {
    .solutions-header {
        padding: 74px 0 48px;
    }
    .solutions-header h2{
        font-size: 36px;
        margin: 28px 0;
    }
    .solutions-header p {
        font-size: 16px;
    }
    .missile-solutions-wrapper {
        top: 0;
    }
    .missile-solutions {
        top: 140px;
        width: 250px;
    }
}
/* Partner */
.partner {
    position: relative;
    display: flex;
    min-height: 1150px;
    z-index: 1;
}
.partner-container {
    background-color: #C6CFDB;
    margin-bottom: 100px;
    width: 65%;
    min-width: 860px;
}
.partner .partner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding-top: 260px;
    padding-bottom: 140px;
    padding-left: calc(((100vw - 1321px)/2) );
}
.partner .partner-content .partner-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.partner .partner-content h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.75em;
}
.partner .partner-content h2 span {
    font-weight: 600;
}
.partner .partner-content p {
    font-size: 18px;
    line-height: 1.77em;
    max-width: 644px;
}
.partner .partner-background {
    position: relative;
    background-color: #ff0000;
    width: 35%;
    border-bottom-left-radius: 8px;
}
.partner .partner-background img {
    position: absolute;
    left: 0;
    top: 240px;
    margin-left: -20%;
}
@media screen and (max-width: 1380px){
    .partner .partner-container {
        min-width: 700px;
        width: 85%;
    }
    .partner .partner-content {
        padding-left: 20px;
        padding-right: 150px;
    }
    .partner .partner-background img {
        width: 370px;
        height: auto;
        margin-left: -35%;
    }
}
@media screen and (max-width: 991px){
    .partner .partner-container {
        min-width: 600px;
        width: 85%;
    }
    .partner .partner-content {
        gap: 24px;
    }
    .partner .partner-background img {
        width: 260px;
        margin-left: -110px;
    }
    .partner .partner-content h2 {
        font-size: 36px;
    }
    .partner .partner-content p {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px){
    .partner {
        flex-direction: column;
        height: auto;
    }
    .partner .partner-container {
        width: 100%;
        min-width: auto;
        order: 1;
        margin-bottom: 0;
    }
    .partner .partner-content {
        gap: 18px;
        padding-right: 20px;
        padding-bottom: 100px;
        text-align: center;
        align-items: center;
    }
    .partner .partner-content .btn-primary {
        font-size: 12px;
    }
    .partner .partner-background {
        width: 100%;
        order: 0;
        background-color: #C6CFDB;
        text-align: center;
    }
    .partner .partner-background img{
        position: relative;
        margin: 0;
        top: 200px;
        width: 75%;
    }
}
@media screen and (max-width: 576px){
    .partner .partner-content {
        padding-top: 230px;
    }
    .partner .partner-content h2 {
        font-size: 28px;
    }
    .partner .partner-content p {
        font-size: 14px;
    }
    .partner .partner-content .partner-header {
        flex-direction: column-reverse;
    }
    .partner .partner-content .partner-header img{
        width: 90px;
        height: 90px;
    }
}
/* Clients */
.clients {
    margin-top: 148px;
}
.clients .clients-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.clients h2 {
    margin: 32px 0;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.75em;
}
@media screen and (max-width: 576px){
    .clients {
        margin-top: 74px;
    }
    .clients h2 {
        margin: 14px 0 18px;
        font-size: 32px;
    }
    .clients .subtitle {
        font-size: 13px;
    }
}
/* Technology */
.technology {
    margin-top: 148px;
}
.technology .wrapper {
    display: flex;
}
.technology .technology-video {
    width: 50%;
    margin-right: 80px;
    border-radius: 8px;
    aspect-ratio: 1.2;
    overflow: hidden;
}
/* .technology .technology-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000dc;
    z-index: 1;
} */
.technology .technology-video video{
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    margin-right: 80px;
    object-fit: cover;
    z-index: -1;
}
.technology .technology-video h3{
    padding: 42px 0;
    font-size: 32px;
    line-height: 1.56em;
    font-weight: 400;
    color: #fff;
    text-align: center;
    z-index: 5;
    height: 100%;
    background: linear-gradient(0deg, #00000000 70.31%, #0000002d 92.9%);
}
.technology .technology-video h3 span {
    color: #FF0000;
    font-weight: 600;
}
.technology .technology-content {
    width: 50%;
    padding: 28px 20px 28px 0;
}
.technology .technology-content .subtitle {
    margin-bottom: 32px;
}
.technology .technology-content h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.75em;
}
.technology .technology-content p {
    font-size: 18px;
    line-height: 1.77em;
    max-width: 644px;
    margin: 32px 0 65px;
}
.technology-items {
    position: relative;
    margin-bottom: 48px;
}
.technology-items li {
    position: relative;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.3s ease;
}
.technology-items li a {
    text-decoration: none;
}
.technology .buttons {
    display: flex;
    gap: 32px;
    margin-bottom: 18px;
}
@media screen and (max-width: 1370px){
    .technology .wrapper {
        padding: 0 20px;
    }
}
@media screen and (max-width: 991px){
    .technology .wrapper {
        flex-direction: column;
    }
    .technology .technology-content {
        width: 100%;
    }
    .technology .technology-video {
        width: 100%;
        height: 400px;
    }
    .technology .technology-content p {
        margin: 24px 0 42px;
    }
    .technology-items li {
        margin-bottom: 15px !important;
    }
}
@media screen and (max-width: 576px){
    .technology {
        margin-top: 74px;
    }
    .technology .wrapper {
        flex-direction: column;
    }
    .technology .technology-content h2 {
        font-size: 32px;
    }
    .technology .technology-content p {
        margin: 18px 0 24px;
        font-size: 16px;
    }
    .technology .buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 24px;
    }
    .technology .buttons .btn-secondary {
        font-size: 14px;
        padding: 10px 20px;
    }
    .technology .technology-content button,
    .technology .technology-content a {
        font-size: 14px;
        padding: 10px 20px;
    }
}
/* Careers */
.careers {
    background-color: #1f2c3d; 
    color: white;
    padding: 60px 10%;
    padding: 162px 0;
    margin-top: 248px;
    position: relative;
}
.careers .wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
}
.careers-image {
    position: relative;
    max-width: 640px;
}
.careers-image img {
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 64/62.4;
    width: 100%;
    height: auto;
}
.red-box {
    position: absolute;
    width: calc((100vw - 1320px)/2 + 320px);
    height: 100%;
    background-color: red;
    top: 100px;
    left: 0;
    border-bottom-right-radius: 8px;
}
.careers-content {
    max-width: 600px;
    text-align: left;
}
.careers-content .subtitle {
    color: #C6CFDB;
}
.careers-content h2 {
    font-size: 40px;
    line-height: 1.75em;
    margin: 32px 0;
}
.careers-content > p {
    font-size: 18px;
    line-height: 1.77em;
    margin-bottom: 24px;
}
.blue-box {
    position: absolute;
    width: 30vw;
    height: 100px;
    background-color: #6383A6;
    top: -100px;
    right: 0;
    border-top-left-radius: 8px;
}
@media (max-width: 1370px) {
    .careers .wrapper {
        padding: 0 20px;
    }
}
@media (max-width: 1180px) {
    .red-box {
        width: 22%;
    }
}
@media (max-width: 768px) {
    .careers {
        margin-top: 74px;
        padding: 74px 0;
    }
    .careers .wrapper {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }
    .careers-content h2 {
        font-size: 32px;
    }
    .careers-content p {
        font-size: 16px;
    }
    .careers-image {
        max-width: 100%;
    }
    .careers-content {
        max-width: 100%;
    }
    .red-box {
        width: calc(50vw - 20px);
        height: calc(100vw - 20px);
        top: 52px;
        left: 0;
    }
}
@media (max-width: 576px) {
    .blue-box {
        height: 50px;
        top: -50px;
    }
}
/* Accordion */
.accordion {
    width: 100%;
}
.accordion-item {
    background-color: #1f2c3d;
    margin-bottom: 20px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    color: #000;
    background-color: #fff;
    padding: 8px 20px 8px 28px;
    text-align: left;
    font-size: 22px;
    line-height: 1.45em;
    border: none;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.accordion-header.active {
    background-color: #6383A6;
    color: #fff;
}
.accordion-header .btn-primary {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.13em;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    text-align: center;
    text-transform: none;
    min-width: fit-content;
}
.accordion-content {
    background-color: #fff;
    color: #000;
    padding: 32px;
    display: none;
    border-radius: 4px;
    margin-top: 10px;
}
.accordion-content h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.77em;
    margin-bottom: 16px;
}
.accordion-content p {
    font-size: 16px;
    line-height: 1.62em;
    margin-bottom: 16px;
}
.accordion-content ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 32px;
}
.accordion-content .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.13em;
}
.accordion-content.show {
    display: block;
}

/* About */
.about {
    margin-top: 248px;
    background-color: #3F5265;
    position: relative;
}
.about .wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 148px 0;
}
.expansion-page .about .wrapper {
    padding: 100px 0 148px;
}
.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    text-align: left;
    color: #fff;
}
.about-content .subtitle {
    color: #C6CFDB;
}
.about-content h2 {
    font-size: 40px;
    line-height: 1.75em;
}
.expansion-page .about-content h2 {
    font-weight: 600;
}
.about-content p {
    font-size: 18px;
    line-height: 1.77em;
}
.about-content .certificates {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: center;
}
.about-image {
    position: relative;
    min-width: 400px;
    margin-left: auto;
}
.about-image img {
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 64.4 / 57.9;
    width: 100%;
    height: auto;
}
.expansion-page .about-image img {
    aspect-ratio: 59.2 / 42.2;
}
.about .blue-box {
    top: -100px;
    padding-right: calc(((100vw - 1321px)/2) );
    width: 685px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
@media (max-width: 1580px) {
    .expansion-page .about .wrapper {
        padding: 100px 20px 148px;
    }
}
@media (max-width: 1370px) {
    .about .wrapper {
        padding: 148px 20px;
    }
    .about .about-content {
        min-width: auto;
    }
    .about .blue-box {
        width: 35%;
    }
}
@media (max-width: 991px) {
    .about .wrapper {
        flex-direction: column;
    }
    .about .about-content {
        order: 2;
        max-width: none;
    }
    .about .about-image {
        order: 1;
        margin-left: 0;
    }
}
@media (max-width: 576px) {
    .about {
        margin-top: 123px;
    }
    .about .wrapper {
        gap: 32px;
        padding: 74px 20px;
    }
    .expansion-page .about .wrapper {
        padding: 74px 20px 148px;
    }
    .about .about-content {
        max-width: none;
    }
    .about .about-content h2 {
        font-size: 32px;
    }
    .about .about-content p {
        font-size: 16px;
    }
    .about .about-image {
        min-width: auto;
    }
    .about .certificates {
        gap: 24px;
    }
    .about .certificates img {
        width: 65px;
        height: auto;
    }
    .about .btn-primary {
        font-size: 14px;
        padding: 10px 20px;
    }
    .about .blue-box {
        top: -50px;
    }
}
/* Footer */
footer {
    background: #C6CFDB;
}
footer .wrapper {
    display: flex;
    gap: 80px;
}
footer .logo-box {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
footer .slogan {
    font-family: "Inter", serif;
    font-size: 16px;
    width: 238px;
    margin-top: 28px;
}
footer .infos-box {
    background-color: #374453;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    padding: 110px 60px 110px 90px;
    margin-top: -36px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
footer .infos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; 
    column-gap: 10px;
    width: 100%;
    max-width: 600px;
    text-align: left;
}
.grid-title {
    grid-column: span 2;
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
}
.grid-item {
    font-family: "Inter", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    color: #fff;
}
.grid-item a {
    color: #fff;
    text-decoration: none;
}
footer .border-red {
    width: 100%;
    height: 35px;
    background-color: #ff0000;
}
@media (max-width: 1370px) {
    footer .wrapper {
        padding: 0 20px;
        flex-direction: column;
    }
    
    footer .slogan {
        margin: 0;
    }
}
@media (max-width: 991px) {
    footer .infos-box {
        padding: 80px 24px;
    }
    footer .infos-box img:first-child {
        width: 180px;
        height: auto;
    }
    footer .infos-box img:last-child {
        width: 160px;
        aspect-ratio: 20/5.4;
        height: auto;
    }
}
@media (max-width: 768px) {
    footer .infos-box {
        flex-direction: column;
        gap: 32px;
    }
    footer .logo-box {
        max-width: none;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }
}
@media (max-width: 576px) {
    footer .infos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .grid-title {
        grid-column: span 1;
        margin-bottom: 0;
    }
    footer .slogan {
        text-align: center;
    }
}
/* Geral */
ul {
    list-style: none;
}
.wrapper {
    max-width: 1321px;
    margin: 0 auto;
}
.btn-primary {
    position: relative;
    background: #FF0000 !important;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 4px;
    border: 1px solid #ff0000;
    width: fit-content;
    overflow: hidden;
    cursor: pointer;
}
.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(102.24deg, #FF3C3C -13.84%, #990000 109.71%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary span {
    position: relative;
    z-index: 1;
}
.btn-secondary {
    background-color: transparent;
    color: #ff0000;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 4px;
    border: 1px solid #ff0000;
    width: fit-content;
}
.btn-back {
    color: #ff0000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.20em;
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    width: fit-content;
}
.subtitle {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ff0000;
    text-transform: uppercase;
}
.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Carousel automatic*/
.carousel-auto {
    overflow: hidden;
    width: 63%;
    max-width: 1320px;
    margin: auto;
    position: relative;
    white-space: nowrap;
}
.carousel-auto-track {
    display: flex;
    width: max-content;
    animation: scroll-loop 20s linear infinite;
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-auto-track {
        animation: none;
        transform: translateX(0);
    }
    @keyframes scroll-loop {
        from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-100%, 0, 0); }
    }
}

.carousel-auto-item {
    max-width: calc(100% / 7);
    color: white;
    text-align: center;
    padding: 0 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.carousel-auto-item img {
    width: 100%;
}
@keyframes scroll-loop {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 991px) {
    .carousel-auto-item {
        padding: 0 20px;
    }
}
@media (max-width: 576px) {
    .carousel-auto-track {
        animation: scroll-loop 10s linear infinite;
    }
    .carousel-auto-item {
        padding: 0 10px;
    }
}

/* Article Carousel */
.article-carroussel.carousel-auto {
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

/* Gradient fade effect on sides */
.article-carroussel.carousel-auto::before,
.article-carroussel.carousel-auto::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.article-carroussel.carousel-auto::before {
    left: 0px;
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.article-carroussel.carousel-auto::after {
    right: 0px;
    background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

.article-carroussel .carousel-auto-track {
    animation: scroll-loop 25s linear infinite;
}

.article-carroussel .carousel-auto-item {
    max-width: calc(100% / 5);
    padding: 0 10px;
}

.article-carroussel .carousel-auto-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) {
    .article-carroussel .carousel-auto-item {
        max-width: calc(100% / 4);
    }
}

@media (max-width: 991px) {
    .article-carroussel .carousel-auto-item {
        max-width: calc(100% / 3);
        padding: 0 8px;
    }
    
    .article-carroussel .carousel-auto-item img {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .article-carroussel .carousel-auto-item {
        max-width: calc(100% / 2);
        padding: 0 5px;
    }
    
    .article-carroussel .carousel-auto-item img {
        height: 120px;
    }
    
    .article-carroussel .carousel-auto-track {
        animation: scroll-loop 15s linear infinite;
    }
}

@media (max-width: 576px) {
    .article-carroussel .carousel-auto-item {
        max-width: calc(100% / 1.5);
    }
    
    .article-carroussel .carousel-auto-item img {
        height: 100px;
    }
    
    .article-carroussel .carousel-auto-track {
        animation: scroll-loop 12s linear infinite;
    }
    
    /* Smaller gradient on mobile */
    .article-carroussel.carousel-auto::before,
    .article-carroussel.carousel-auto::after {
        width: 30px;
    }
}

@media (max-width: 768px) {
    /* Medium gradient on tablets */
    .article-carroussel.carousel-auto::before,
    .article-carroussel.carousel-auto::after {
        width: 40px;
    }
}


/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    padding: 0 10px;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 4;
}
#modal-resume, #modal-contact, #modal-post {
    display: none;
}
.modal.active {
    display: block !important;
}
.modal {
    background: white;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    position: relative;
    max-height: 95vh;
    overflow: hidden;
}
.modal-image {
    padding: 10px 10px 0;
}
.modal-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.modal-header {
    padding: 5px 32px 0;
    text-align: center;
}
.modal-header h2 {
    font-size: 32px;
    font-weight: 600;
}
.modal-header p {
    font-size: 15px;
    line-height: 1.56em;
    max-width: 385px;
    margin: 5px auto 0;
}
.modal-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
#modal-contact .modal-content {
    max-height: calc(95vh - 150px);
    overflow-y: auto;
}
#modal-contact .btn-primary {
    margin: 0 auto;
}
#modal-resume .modal-content {
    max-height: calc(95vh - 210px);
    overflow-y: auto;
}
#modal-post .modal-content {
    padding: 20px 32px 32px;
    min-height: 250px;
    max-height: 52vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
}
#modal-post ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 16px;
}
#modal-post h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.56em;
    margin-bottom: 10px;
}
#modal-post h2 span {
    font-weight: 600;
}
#modal-post p {
    font-size: 15px;
    margin-bottom: 16px;
}
#modal-post ul {
    font-size: 15px;
}
#modal-post .modal-content button {
    margin-top: auto;
    padding-top: 24px;
}
form {
    padding: 14px 32px 32px
}
form input, form textarea {
    width: 100%;
    margin: 7px 0 14px;
    padding: 10px 16px;
    border: 1.5px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    color: #5B5B5B;
    letter-spacing: 0.16em;
    box-shadow: 0px 0px 20px 0px #00000029;
}

form input::placeholder, form textarea::placeholder {
    text-transform: uppercase;
}

form input:focus-visible, form textarea:focus-visible {
    outline: none;
    border-color: #ff0000;
}
input[type="checkbox"] {
    display: none;
}
.custom-checkbox {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px #00000029;
    position: relative;
    cursor: pointer;
    margin-right: 5px;
}

input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "✔";
    font-size: 16px;
    color: #ff0000;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
form .field label {
    font-size: 14px;
    font-weight: 400;
    margin: 0 16px 0px;
    text-align: left;
}
.checkbox-submit {
    display: flex;
    justify-content: space-between;
}
.checkbox-submit div {
    display: flex;
}
.checkbox-submit label {
    font-size: 13px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    border: none;
    width: 26px;
    height: 26px;
    background-color: transparent;
}
.close-btn img {
    width: 100%;
    object-fit: cover;
}
.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
.message-box {
    display: none;
    margin-top: 15px;
    text-align: center;
}
.hidden {
    display: none;
}
.visible {
    display: block;
}
.loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}
@keyframes spin {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@media (max-width: 576px) {
    form {
        padding: 14px 20px 20px;
    }
}

/* Scrollbar */
.scroll-bar-thin {
    scrollbar-width: thin;
    scrollbar-color: #ccc #f1f1f1;
}
.scroll-bar-thin::-webkit-scrollbar {
    width: 10px;
 }
.scroll-bar-thin::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}
.scroll-bar-thin::-webkit-scrollbar-thumb {
    background:  #ccc;
    border-radius: 10px;
}
.scroll-bar-thin::-webkit-scrollbar-thumb:hover {
    background: #C6CFDB;
}


.missile {
    position: absolute;
    left: 0;
    width: 120px;
    transition: transform .7s ease-in-out;
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
}
#logo {
    font-size: 24px;
    font-weight: bold;
    margin: 13vh 0 20vh;
}
#percentage {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: .20em;
    color: #ff0000;
}
#loading-screen .text {
    font-size: 70px;
    font-weight: 400;
    margin-top: 4vh;
    letter-spacing: .20em;
    font-family: 'Stencil', Arial, sans-serif;
    text-align: center;
}
#progress-bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ddd;
}
#progress-bar {
    width: 0%;
    height: 100%;
    background-color: #ff0000;
    transition: width 0.1s ease-in-out;
}
@media (max-width: 576px) {
    #logo img{
        width: 180px;
        height: auto;
        aspect-ratio: 4.846;
    }
    #percentage {
        font-size: 28px;
    }
    #text {
        font-size: 40px;
    }
}

/* expansion page */
.expansion-header {
    margin: 110px 0 40px;
}
.highlight-header {
    margin: 40px 0;
}
.expansion-header .subtitle {
    font-weight: 600;
}
.expansion-header h1,
.highlight-header h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 24px 0;
    max-width: 825px;
}
.expansion-header p {
    font-size: 18px;
    font-weight: 500;
}
.articles .wrapper {
    padding: 0 20px;
}
.articles .grid {
    display: flex;
    gap: 20px;
}
.sidebar {
    width: 250px;
}
.categories li {
    padding: 16px 20px 16px 10px;
    cursor: pointer;
    margin-bottom: 10px;
    border-left: 3px solid transparent;
    list-style-type: square;
    list-style-position: inside;
    transition: all .3s ease-in-out;
}
.categories li.active {
    font-weight: 600;
    background: #f00;
    color: white;
    border-radius: 4px;
}
.main-content {
    flex: 1;
}
.search-box {
    display: flex;
    margin-bottom: 2rem;
    border: 1px solid #66737F;
}
.search-box input {
    flex: 1;
    padding: 32px 45px;
    border: none;
    outline: none;
    font-size: 18px;
}
.search-box input::placeholder {
    text-transform: uppercase;
}
.search-box .search-icon {
    margin: 32px;
    width: 18px;
    height: auto;
}
.articles-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 45px 0;
}
.article-card {
    display: flex;
    gap: 1.75rem;
}
.article-card.is-visible ~ .article-card.is-visible{
    margin-top: 100px;
}
.article-card.alternative {
    box-shadow: 0px 0px 20px 0px #0000001F;
    border-radius: 8px;
    width: 100%;
}
.article-card.alternative .article-content {
    text-align: center;
    align-items: center;
    padding: 48px 20px;
}
.article-card.alternative .article-content {
    text-align: center;
    align-items: center;
    padding: 48px 20px;
    max-width: 610px;
    margin: 0 auto;
}
.article-card .article-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 3;
    padding-right: 20px;
}
.highlight-article.first .article-card .article-content {
    padding-right: 0;
}
.article-card.video .article-video img{
    width: 100%;
    border-radius: 8px;
}
.article-card h2 {
    font-size: 32px;
    line-height: 1.31;
    font-weight: 400;
}
.article-card .excerpt {
    font-size: 18px;
    line-height: 1.7;
}
.article-card .excerpt span {
    font-weight: 600;
    color: #FF0000;
}
.article-card .article-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.article-card .article-image {
    max-width: 345px;
    display: flex;
}
.article-card .article-image img{
    border-radius: 8px;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    width: 100%;
}
.article-tags {
    display: flex;
    gap: 16px;
    color: red;
}
.article-tags span {
    font-size: 14px;
    font-weight: 500;
}
.article-card .btn-primary {
    font-size: 12px;
    padding: 10px 20px;
}
.text-red {
    color: #FF0000;
}
.text-black {
    color: #000;
}
.article-card {
  opacity: 1;
  max-height: max-content;
  overflow: hidden;
}
.article-card.hide {
  opacity: 0;
  max-height: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up-animate {
    animation: fadeUp 0.7s ease forwards;
}
.article-video {
    position: relative;
}
.article-video .btn-play {
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
    background-color: #fff;
    padding: 24px;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.article-video .btn-play:hover {
    background-color: #f1f1f1;
}
.article-card.video .btn-primary span {
    display: flex;
    gap: 10px;
    align-items: center;
}
/* highlight-article */
.highlight-article {
    margin-bottom: 100px;
}
.highlight-article.first {
    margin-bottom: 40px;
}
.highlight-article .wrapper {
    padding: 80px;
    border-radius: 8px;
    background: linear-gradient(180deg, #D2D9E3 0%, #E9ECF1 50%, #FFFFFF 75%, #FFFFFF 100%);
}
.highlight-article.first .wrapper {
    background: #fff;
}
.highlight-article .article-card {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}
.highlight-article.first .article-card {
    gap: 2.5rem;
}
.highlight-article .article-card .block-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
}
.highlight-article .article-card .article-image {
    width: 50%;
    max-width: none;
}
.highlight-article.first .article-card .article-image {
    display: flex;
    gap: 20px;
}
.highlight-article.first .article-card .article-image img{
    width: calc(50% - 10px);
}
.highlight-article .article-card .article-content {
    width: 50%;
}
.highlight-article.first .article-card .article-content {
    width: calc(50% - 2.5rem);
}
.highlight-article .article-card .article-image-bottom {
    width: 60%;
    display: flex;
    gap: 20px;
}
.highlight-article .article-card .article-image-bottom img {
    width: calc(50% - 10px);
    border-radius: 8px;
    max-width: none;
}
.highlight-article .article-card .article-content-bottom {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.highlight-article.first .article-card .article-content-bottom {
    width: 37%;
}
.highlight-article .article-card .article-content-bottom h3 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6383A6;
}
.highlight-article .article-card .article-content-bottom h4 {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.2;
}
/* Slider articles */
.highlight-slider {
    margin-bottom: 100px;
}
.highlight-slider .article-card {
    align-items: center;
}
.highlight-slider .article-card .article-image{
    max-width: 530px;
    aspect-ratio: 1;
    width: 100%;
}
.highlight-slider .swiper {
    padding-bottom: 45px;
}
.highlight-slider .swiper .swiper-slide {
    padding: 0 20px;
}
.highlight-slider .swiper-pagination {
    bottom: 0 !important;
}
.highlight-slider .swiper-button-prev {
    left: 0px;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
.highlight-slider .swiper-button-prev::after {
    font-size: 18px;
}
.highlight-slider .swiper-button-next {
    right: 1px;
    color: #ff0000;
    border: 2px solid #ff0000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
.highlight-slider .swiper-button-next::after {
    font-size: 18px;
}
.highlight-slider .swiper-pagination-bullet {
    background: #ff0000;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
}
.highlight-slider .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 56px;
}
@media (max-width: 1580px) {
    .expansion-page .highlight-article,
    .expansion-header .wrapper,
    .highlight-header .wrapper {
        padding: 0 20px;
    }
}
@media (max-width: 1370px) {
    .expansion-page .highlight-article .wrapper {
        padding: 60px 40px;
    }
    .highlight-article .article-card {
        gap: 2.5rem;
    }
}
@media (max-width: 1200px) {
    .highlight-article .article-card {
        gap: 1.25rem !important;
    }
    .article-card .article-image {
        max-width: 45%;
    }
    .highlight-article .article-card .block-flex {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
    }
    .highlight-article .article-card .article-image,
    .highlight-article .article-card .article-image-bottom {
        width: 100%;
    }
    .highlight-article.first .article-card .article-content,
    .highlight-article .article-card .article-content,
    .highlight-article .article-card .article-content-bottom {
        width: 100%;
        gap: 10px;
    }
    .highlight-article .article-card .article-content-bottom {
        order: 2;
    }
    .highlight-article.first .article-card .article-content-bottom {
        order: 0;
        width: 100%;
    }
    .article-carroussel.carousel-auto {
        width: 100%;
        margin-top: 0;
    }
}
@media (max-width: 991px) {
    .articles .grid {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .article-card {
        flex-direction: column;
    }
    .article-card .article-image {
        max-width: none;
        width: 100%;
    }
    .article-card .article-content ~ .article-image{
        order: 1;
    }
    .article-card .article-content {
        order: 2;
    }
    .article-card .article-image img{
        object-fit: cover;
        aspect-ratio: 1;
    }
    .highlight-article .article-card .article-image img {
        aspect-ratio: 499/265;
    }
    .highlight-article.first .article-card .article-image img {
        aspect-ratio: auto;
    }
}
@media (max-width: 576px) {
    .articles-list {
        padding: 0px;
    }
    .expansion-header {
        margin: 100px 0 80px;
    }
    .expansion-header h1,
    .highlight-header h1 {
        font-size: 48px;
    }
    .search-box input {
        padding: 24px 24px;
    }
    .search-box .search-icon {
        margin: 24px;
        width: 18px;
        height: auto;
    }
    .article-video .btn-play {
        padding: 16px;
        width: 60px;
        height: 60px;
    }
    .article-video .btn-play svg {
        width: 30px;
        height: 30px;
    }
    .highlight-article .article-card .article-image-bottom {
        gap: 10px;
    }
    .expansion-page .highlight-article .wrapper {
        padding: 60px 20px;
    }
}