/* ============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================ */

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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #f5f5f5;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
}

/* ============================================
   HEADER STICKY
   ============================================ */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.logo h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-content h2 {
    font-family: var(--font-secondary);
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.stat p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
    padding: 6rem 2rem;
    background-color: white;
}

.portfolio-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.portfolio-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portfolio-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.portfolio-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
    border-radius: 4px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.view-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.view-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.pacotes {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.pacotes-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pacotes-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pacotes-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.pacotes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pacote-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.pacote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pacote-destaque {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.pacote-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 20px;
}

.pacote-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

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

.pacote-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pacote-preco {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pacote-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pacote-features li {
    padding: 0.7rem 0;
    color: var(--light-text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.pacote-features li:last-child {
    border-bottom: none;
}

.pacote-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.pacote-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ============================================
   BEHIND THE SCENES SECTION
   ============================================ */

.bastidores {
    padding: 6rem 2rem;
    background-color: white;
}

.bastidores-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bastidores-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bastidores-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bastidores-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.bastidores-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.depoimentos {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.depoimentos-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.depoimentos-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.depoimentos-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.depoimentos-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.depoimento-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-autor {
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 2rem;
    background-color: white;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.faq-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 1.5rem 0;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contato {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.contato-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contato-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contato-header p {
    font-size: 1.1rem;
    color: var(--light-text);
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-microcopy {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.form-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.form-submit:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.contato-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-color);
}

/* ============================================
   DEMO WARNING SECTION
   ============================================ */

.demo-warning {
    padding: 2rem;
    background-color: #fff3cd;
    border-top: 2px solid #ffc107;
}

.warning-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.warning-content h3 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.warning-content p {
    color: #856404;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-content p {
    margin: 0.5rem 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .nav-desktop {
        gap: 1.5rem;
    }

    .about-container,
    .bastidores-container,
    .contato-container {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .pacotes-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .pacote-destaque {
        transform: scale(1);
    }

    .contato-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .portfolio-header h2,
    .pacotes-header h2,
    .depoimentos-header h2,
    .faq-header h2,
    .contato-header h2,
    .about-content h2,
    .bastidores-content h2 {
        font-size: 2rem;
    }

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

    .about,
    .portfolio,
    .pacotes,
    .bastidores,
    .depoimentos,
    .faq,
    .contato {
        padding: 4rem 1.5rem;
    }

    .contato-form {
        padding: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.8rem 1rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.8rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo p {
        font-size: 0.65rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .portfolio-header h2,
    .pacotes-header h2,
    .depoimentos-header h2,
    .faq-header h2,
    .contato-header h2,
    .about-content h2,
    .bastidores-content h2 {
        font-size: 1.5rem;
    }

    .about,
    .portfolio,
    .pacotes,
    .bastidores,
    .depoimentos,
    .faq,
    .contato {
        padding: 2.5rem 1rem;
    }

    .contato-container {
        gap: 2rem;
    }

    .contato-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.5rem 0.8rem;
        font-size: 1.2rem;
    }

    .lightbox-close {
        font-size: 2rem;
    }
}
