atimize e organize o css e modernize

/* assets/css/style.css */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

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

h1, h2,h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================= */
/* MENU MOBILE EM TODAS AS TELAS */
/* ============================= */

.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 180px;
}

.logo img,
.logo span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

/* Botão Hambúrguer (sempre visível) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 30px;
    height: 22px;
    justify-content: space-between;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s;
    border-radius: 2px;
}

/* Animação do hambúrguer */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Menu de navegação (escondido por padrão) */
.main-nav {
    position: fixed;
    top: 60px; /* altura do header */
    left: 0;
    width: 100%;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-nav.open {
    max-height: 400px;
    transition: max-height 0.5s ease-in-out;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li {
    border-bottom: 1px solid #eee;
}

.main-nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s;
}

.main-nav a:hover {
    background: #f9f9f9;
    color: #d4af37;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #b8942e;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #d4af37;
}

/* Hero Slide */
/* Hero Slide */
.hero {
    position: relative;
    overflow: hidden;
    height: 600px;
    width: 100%;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero-item {
    min-width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-overlay p {
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Hero Slide */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 800px;
    background: #f9f9f9;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
}

.slide-item {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: white;
}

.slide-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.slide-content {
    max-width: 600px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}


/* About */
.about-preview {
    padding: 60px 0;
}

.flex-row {
    display: flex;
    gap: 40px;
    margin: 2rem 0;
}

.col-6 {
    flex: 1;
}

/* Services */
.services-home {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

/* ============================= */
/* 13. RODAPÉ FIXO NO FINAL DA PÁGINA (Sticky Footer) */
/* ============================= */

/* Garante que o body ocupe toda a altura da tela */
html, body {
    height: 100%;
}

/* Usa flexbox para empurrar o footer para baixo */
body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

.site-footer {
    width: 100%;
    margin-top: auto; /* Empurra o footer para o fundo */
    flex-shrink: 0;  /* Evita que o footer seja comprimido */
}

.social-links a {
    color: white;
    margin-right: 15px;
}

.copyright {
    text-align: center;
    color: #aaa;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ============================= */
/* MENU LATERAL (SLIDE DA DIREITA) */
/* ============================= */

/* Overlay escuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Lateral */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.side-menu.open {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.menu-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #555;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #d4af37;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.side-menu li {
    border-bottom: 1px solid #eee;
}

.side-menu {
    transform: translateX(100%);
}

.side-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s;
}

.side-menu a:hover {
    background: #f9f9f9;
    color: #d4af37;
}

/* Header fixo */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    text-align: center;
}

/* Remove menu padrão */
.main-nav {
    display: none !important;
}

/* ============================= */
/* PÁGINA SOBRE - ALINHAMENTO FINAL */
/* ============================= */

.about-page {
    padding: 100px 10px;
    font-family: 'Poppins', sans-serif;
}

/* Grid Responsivo */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Texto à esquerda */
.about-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-text {
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

/* Imagem à direita */
.about-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Mini Galeria */
.about-gallery {
    margin: 60px 0;
    background: #f5f5f5;
    padding: 40px 20px;
    border-radius: 12px;
}

.about-gallery h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Responsivo (Mobile) */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-image img {
        max-height: 300px;
    }
}

/* ============================= */
/* PÁGINA DE SERVIÇOS */
/* ============================= */

.services-page {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 10px 0;
    font-weight: 600;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h1 {
        font-size: 1.8rem;
    }
}

/* Galeria */
        .gallery-container {
            padding: 80px 0;
        }

        .gallery-title {
            font-size: 2.2rem;
            color: #333;
            margin-bottom: 50px;
            text-align: center;
            font-weight: 600;
        }

        .back-link {
            display: inline-block;
            color: #d4af37;
            font-weight: 500;
            margin-bottom: 20px;
            text-decoration: none;
            font-size: 1.1rem;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        h2 {
            font-size: 1.8rem;
            color: #333;
            margin: 60px 0 20px;
            text-align: center;
        }

        /* Grid de pastas */
        .folders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .folder {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            height: 240px;
        }

        .folder:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .folder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .folder-name {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 15px;
            font-size: 1.1rem;
            text-align: center;
            font-weight: 500;
        }

        /* Miniaturas dentro da pasta */
        .thumbnails-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .thumbnail {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.2s;
            height: 140px;
        }

        .thumbnail:hover {
            transform: scale(1.05);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            max-width: 80%;
            max-height: 80vh;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .modal-content img {
            width: 100%;
            height: auto;
            display: block;
        }

        .close {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0,0,0,0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 24px;
            line-height: 50px;
            text-align: center;
            cursor: pointer;
            z-index: 1001;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev { left: 20px; }
        .next { right: 20px; }

        /* Responsivo */
        @media (max-width: 768px) {
            .gallery-title, h2 {
                font-size: 1.8rem;
            }
            .folder {
                height: 200px;
            }
            .thumbnail {
                height: 120px;
            }
        }

/* === LIGHTBOX PERSONALIZADO === */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

#lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  font-weight: bold;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: white;
  border: none;
  width: 50px;
  height: 80px;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.3);
}

.nav-btn.prev { left: -60px; }
.nav-btn.next { right: -60px; }

.caption {
  color: white;
  margin-top: 10px;
  font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .nav-btn {
    width: 40px;
    height: 60px;
    font-size: 18px;
  }
  .nav-btn.prev { left: -40px; }
  .nav-btn.next { right: -40px; }
  .close {
    top: -30px;
    font-size: 24px;
  }
}