* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.navbar {
    position: fixed;
    height: 50px;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    padding: 15px 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.loja-section {
  background-color: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

.loja-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #292929;
}

.loja-section p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.logo {
    cursor: pointer;
    display: block;
}

.navbar .logo img {
    max-width: 80px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #ffffff;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.btn-hero:hover {
    background: #333;
    color: #fff;
}

.hero-cta {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

section {
    padding: 100px 0;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
    color: #000;
}

.sobre-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.sobre-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.sobre-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.obras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.obra-foto {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.obra-foto:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.produto {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: transform 0.2s;
}

.produto:hover {
    transform: translateY(-5px);
}

.produto h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000;
}

.produto p {
    font-size: 1rem;
    color: #666;
}

.projetos-section {
    padding: 60px 0;
    text-align: center;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.projeto-item {
    text-align: center;
}

.projeto-foto {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
}

.projeto-item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.canal {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    text-align: center;
    transition: transform 0.2s;
}

.canal:hover {
    transform: translateY(-5px);
}

.canal i {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.canal h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.canal p {
    font-size: 1rem;
    color: #666;
}

.canal a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.canal a:hover {
    color: #888;
}

.marcas-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.marcas-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.marcas-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
}

.marcas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.marca-logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
    filter: grayscale(50%);
}

.marca-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

footer {
    background: #f5f5f5;
    color: #666;
    padding: 60px 0 20px;

}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #333;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #07c700;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    transition: background 0.3s;
    text-decoration: none;
    z-index: 2000;
}

.whatsapp-float:hover {
    background: #666;
}

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.2s;
}

.btn-whatsapp i {
    margin-right: 10px;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    animation: shine 2s infinite;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.contato-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 20px;
}

