*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
}

.hamburguer {
    display: none; /* Escondendo botão sem uso */
}

header {
    height: 80px;
    width: 100%;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    padding: 15px 50px;
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
    height: 70px;
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid #f0a500;
}

.logo img{
    max-height: 60px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    max-height: 50px;
}

.nav-link{
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f0a500;
    transition: width 0.3s ease;
}

.nav-link a:hover{
    color: #f0a500;
}

.nav-link a:hover::after {
    width: 100%;
}

.menu-toggle{
    display: none;
    cursor: pointer;
}

.menu-toggle i{
    font-size: 24px;
    color: white;
}

@media (max-width: 768px){
    .navbar { padding: 15px 20px; }
    .navbar.scrolled { padding: 10px 20px; }

    .nav-link{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #050505;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        gap: 40px;
    }

    .nav-link.active{
        right: 0;
    }

    .nav-link a {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .menu-toggle{
        display: block;
    }
}

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding-top: 100px;
    color: black;
}

.hero h1{
    font-size: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p{
    font-size: 30px;
    color: black;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
}

.hero-services {
    height: 40vh; /* Mais curto, formato panorâmico */
    min-height: 350px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax Premium */
    background-repeat: no-repeat;
    margin-top: 80px; /* Espaço exato do menu fixo */
}

.hero-content {
    opacity: 0;
    animation: subirSuave 1s ease forwards 0.2s;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #f0a500;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes subirSuave {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

footer{
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px;
    border-top: 1px solid #222;
}

.footer-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3{
    margin-bottom: 15px;
    font-size: 18px;
    color: #f0a500;
    text-transform: uppercase;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-column a:hover {
    color: #f0a500;
}

.footer-column p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-botton{
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.titulo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px 0 20px;
}

.titulo-container h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.linha {
    width: 80px;
    border-bottom: 4px solid #f0a500;
    margin: 0 auto;
}

/* ==== LAYOUT DA PÁGINA SOBRE ==== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
}

.about-story {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 1s ease forwards 0.2s;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text strong {
    color: #f0a500;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 75%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border-bottom: 4px solid #f0a500;
    transition: transform 0.4s ease;
    margin-left: 100px;
    margin-top: 100px;
}

.about-image img:hover {
    transform: translateY(-10px);
}

.about-values {
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 1s ease forwards 0.5s;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: #f0a500;
    box-shadow: 0 10px 30px rgba(240, 165, 0, 0.1);
}

.value-card i {
    font-size: 40px;
    color: #f0a500;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    .about-container {
        padding: 50px 5%;
    }
    .titulo-container h2 {
        font-size: 2rem;
    }
    .about-story {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    .about-text .titulo-container {
        align-items: center !important;
        text-align: center !important;
    }
    .about-text .linha {
        margin: 0 auto 20px !important;
    }
    .about-text p {
        text-align: center;
    }
    .about-text, .about-image {
        min-width: unset;
        width: 100%;
    }
    .about-image {
        text-align: center;
    }
    .about-image img {
        margin-left: 0;
        margin-top: 20px;
        width: 90%;
        max-width: 400px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
