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

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1000;
    background: transparent;
}


.nav-menu .dropdown > a {
    position: relative; 
}

.nav-menu .dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid white; 
    border-bottom: 1px solid white;
    transform: rotate(45deg); 
    margin-left: 7px;
    position: absolute;
    top: 50%; 
    transform: translateY(-60%) rotate(45deg); 
    transition: transform 0.3s;
}

.nav-menu .dropdown:hover > a::after {
    transform: translateY(-50%) rotate(-135deg); 
}
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 5%; 
    transform: translateX(-10%); 
    background-color: #0c1e3e; 
    padding: 15px 0; 
    border-radius: 4px; 
    list-style: none;
    min-width: 200px;
    z-index: 10;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    padding: 12px 20px; 
}

.nav-menu .dropdown-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

.nav-menu .dropdown-menu li a:hover {
    color: #4983C3;
}


.navbar nav ul {
    list-style: none;
    display: flex;
    gap: 45px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar nav ul li a:hover {
    color: #254173;
}

.consultation-button {
    background-color: #254173;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.consultation-button:hover {
    background-color: #102A43;
    color:white;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; 
        flex-direction: column;
        gap: 10px;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 30px;
        padding: 20px;
        border-radius: 10px;
    }

    .nav-menu.active {
        display: flex; 
        animation: slideIn 0.3s forwards;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        margin-left: 10px;
    }

    .navbar {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .consultation-button {
        font-size: 0.9em;
    }

    /* Mobile Dropdown Styling */
    .nav-menu .dropdown-menu {
        position: static;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        border-radius: 10px;
    }
}

@keyframes slideIn {
    from {
        right: -100%;
    }
    to {
        right: 30px;
    }
}


.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: url('../assets/backgroundindex.png.webp') no-repeat center center/cover;
    color: white;
    margin-top: -100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 51, 0.3);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.hero-content .stream, .hero-content .line {
    color: #fff !important;
}

.hero-content .stream {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    opacity: 1 !important;
}

.hero-content .line {
    color: #254173;
}

.hero-content p {
    font-size: 2.5em;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}


@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .consultation-button {
        font-size: 0.8em;
        padding: 8px 16px;
    }
}



.logo-carousel {
    background-color: #0c1e3e;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
}

.carousel-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: flex;
    gap: 90px; 
    animation: scroll 30s linear infinite;
}

.carousel-slide img {
    height: 30px; 
    object-fit: contain;
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 40px; 
    }
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.services-section {
    text-align: left;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h3 {
    color: #0c1e3e;
    font-weight: normal;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.section-description {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 30px;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border: 2px solid #333;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card img {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.service-card h4 {
    font-size: 1.2em;
    color: #333;
    margin-top: 60px;
    font-weight: 600;
}

.explore-link {
    color: #333;
    font-size: 0.9em;
    font-weight: 300;
    margin-top: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    border-top: 4px solid #0c1e3e;
    border-right: 4px solid #0c1e3e;
    border-bottom: 4px solid #0c1e3e;
    border-radius: 8px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    transition: transform 0.3s, opacity 0.3s;
    transform: scale(1.05);
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1.2em;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}






.info-section {
    background-color: #0c1e3e;
    color: white;
    padding: 35px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text {
    max-width: 880px;
    text-align: left;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.6;
    z-index: 1;
}

.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: url('background-pattern.png'); 
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

@media (max-width: 768px) {
    .info-text {
        font-size: 1.2em;
    }
    .info-section::before {
        width: 100%;
        opacity: 0.1;
    }
}

@media (max-width: 480px) {
    .info-text {
        font-size: 1em;
    }
    .info-section {
        padding: 30px 15px;
    }
}




.feedback-section {
    background-color: white;
    color: #0c1e3e;
    padding: 40px 20px;
    text-align: left;
    position: relative;
}

.feedback-section h2 {
    font-size: 1.8em;
    color: #0c1e3e;
    margin-bottom: 20px;
    display: inline-block;
    vertical-align: middle;
}

.consultation-button-2 {
    position: absolute;
    top: 40px; 
    right: 20px;
    background-color: #254173;
    color: #1C1C30;
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    font-size: 0.9em;
    cursor: pointer;
}

.feedback-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    max-width: 1200px; 
    margin: 20px auto 0;
    background-color: #254173;
    border-radius: 8px;
}

.feedback-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.feedback-slide {
    display: flex;
    width: 100%;
    min-width: 100%;
}
.feedback-image {
    width: 40%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 8px 0 0 8px; 
}


.feedback-content {
    padding: 20px;
    width: 60%;
}

.feedback-content h3 {
    color: #FFFFFF;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feedback-content p {
    color: #FFFFFF;
    margin: 10px 0;
}

.feedback-service {
    background-color: transparent;
    color: #254173;
    border: 1px solid #254173;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
}

.feedback-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0D1B2A;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    cursor: pointer;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}



.impact-section {
    background-color: #254173;
    padding: 40px 20px;
    text-align: center;
    color:white;
}

.impact-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.impact-item {
    color: white;
    font-family: Arial, sans-serif;
    margin: 20px;
    flex: 1;
    min-width: 200px;
}

.impact-metric {
    display: inline-flex;
    align-items: baseline;
    font-size: 3em;
    font-weight: bold;
    color: white;
    gap: 0.1em;
}

.impact-metric .number,
.impact-metric .x-symbol,
.impact-metric .percent-symbol {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    vertical-align: baseline;
    line-height: 1;
}

.impact-item p {
    margin-top: 10px;
    color: #FFFFFF;
    font-size: 1em;
    font-weight: 300;
}

@media (max-width: 768px) {
    .impact-container {
        flex-direction: column;
        align-items: center;
    }
}




.satisfaction-section {
    background-color: #0c1e3e;
    padding: 60px 20px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfaction-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.title-container {
    width: 35%;
}

.title-container h2 {
    font-size: 2em;
    font-weight: 400;
}

.highlight {
    color: white;
    font-weight: bold;
}



.feedback-container {
    width: 65%;
    display: flex;
    gap: 20px;
}

.feedback-card {
    background-color: #254173;
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    color: #FFFFFF;
}

.company-logo {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.feedback-card h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.position {
    color: white;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
}

.feedback-text {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.services-provided {
    font-size: 0.9em;
    color: #0c1e3e;
    margin-bottom: 10px;
}

.service-button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    cursor: pointer;
}

@media (max-width: 768px) {
    .satisfaction-container {
        flex-direction: column;
        align-items: center;
    }

    .title-container, .feedback-container {
        width: 100%;
    }

    .feedback-container {
        flex-direction: column;
    }
}



.scaling-section {
    background-color: #254173;
    padding: 40px 20px;
    display: flex;
    justify-content: flex-start;
}

/* Center the mission section vertically and horizontally */
.scaling-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
}

.scaling-content {
    text-align: center;
    max-width: 900px;
    color: white;
    font-size: 2.25em;
    margin: 0 auto;
}

.scaling-content .highlight {
    font-weight: bold;
}


/* Center the consultation section vertically and horizontally, and use full width */
.consultation-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    width: 100vw;
}

.consultation-content {
    text-align: center;
    color: #111;
    width: 100%;
    margin: 0 auto;
    font-size: 2em;
    word-break: break-word;
    white-space: normal;
}

.consultation-content h2 {
    font-size: 2.3em;
    font-weight: 700;
    line-height: 1.4;
}

.consultation-content .highlight {
    color: #4983C3;
    font-weight: bold;
}


@media (max-width: 768px) {
    .scaling-content, .consultation-content {
        text-align: left;
        max-width: 100%;
        padding-left: 20px;
    }

    .consultation-content h2 {
        font-size: 1.8em;
    }
}


.data-insights-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.data-insights-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.insights-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.insight-large {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.insight-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insight-large:hover img {
    transform: scale(1.1);
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.insight-small {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 100%;
}

.insight-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insight-small:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 20px;
    text-align: left;
}

.overlay h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 0.9em;
    color: #254173;
}

@media (max-width: 768px) {
    .insights-container {
        grid-template-columns: 1fr;
    }
    .insight-grid {
        grid-template-columns: 1fr;
    }
}



.footer {
    background-color: #0c1e3e;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

.footer-description {
    color: #AAB7C4;
    font-size: 1.1em;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 220px;
}

.footer-links {
    display: flex;
    flex: 3;
    justify-content: space-between;
    gap: 20px;
}

.footer-column h4 {
    font-size: 1.1em;
    color: white;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #AAB7C4;
    text-decoration: none;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #1F2E3E;
    padding-top: 20px;
}


.social-icons a {
    margin-right: 15px;
    font-size: 1.5em; 
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #254173; 
}

.privacy-policy {
    color: #254173;
    margin-right: auto;
    text-decoration: none;
    font-size: 0.9em;
}

.privacy-policy:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.clients-section.blue-bg {
    background: #0c1e3e !important;
}
.white-title {
    color: #fff !important;
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 40px;
}
.clients-section .client-logo img {
    height: 120px;
    width: auto;
    filter: none;
    opacity: 1;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
}

.clients-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.clients-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.clients-content h3 {
    font-size: 1.8em;
    color: #0c1e3e;
    margin-bottom: 40px;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.client-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .client-logos {
        gap: 30px;
    }
    .client-logo img {
        height: 40px;
    }
}
