:root {
    --primary-blue: #00b4d8;
    --primary-dark: #0077b6;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    background-color: #F4F8FF;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.carousel-control-next-icon {
    display: none;
}

.carousel-control-prev-icon {
    display: none;
}

.capa1 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("./img/capa 01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Top Bar */
.top-bar {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar i {
    color: var(--primary-blue);
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    /* background-color: transparent !important; */
    /* background: rgba(255, 255, 255, 0.65) !important; */
    -webkit-backdrop-filter: blur(14px) !important;
    backdrop-filter: blur(14px) !important;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.25); */
}

.navbar-brand .brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav-link {
    color: white;
    font-weight: 200;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    color: white !important;
}

.nav-link:hover {
    color: white !important;
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 10px 30px;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 180, 216, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
    }
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
    color: white;
    animation: none;
    /* Pausa a animação ao passar o mouse */
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.img-fluid {
    height: 80%;
    object-fit: cover;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Gradient Title */
.gradient-title {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 4s ease infinite;
    font-weight: 800;
}

@keyframes gradientSlide {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 0;
}

.hero-slide {
    height: 1100px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: white;
}

.hero-slide h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    padding: 0 20px;
}



.hero-slide {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-form-card {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.hero-form-card .form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
}

.hero-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #00b4d8;
    box-shadow: none;
}

.hero-form-card .btn-primary {
    background: linear-gradient(135deg, #0096c7, #00b4d8);
    border: none;
    padding: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.hero-form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
}

.form-title {
    font-weight: 600;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55)); */
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-card-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    background: rgb(255, 255, 255, 0.05);
    /* padding: 10px; */
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* border-top: 5px solid var(--primary-blue); */
    transition: 0.4s ease;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    transform: translateY(50px);
    /* move visualmente para baixo */
}

/* CARD ESQUERDO */
.hero-left-card {
    /* background: #0f2b6b; */
    /* padding: 50px; */
    flex: 1;
    border-radius: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CARD DIREITO */
.hero-right-card {
    /* background: rgba(10, 25, 60, 0.95); */
    /* padding: 40px; */
    flex: 1;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(6px);
}

/* RESPONSIVO */
@media (max-width: 992px) {

    .hero-section {
        min-height: auto !important;
    }

    .hero-slide {
        min-height: auto !important;
        /* height: auto !important; */
        align-items: flex-start;
        padding: 80px 0 40px;
    }

    .hero-content-wrapper {
        transform: translateY(50px) !important;
    }

    .hero-card-container {
        flex-direction: column;
        height: auto !important;
        max-width: 95%;
    }

    .hero-left-card {
        border-radius: 16px 16px 0 0;
        text-align: center;
        flex: none !important;
        padding: 40px 30px !important;
    }

    .hero-left-card h1 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .hero-text {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .hero-right-card {
        border-radius: 0 0 16px 16px;
        flex: none !important;
    }

    .hero-badge {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        display: inline-block;
        margin-bottom: 15px;
    }
}

.hero-card-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(10, 20, 45, 0.45);
    border-radius: 16px;
    /* overflow: hidden; removido para permitir que a hero-badge apareça fora do card */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    /* border-top: 5px solid var(--primary-blue); */
    height: 420px;
}

/* ===== CARD ESQUERDO ===== */
.hero-left-card {
    flex: 1.4;
    /* Aumenta a proporção do card esquerdo em relação ao direito */
    background: rgba(0, 119, 182, 0.55);
    /* padding: 80px 60px; */
    /* Aumenta o espaçamento interno, empurrando o texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    backdrop-filter: blur(4px);

    & h1 {
        padding: 0px 20px;

    }
}


/* ===== CARD DIREITO ===== */
.hero-right-card {
    flex: 1.4;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(5, 15, 35, 0.45);
    backdrop-filter: blur(8px);
}

.hero-badge {
    position: absolute;
    top: -10px;
    left: 0px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.navbar-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.freight-form-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    z-index: 999;
    transition: all 0.3s ease;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.btn-freight {
    background: linear-gradient(135deg, #2d6cdf, #1e4ecb);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-freight:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 108, 223, 0.4);
}

.btn-freight {
    background: linear-gradient(135deg, #2d6cdf, #1e4ecb);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s ease;
}

.btn-freight:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 108, 223, 0.4);
}

/* Section Spacing */
section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    /* background: var(--primary-blue); */
    color: black;
    /* padding: 8px 20px; */
    border-radius: 30px;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
    background: #ffffff;
}

.welcome-section img {
    height: 600px;
    /* 60% da altura da tela */
    width: 100%;
    /* mantém proporção */
    /* object-fit: contain; */
    background-size: cover;
}

/* Stats Section */
.stats-section {
    /* background-color: #0077b6; azul bem escuro */
    padding: 40px 0;
    color: #000000;
    background: white;
}

/* Caixa */
.stat-box {
    padding: 1.5rem 1rem;
}

/* Ícone pequeno e laranja */
.stat-icon {
    font-size: 2.5rem;
    color: #00b4d8;
    /* margin-bottom: 15px; */
}

/* Título principal */
.stat-title {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    /* margin-bottom: 5px; */
}

/* Texto secundário */
.stat-description {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
}

/* Linha inferior laranja */
.stat-line {
    width: 100%;
    height: 5px;
    background-color: #00b4d8;
    margin: 15px auto 0;
    border-radius: 2px;
}

.freight-form-box {
    /* background: rgb(255, 255, 255, 0.05); */
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* border-top: 5px solid var(--primary-blue); */
    transition: 0.4s ease;
}

.freight-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 180, 216, 0.15);
}

