/* Referência ao Bootstrap CSS */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css');
@import url('https://getbootstrap.com/docs/5.3/assets/css/docs.css');
/* Referência ao Font Awesome CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');


/* Estilos existentes */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    width: 150px; /* Ajuste conforme necessário */
    height: auto;
    max-width: 100%; /* Garante que o logotipo seja responsivo */
}

header nav {
    flex-grow: 1;
    text-align: right;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

header .language-selector {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.language-selector a {
    margin-left: 10px;
}

.language-selector img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.language-selector img:hover {
    transform: scale(1.1);
}

/* Estilos adicionais */
#hero {
    background: url('images/hero-shipping.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

#hero .cta-button {
    background: #ff6600;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 50px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service, .testimonial {
    text-align: center;
    margin-bottom: 20px;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact form label {
    margin-top: 10px;
}

#contact form input, #contact form textarea {
    padding: 10px;
    margin-top: 5px;
}

#contact form button {
    background: #ff6600;
    color: #fff;
    padding: 10px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social-media a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.language-selector {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

.language-selector a {
    margin-left: 10px;
}

.language-selector img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.language-selector img:hover {
    transform: scale(1.1);
}