.contato-content p {
    max-width: 600px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #666;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
    margin: 30px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #2C3E50;
    box-shadow: 0 0 5px rgba(44, 62, 80, 0.5);
    outline: none;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.contato-form textarea {
    height: 120px;
    resize: vertical;
}

.btn-whatsapp {
    display: inline-block;
    padding: 15px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.btn-whatsapp i {
    margin-right: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-submit-email {
    padding: 15px;
    background: #2C3E50;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-email:hover {
    background: #34495E;
    transform: translateY(-2px);
}

.btn-submit-email:active {
    transform: translateY(0);
}

.curriculo-section {
    padding: 100px 0;
    text-align: center;
    background: #f8f8f8;
}

.curriculo-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.curriculo-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.curriculo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.curriculo-form label {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

.curriculo-form input[type="file"] {
    padding: 10px;
    border: 2px dashed #e5e5e5;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 1rem;
    color: #666;
}

.curriculo-form input[type="text"],
.curriculo-form input[type="email"],
.curriculo-form input[type="tel"],
.curriculo-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.curriculo-form input:focus,
.curriculo-form textarea:focus {
    border-color: #2C3E50;
    box-shadow: 0 0 5px rgba(44, 62, 80, 0.5);
    outline: none;
}

.curriculo-form input::placeholder,
.curriculo-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.curriculo-form textarea {
    height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {
    .curriculo-section {
        padding: 120px 0;
    }

    .curriculo-form {
        padding: 20px;
    }

    .curriculo-form input,
    .curriculo-form textarea,
    .curriculo-form input[type="file"] {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contato-form {
        padding: 20px;
        margin: 20px auto;
    }

    .contato-form input,
    .contato-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }

    .btn-whatsapp,
    .btn-submit-email {
        padding: 12px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contato-form {
        padding: 15px;
    }

    .contato-content p {
        font-size: 1rem;
    }
}

.top-float {
    position: fixed;
    bottom: 60px;
    right: 20px;
    background: #c5c5c5;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s;
    z-index: 2000;
}

.top-float:hover {
    background: #555;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        padding: 0 15px;
    }

    .navbar {
        height: 60px;
        padding: 10px 20px;
        display: flex;
        align-items: center;
    }

    .navbar .logo {
        display: flex;
        align-items: center;
    }

    .navbar .logo img {
        max-height: 80px;
        width: auto;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 10px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        background: #ffffff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        font-size: 1rem;
        color: #333;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .obras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .obra-foto {
        height: 300px;
    }

    .produtos-grid,
    .canais-grid {
        grid-template-columns: 1fr;
    }

    @media (max-width: 768px) {
        .marcas-section h2 {
            font-size: 2rem;
        }

        .marcas-section p {
            font-size: 1rem;
        }

        .marca-logo {
            max-width: 120px;
        }
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .obras-grid {
        grid-template-columns: 1fr;
    }

    .obra-foto {
        height: 350px;
    }
}

#vagas {
    padding: 150px 20px 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#vagas h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

#vagas p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.vaga {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
}

.vaga h3 {
    font-size: 1.5em;
    color: #2a5d84;
    margin-bottom: 10px;
}

.vaga p {
    font-size: 1em;
    color: #555;
    margin-bottom: 15px;
}

.vaga ul {
    list-style-type: disc;
    padding-left: 20px;
}

.vaga li {
    font-size: 1em;
    color: #333;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    #vagas {
        padding: 150px 20px 10px 10px;
    }

    .vaga {
        margin: 10px;
        padding: 15px;
    }

    #vagas h2 {
        font-size: 1.5em;
    }

    .vaga h3 {
        font-size: 1.2em;
    }
}

.catalogo-teaser {
    text-align: center;
}

.catalogo-section {
    padding: 150px 0 60px 0;
    background-color: #fff;
    text-align: center;
}

.catalogo-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.catalogo-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.categoria {
    margin: 40px 0;
    padding-bottom: 40px;
    border-bottom: 2px solid #e5e5e5;
}

.categoria:last-child {
    border-bottom: none;
}

.categoria-titulo {
    font-size: 2rem;
    font-weight: 600;
    color: #2a5d84;
    margin-bottom: 20px;
    text-align: left;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.catalogo-item {
    background: #fff;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.catalogo-item:hover {
    transform: translateY(-5px);
}

.produto-foto {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.catalogo-item h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
}

.catalogo-item p {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .catalogo-section {
        padding: 150px 0 40px 0;
    }

    .categoria-titulo {
        font-size: 1.8rem;
    }

    .produtos-grid,
    .canais-grid {
        grid-template-columns: 1fr;
    }

    .catalogo-item {
        padding: 10px;
    }

    .catalogo-item h4 {
        font-size: 1.2rem;
    }

    .catalogo-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .produtos-grid,
    .canais-grid {
        grid-template-columns: 1fr;
    }

    .catalogo-item {
        padding: 8px;
    }

    .catalogo-item h4 {
        font-size: 1rem;
    }
}

.catalogo-nav {
    margin: 20px 0;
    text-align: center;
}

.catalogo-nav h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.catalogo-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.catalogo-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.catalogo-nav ul li a:hover {
    color: #007bff;
}

.catalogo-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.catalogo-sidebar {
    width: 200px;
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.catalogo-sidebar h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.catalogo-sidebar ul {
    list-style: none;
    padding: 0;
    background: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.catalogo-sidebar ul li {
    margin: 10px 0;
    padding: 5px 10px;
}

.catalogo-sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.catalogo-sidebar ul li a:hover {
    color: #007bff;
}

.catalogo-content {
    flex: 1;
    margin-left: 240px;
}

.subcategoria-titulo {
    font-size: 1.5em;
    margin-top: 20px;
    color: #333;
}

@media (max-width: 768px) {
    .catalogo-container {
        flex-direction: column;
        padding: 10px;
        padding-bottom: 60px;
    }

    .catalogo-sidebar {
        width: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        background: #fff;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 5px 0;
    }

    .catalogo-sidebar h3 {
        display: none;
    }

    .catalogo-sidebar ul {
        display: flex;
        justify-content: space-around;
        background: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

    .catalogo-sidebar ul li {
        margin: 0;
        padding: 10px;
        text-align: center;
        flex: 1;
    }

    .catalogo-sidebar ul li a {
        font-size: 0.9em;
        display: block;
        color: #333;
    }

    .catalogo-sidebar ul li a:hover {
        color: #007bff;
    }

    .catalogo-content {
        margin-left: 0;
    }
}