.form-header {
    text-align: center;
    /* margin-bottom: 25px; */
}

.form-header i {
    font-size: 2rem;
    color: var(--primary-blue);
    /* margin-bottom: 10px; */
    display: block;
}

.form-header h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.form-header p {
    font-size: 0.9rem;
    opacity: 0.8;
    /* color: var(--text-muted); */
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: block;
}

.form-control-custom {
    width: 100%;
    padding: 8px 14px;
    border-radius: 8px;
    /* border: 2px solid var(--border-color); */
    transition: 0.3s ease;
    font-size: 0.95rem;
}

.form-control-custom:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15);
    outline: none;
}

.btn-freight {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border: none;
    padding: 14px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 10px;
}

.btn-freight i {
    margin-left: 8px;
}

.btn-freight:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 180, 216, 0.4);
}



/* servcice  */

.service-card {
    position: relative;
    padding: 1rem 1rem;
    border-radius: 12px;
    min-height: 520px;
    /* ajuste fino aqui */
    display: flex;
    align-items: flex-end;
    /* joga conteúdo para baixo */
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    background-color: white;
    justify-content: center;
    text-align: left;
    color: white;

}

.service-content {
    padding-bottom: 2rem;
}

.service-card h3 {
    color: #00b4d8;
    font-weight: 400;
    display: inline-block;
    /* padding: 8px 18px; */
    /* background: linear-gradient(135deg, #ffffff, #f8fbff); */
    border-radius: 8px;

    /* margin-bottom: 1rem; */
}

/* Backgrounds individuais */
.service-bg-1::before,
.service-bg-2::before,
.service-bg-3::before,
.service-bg-4::before,
.service-bg-5::before,
.service-bg-6::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s ease;
}

/* Imagens específicas */
.service-bg-1::before {
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 100%),
        url("img/regional.jpg");
}

.service-bg-2::before {
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 100%),
        url("img/logistica.jpg");
}

.service-bg-3::before {
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 100%),
        url("img/express.jpg");
}

.service-bg-4::before {
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 100%),
        url("img/fracionada.jpg");
}

.service-bg-5::before {
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 100%),
        url("img/rastreamento.jpg");
}

.service-bg-6::before {
    background-image:
        linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.75) 20%,
            rgba(0, 0, 0, 0.85) 40%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.1) 100%),
        url("img/security.jpg");
}

.service-icon {
    font-size: 2rem;
    /* color: #0077b6; */
    font-weight: bold;

}

/* Overlay azul suave */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(0, 0, 0, 0.03));
    z-index: 1;
}

/* Conteúdo acima */
.service-content {
    position: relative;
    z-index: 2;
}

/* Hover premium */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 180, 216, 0.18);
}

.service-card:hover::before {
    /* opacity: 0.1; */
    transform: scale(1.05);
}

/* Ícone secundário */
.service-description {
    display: flex;
    align-items: flex-start;
    /* gap: 10px; */
    /* margin-bottom: 1.5rem; */
}

.service-mini-icon {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-top: 4px;
}

/* Why Choose Us */
.why-choose-us {
    background: white;

    & h2 {
        margin-bottom: 0;
    }
}

.why-choose-us img {
    height: 600px;
    /* 60% da altura da tela */
    width: 100%;
    /* mantém proporção */
    /* object-fit: contain; */
    background-size: cover;
}

.features-list {
    /* margin-top: 2rem; */
}

.feature-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Testimonials */
.testimonials-section {
    /* ;   background: var(--bg-light); */
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    padding: 60px 0;
    margin-bottom: 80px;
}

/* Page Header */


.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;

}

.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 180px 0 80px;
    /* margin-top: 70px; */
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.footer-bottom {
    a {
        text-decoration: none;
        color: rgba(0, 0, 0, 0.6);
    }
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;

}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Content Section */
.content-section {
    background: white;
    padding: 80px 0;
}

.content-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.info-card h4 {
    /* color: var(--primary-blue); */
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary-blue);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Client Logos */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.client-logo {
    background: white;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.client-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
}

