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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Ajuste para compensar o header fixo */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.preloader-logo {
    margin-bottom: 30px;
    max-width: 200px;
    height: auto;
}

.preloader-bar-container {
    width: 100%;
    height: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background-color: #003566;
    border-radius: 10px;
    transition: width 0.4s ease;
    position: relative;
}

.preloader-truck {
    position: absolute;
    top: -30px;
    left: 0;
    width: 60px;
    height: 40px;
    background-image: url('../assets/preload.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateX(-50%);
    z-index: 2;
}

.preloader-text {
    margin-top: 20px;
    font-size: 16px;
    color: #003566;
    font-weight: 600;
}

@keyframes truckDrive {
    0% { transform: translateX(-30px) rotateY(180deg); }
    100% { transform: translateX(calc(100% + 30px)) rotateY(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 30px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-center {
    margin-left: auto;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #003566;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #003566;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.area-cliente {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #1a1a1a;
    margin: 2px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #003566;
    color: white;
    border-color: #003566;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn-secondary {
    background: #ffffff;
    color: #003566;
    border-color: #003566;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 53, 102, 0.1), rgba(0, 53, 102, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}
.btn-secondary:hover {
    background: #ffffff;
    border-color: #003566;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(27, 20, 100, 0.2); 
}
.btn-secondary:hover::after {
    transform: translateX(0);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: #003566;
    border-color: #003566;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(27, 20, 100, 0.2);
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-outline {
    background: transparent;
    color: #003566;
    border-color: #003566;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 102, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    background: #003566;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(27, 20, 100, 0.2);
}

.btn-outline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: #003566;
}

.btn-whatsapp {
    background: #003566;
    color: white;
    border-color: #003566;
}

.btn-whatsapp:hover {
    background: #003566;
    border-color: #003566;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(33, 150, 243, 0.2);
}

.btn-whatsapp-small {
    background: #003566;
    color: white;
    border-color: #003566;
    padding: 8px 16px;
    font-size: 12px;
}

.btn-whatsapp-small:hover {
    background: #003566;
    border-color: #003566;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0 0px;
   /* background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%); */
    background-image: url("/assets/Gestão\ de\ frio\ \(10\).png");
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 5;
    
}

.hero-text {
    position: relative;
    z-index: 10;
    margin-left: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #003566;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.hero-title .highlight {
    background: #003566;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
    margin: 0 4px;
    box-shadow: 0 4px 6px rgba(33, 150, 243, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-subtitle {
    font-size: 18px;
    color: #003566;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
}

.person-placeholder {
    width: 700px;
    height: 700px;
   /* background-image: url('../assets/HeroImage.png');*/
   background-image: url('../assets/Cinta\ Geral.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    margin-top: 0;
    margin-left: auto;
    margin-right: -50px;
}

.hero-shapes {
    display: none;
}

/* Solutions Section */
.solutions {
    padding: 10px 0 50px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.solution-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #003566, #0066b2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

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

.solution-card:hover::before {
    transform: scaleX(1);
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.section-title .highlight {
    background: #001D3D;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

.solutions-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.tab-btn.active {
    background: #003566;
    color: white;
    border-color: #003566;
}

.tab-btn:hover {
    border-color: #003566;
    color: #003566;
}

.tab-btn.active:hover {
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.solution-logo h3 {
    font-size: 48px;
    font-weight: 800;
    color: #003566;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.solution-logo h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 4px;
    background: #003566;
    border-radius: 2px;
}

.solution-text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.solution-text p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 90%;
}

.solution-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.risk-diagram {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.checklist-placeholder,
.search-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #001D3D, #1B1464);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
}

/* CTA Section */
.cta-section {
    padding: 0;
   
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-image: url("/assets/Gestão\ de\ frio\ \(4\).png");
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-container {
    padding: 0;
    width: 100%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    position: relative;
    z-index: 2;
}

.cta-text {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 500px;
}

.cta-visual {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-visual:hover .cta-image {
    transform: scale(1.05);
}

.specialist-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.specialist-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-text {
    flex: 0 0 50%;
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}

.cta-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
    color: white;
}

/* Clients Section */
.clients {
    padding: 80px 0;
    background: #f8f9fa;
}

.clients-carousel {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    overflow: hidden;
}

.clients-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.clients-slide {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
}

.client-card {
    flex: 0 0 calc(25% - 30px);
    margin: 0 15px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 1;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 53, 102, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #003566;
}

.client-card:hover::before {
    opacity: 1;
}

.client-card-inner {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.client-logo-container {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.client-logo {
    width: 100%;
    height: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1);
}

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

.client-name {
    font-size: 16px;
    color: #003566;
    font-weight: 600;
    margin: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: #003566;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 53, 102, 0.2);
}

.carousel-btn:hover {
    background: #001d3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 53, 102, 0.3);
}

.carousel-btn:focus {
    outline: none;
}

/* Media Queries for Clients Carousel */
@media (max-width: 992px) {
    .client-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .client-card {
        flex: 0 0 calc(100% - 30px);
    }
}

.carousel-btn {
    background: #003566;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: #003566;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(0, 53, 102, 0.05);
    font-family: Georgia, serif;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #003566;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #003566;
}

.testimonial-text {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 14px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.nav-btn:hover {
    border-color: #003566;
    color: #003566;
}

/* Logistics Section */
.logistics-section {
    padding: 0;
    background-color: #003566;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logistics-container {
    padding: 0;
    width: 100%;
}

.logistics-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

.logistics-text {
    flex: 1;
    color: white;
    padding-right: 20px;
}

.logistics-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.logistics-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    color: white;
    opacity: 0.9;
}

.logistics-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logistics-image {
     max-width: 2000px;
     height: auto;
     max-height: 350px;
     filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
 }

.truck-icon {
    font-size: 120px;
    color: #003566;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.security-shield {
    font-size: 40px;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #001D3D;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: #ffffff;
}

.blog-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

/* Free Trial Section */
.free-trial-section {
    padding: 0;
    background-color: #4051e6;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.free-trial-container {
    padding: 0;
    width: 100%;
}

.free-trial-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
}

.free-trial-text {
    flex: 1;
    color: white;
    padding-right: 20px;
}

.free-trial-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.free-trial-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.btn-discover {
    background-color: #ff9500;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: #e68600;
}

.free-trial-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.globe-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    position: relative;
}

.blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #003566, #0066b2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.blog-card:hover::after {
    transform: scaleX(1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003566, #1B1464);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.blog-content {
    padding: 24px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #1a1a1a;
}

.blog-link {
    color: #003566;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-info h2 .highlight {
    background: #003566;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
}

#contact-text-contact-section, #contact-email-contact-section {
    font-size: 16px;
    color: #003566;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-info a {
    color: #003566;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-tabs {
    display: flex;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.form-tab {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: #e9ecef;
    color: #6c757d;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-tab.active {
    background: #003566;
    color: white;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-submit {
    background-color: #003566;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-submit:hover {
    background-color: #002347;
}

.btn-submit:hover::before {
    left: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:hover,
.form-group textarea:hover {
    background-color: #ffffff;
    border-color: #d0d6dc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003566;
    box-shadow: 0 0 0 3px rgba(0, 53, 102, 0.1);
    background-color: #ffffff;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.form-checkbox a {
    color: #003566;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #003566;
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.footer-address h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-address p {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.contact-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 16px;
    color: #ffffff;
}

.contact-info p {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 4px;
}

.contact-info a {
    color: #adb5bd;
    text-decoration: none;
}

.contact-info a:hover {
    color: rgb(255, 255, 255);
}


.footer-newsletter h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-newsletter p {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.newsletter-form input {
    padding: 12px 16px;
    border: 2px solid #333;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #adb5bd;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #001D3D;
}

.social-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.linkedin {
    background: #0077B5;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #F56040, #E1306C, #833AB4);
}

.social-link.facebook {
    background: #1877F2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #adb5bd;
    font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
    border-radius: 50%;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover::before {
    transform: scale(2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .solution-content,
    .cta-content,
    .logistics-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solutions-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .person-placeholder {
        width: 250px;
        height: 350px;
    }
    
    .shape-1 {
        width: 100px;
        height: 100px;
    }
    
    .shape-2 {
        width: 80px;
        height: 80px;
    }
    
    .shape-3 {
        width: 60px;
        height: 60px;
    }
    
    /* Melhorias adicionais para dispositivos móveis */
    .solution-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .solution-actions .btn {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .footer-column ul {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

