/* Estilos Gerais */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a3b5d;
    --secondary-color: #f8f9fa;
    --accent-color: #4a90e2;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a3b5d;
    --light-bg: #f8f9fa;
    --border-radius: 5px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0f2a47;
    transform: translateY(-2px);
}

/* Header/Navegação */
header {
    background-color: var(--light-bg);
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

/* Secção Hero */
.hero {
    background-image:
        url('../images/background.png'),
        url('../images/food.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--light-text);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Secção Quem Somos */
.quem-somos {
    background-color: var(--light-bg);
}

.quem-somos-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.quem-somos-content .texto {
    flex: 1;
}

.quem-somos-content .imagem {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.quem-somos-content a {
    margin-top: 20px;
    display: inline-block;
}

/* Secção Serviços */
.servicos {
    background-color: #fff;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-5px);
}

.servico-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servico-item h3,
.servico-item p {
    padding: 0 20px;
}

.servico-item h3 {
    margin-top: 20px;
}

.servico-item p {
    margin-bottom: 20px;
}

/* Secção Buffet */
.buffet {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.buffet::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.buffet-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.buffet-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}

.icon {
    width: 70px;
    height: 70px;
    background-color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: var(--light-text);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.buffet-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Secção Clientes */
.clientes {
    background-color: #fff;
    padding: 40px 0;
    overflow: hidden;
}

.clientes-carousel {
    overflow: hidden;
    position: relative;
}

.clientes-track {
    display: flex;
    gap: 50px;
    animation: scrollLeft 10s linear infinite;
}

.clientes-track img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clientes-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Animação contínua */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

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

.clientes-carousel:hover .clientes-track {
    animation-play-state: paused;
}

/* Secção Contacto */
.contacto {
    background-color: var(--light-bg);
    position: relative;
}

.contacto-content {
    display: flex;
    justify-content: center;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 600px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contacto-info {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.contacto-info p {
    margin-bottom: 10px;
}

.contacto-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Secção Trabalhe Connosco */
.trabalhe-connosco {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trabalhe-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chef-illustration {
    margin: 30px 0;
}

.chef-illustration img {
    max-height: 300px;
}

.logo-footer img {
    height: 300px;
    width: 300px;
    /* ajuste conforme necessário */
    display: block;
    margin-bottom: 20px;
    /* controla a distância abaixo da imagem */
}

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

.social-media {
    margin-bottom: 10px;
    /* reduz o espaço entre os ícones e o texto final */
}

footer {
    padding: 20px 0;
    background-color: #0f2a47;
    color: var(--light-text);
    padding: 40px 0;
    /* reduz o espaçamento vertical do rodapé */
}

.social-media a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--accent-color);
}

/* Responsividade */
@media (max-width: 992px) {
    .quem-somos-content {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        margin-left: 5%;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }

    .buffet-icons {
        gap: 15px;
    }

    .buffet-icon {
        width: 80px;
    }

    .icon {
        width: 60px;
        height: 60px;
    }
}