.client-placeholder {
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.form-control {
    border: 2px solid var(--border-color);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.15);
}

.contact-info-box {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: start;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: var(--bg-light);
}

/* Footer */
.footer {
    /* background: var(--bg-light); */
    color: rgb(0, 0, 0);
    padding: 60px 0 0px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), white);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer h5 {
    /* color: white; */
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(19, 19, 19, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

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

.footer-contact li {
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: rgb(0, 0, 0);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    /* background: var(--primary-blue); */
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    /* padding-top: 2rem; */
    color: rgba(0, 0, 0, 0.6);
}

.diferenciais2 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.clients-section {
    background: var(--bg-light);
    padding: 80px 0;
    overflow: hidden;
}

.clients-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollClients 25s linear infinite;
}

.client-item {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.08);
    transition: 0.4s ease;
}

.client-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.4s ease;
}

.client-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.15);
}

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

/* Animação infinita */
@keyframes scrollClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {

    .hero-slide h1,
    .page-header h1 {
        font-size: 2.5rem;
    }

    .hero-text,
    .page-header p {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .client-logo {
        width: 140px;
        height: 140px;
    }

    .timeline {
        padding-left: 2rem;
    }

    .top-bar .col-md-6:last-child {
        display: none;
    }
}


.carousel-indicators {
    /* display: none; */
}

.info-card {
    text-align: center;
}

@media (max-width: 576px) {

    .hero-slide h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem
    }

    .capa1 {
        background:
            linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url("./img/banner-mobile.png");
        background-size: cover;
        /* background-position: center; */
        background-repeat: no-repeat;
    }

    .navbar {
        /* padding: 0; */
    }

    .nav-link::after {
        bottom: 0;
    }

    .top-bar {
        display: none;
    }

    .hero-form-card {
        padding: 0px;
    }

    .hero-slide {
        padding: 20px 0;
        align-items: center;
        /* height: auto; */
        min-height: auto;
    }

    .hero-slide h1 {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .hero-left-card h1 {
        padding: 0 10px !important;
    }

    .welcome-section {
        text-align: center;
    }

    .stat-title {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    section {
        padding: 40px 0;
    }

    .why-choose-us {
        text-align: center;
    }

    .features-list {
        text-align: left;
    }

    .cta-section {
        text-align: center;
    }

    .footer {
        text-align: center;
        align-items: center;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer li {
        text-align: center;
    }

    .desenvolvido {
        padding-top: 10px;
        border-top: #000000 1px solid;
    }

    .content-section {
        text-align: center;
    }

    .timeline {
        text-align: left;
    }

    ul {
        text-align: left;
    }

    .social-links a {
        width: 10px;
    }

    .welcome-section img {
        height: 530px;
    }

    .why-choose-us img {
        object-fit: cover;
    }
}

.text-primary {
    font-size: 1.5rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    padding: 1rem 0;

    background: linear-gradient(to bottom,
            /* #0077b6 0%, */
            rgba(5, 15, 35, 0.8) 40%,
            /* rgba(0, 0, 0, 0.7) 1%, */

     
            rgba(0, 0, 0, 0.7) 100%);

    transition: all 0.3s ease;
    opacity: 0.7;

    backdrop-filter: blur(8px);
}

.navbar:hover {
    /* background-color: rgba(0, 0, 0, 0.8); */
    opacity: 1;
}

/* Navbar Toggler Animation */
.navbar-toggler {
    width: 45px;
    height: 45px;
    position: relative;
    transition: .5s ease-in-out;
    cursor: pointer;
    background-color: #0077b6 !important;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

/* Quando Aberto (Removendo a classe .collapsed que o Bootstrap coloca quando fechado) */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
    top: 21.5px;
    transform: rotate(135deg);
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
    top: 21.5px;
    transform: rotate(-135deg);
}

.active {
    color: white !important;
}

/* Navbar Social & Phone Section */
.nav-social-wrap {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-social-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-social-icons {
    display: flex;
    gap: 15px;
}

.nav-social-icons a {
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-social-icons a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-phone i {
    font-size: 1rem;
    color: var(--primary-blue);
}

.nav-phone span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.nav-phone:hover {
    transform: scale(1.02);
}

.nav-phone:hover span {
    color: var(--primary-blue);
}

.nav-btn-container {
    margin-left: 1.5rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .nav-btn-container {
        margin-left: 1rem;
    }

    .nav-social-wrap {
        margin-left: 1rem;
        padding-left: 1rem;
    }

    .nav-phone {
        margin-left: 15px;
    }
}

@media (max-width: 991px) {
    .nav-btn-container {
        margin-left: 0 !important;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .nav-social-wrap {
        margin: 15px 0 5px 0;
        padding: 15px 0 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
        width: 100%;
    }

    .nav-phone {
        margin-left: 20px;
    }
}