: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 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.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: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    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%;
}

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

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
    color: white;
}

.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;
}

.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: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: white;
}

.hero-slide h1 {
    font-size: 3.5rem;
    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: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}



.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;
}



/* 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 {
    /* border: 5px solid var(--bg-light); */
}

/* 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: 12px 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 {
    border: 5px solid var(--bg-light);
}

.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 {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    color: white;
    padding: 120px 0 80px;
    margin-top: 0;
}

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

.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;
    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; */
    }

    .top-bar {
        display: none;
    }

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

    .hero-slide {
        padding: 20px 0;
        align-items: start;
        height: 990px;
    }

    .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;
    }

}

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