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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header Styles */
header {
    background-color: white;
    height: 95px; /* altura fixa */
    padding: 0; /* sem padding vertical */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden; /* impede que elementos maiores saiam */
}


header .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* garante centralização vertical */
}


.logo img {
    height: 150px;     /* aumenta o logo */
    margin-top: 2px;  /* espaço entre topo do header e a imagem */
    width: auto;
    display: block;
    margin-left: -150px;
}



nav ul {
    display: flex;
}

nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li a {
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8abe53; /* Green color to match your theme */
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8abe53;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}
 

.client-area .client-btn {
    background-color: #8abe53; /* Changed from blue to green */
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.client-area .client-btn:hover {
    background-color: #6a9a33; /* Darker green for hover */
}

/* Remove or update this duplicate rule */
nav ul li a:hover {
    color: #8abe53; /* Changed from blue to green */
}

.intranet-btn a {
    background-color: #8abe53; /* Changed from blue to green */
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.intranet-btn a:hover {
    background-color: #6a9a33; /* Darker green for hover */
}

/* Update hero h2 first line color */
.hero h2:first-line {
    color: #8abe53; /* Changed from blue to green */
}

.language-selector {
    margin-left: 15px;
}

.language-selector img {
    height: 20px;
    border-radius: 3px;
}

nav ul li a:hover {
    color: #25d366;
}

.search-icon {
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.intranet-btn a {
    background-color: #25d366;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.intranet-btn a:hover {
    background-color: #25d366;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 10%;
    color: white;
    overflow: hidden;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero h2:first-line {
    color: #25d366;
}

.quote-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 300px;
    margin-top: 30px;
}

.quote-icon {
    background-color: #fefefe;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.quote-icon img {
    width: 30px;
    height: 30px;
}

.quote-text p {
    font-size: 16px;
}

.quote-text .highlight {
    font-weight: bold;
    font-size: 18px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.video-container {
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.video-image {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.5s;
}

.video-container:hover .video-image {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.video-container:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(138, 190, 83, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: rgba(138, 190, 83, 1);
}

.video-description {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Solutions Section */
.solutions-section {
    padding: 80px 0;
    background-color: #4a7c59; /* Changed back to green background */
    color: white;
}

.solutions-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.solution-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-icon {
    margin-bottom: 20px;
}

.solution-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    color: #8abe53;
}

.solution-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.solution-card p {
    color: #666;
    font-size: 14px;
    flex-grow: 1;
    margin-bottom: 20px;
}

.saiba-mais {
    display: inline-block;
    background-color: #8abe53;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    align-self: center;
}

.saiba-mais:hover {
    background-color: #6a9a33;
}

@media (max-width: 768px) {
    .solution-card {
        padding: 20px;
    }
    
    .solution-card h3 {
        font-size: 20px;
    }
    
    .solution-card p {
        font-size: 14px;
    }
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 40px;
    color: #25d366;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0a1a2f;
}

.service-card p {
    color: #666;
}

/* Footer */
footer {
    background-color: #4a7c59; /* Changed from dark blue to green */
    color: white;
    padding: 60px 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #8abe53; /* Changed from blue to light green */
}

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

.footer-column ul li a {
    color: #e6f0e0; /* Lighter green-tinted color for better contrast */
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff; /* White on hover */
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #8abe53; /* Changed from blue to light green */
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #d1e6c8; /* Light green-tinted color */
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding-left: 0;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .quote-box {
        margin: 30px auto 0;
    }
}

/* Warehousing & Logistics Showcase */
.warehousing-showcase {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.showcase-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.showcase-row.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.showcase-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.showcase-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.showcase-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #8abe53;
}

.showcase-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #8abe53;
    margin-right: 10px;
    font-size: 18px;
}

.learn-more-btn {
    display: inline-block;
    background-color: #8abe53;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.learn-more-btn:hover {
    background-color: #6a9a33;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .showcase-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .showcase-row.reverse {
        flex-direction: column;
    }
    
    .showcase-content h2 {
        font-size: 28px;
    }
}
.video-description-container {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: #f5f5f5;
    border-left: 4px solid #8abe53;
    padding: 25px 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    text-align: left;
    font-weight: 400;
    margin: 0;
}

/* You can remove or comment out these styles if they exist */
.video-overlay {
    display: none;
}

.play-button {
    display: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 0;
}

/* For mobile devices */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}


@media (max-width: 767px) {
    header {
        height: 70px; /* Reduz o header no mobile */
    }

    header .container {
        height: 100%;
        align-items: center;
        justify-content: space-between;
    }

    .logo img {
        height: 50px;      /* Ajusta logo para mobile */
        margin-top: 2px;   /* Mantém o espaçamento desejado */
        margin-left: 0;    /* Centraliza se necessário */
    }

    .client-area .client-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .intranet-btn a {
        font-size: 11px;
        padding: 6px 12px;
    }
}
