/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    color: #2e2e2e;
    background-color: #f6f7f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo img {
    height: 48px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color .3s;
}

.menu a:hover {
    color: #bfa34b;
}

#lang-switch {
    background: #bfa34b;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#lang-switch:hover {
    background: #a68f3a;
}

/* HERO */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.45);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.hero-content h1 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}

.btn-gold {
    background: #bfa34b;
    color: #fff;
}

.btn-gold:hover {
    background: #a68f3a;
}

/* SECTIONS */
.section {
    padding: 90px 0;
}

.gray-bg {
    background: #eef0f2;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section > .container > p.center-text {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
    color: #555;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.service {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform .3s, box-shadow .3s;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.service img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 18px;
}

.service h3 {
    margin-bottom: 12px;
}

.service p {
    text-align: justify;
    font-size: 0.96rem;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.portfolio-item img {
    width: 100%;
    border-radius: 12px;
    transition: transform .4s;
}

.portfolio-item img:hover {
    transform: scale(1.06);
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.team-member {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform .3s, box-shadow .3s;
}

.team-member:hover {
    transform: translateY(-6px);
}

.team-member img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    display: block;
}

.team-member h4 {
    text-align: center;
    margin-bottom: 12px;
}

.team-member p {
    text-align: justify;
    font-size: 0.95rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

#contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-info {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact-info p {
    margin-bottom: 14px;
}

/* FOOTER */
.footer {
    background: #1f1f1f;
    color: #ffffff;
    padding: 45px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    text-align: left;
}

.footer-col h4 {
    margin-bottom: 14px;
    color: #bfa34b;
    font-size: 1rem;
}

.footer-col p {
    line-height: 1.6;
    color: #d6d6d6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.75;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 0.85rem;
    color: #cfcfcf;
}

/* COOKIE BANNER RGPD */
#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1f1f1f;
    color: #fff;
    padding: 18px 25px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 10000;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
}

#cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

#cookie-banner a {
    color: #bfa34b;
    text-decoration: underline;
}

#cookie-banner button {
    background: #bfa34b;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

#cookie-banner button:hover {
    background: #a68f3a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .menu {
        gap: 16px;
    }
}
/* Para animações de scroll */
.service, .team-member, .portfolio-item img {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.service.visible, .team-member.visible, .portfolio-item img.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f1f1f;
    color: #fff;
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

#cookie-banner button {
    background:
