/* Base Styles */
:root {
    --color-gold: #D4AF37;
    --color-black: #000000;
    --color-dark: #111111;
    --color-dark-2: #1F1F1F;
    --color-dark-3: #2D2D2D;
    --color-gray: #D1D1D1;
    --color-white: #FFFFFF;
    --color-gold-light: #E9C767;
    --color-gold-dark: #B08F1A;
    --color-error: #FF4136;
    --color-success: #2ECC40;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
}

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

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.max-width-md {
    max-width: 800px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-lg {
    margin-top: 40px;
}

.text-gold {
    color: var(--color-gold);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-gradient {
    background: linear-gradient(to right, var(--color-black), var(--color-dark));
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    
}

h3 {
    font-size: 1.5rem;
    text-align: center;
}
h5 {
    font-size: 2.0rem;
    text-align: left;
}

p {
    margin-bottom: 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-white);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

.link-gold {
    color: var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.link-gold:hover {
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    background-color: var(--color-gold-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Header */

.page-header {
    padding-top: 120px; /* ou ajuste conforme necessário */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    position: relative;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--color-gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Featured Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.video-item {
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background-color: var(--color-dark-2);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 64px;
    height: 64px;
    background-color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--color-black);
}

.video-item h3 {
    margin-top: 15px;
    font-size: 1.2rem;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: var(--color-black);
    border: 1px solid var(--color-dark-3);
    border-radius: 8px;
    padding: 30px;
    transition: border-color 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: var(--color-gold);
}

.package-card.featured {
    border: 2px solid var(--color-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-features {
    margin: 20px 0 30px;
}

.package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.package-features li::before {
    content: '✓';
    color: var(--color-gold);
    margin-right: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-dark);
    border-radius: 8px;
    padding: 30px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-dark-3);
    margin-right: 15px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    margin-bottom: 5px;
}

.testimonial-text {
    color: var(--color-gray);
}

/* Contact Form Styles - Enhanced */
.contact {
    background-color: var(--color-black);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-form-container,
.contact-info {
    flex: 1;
    padding: 0 15px;
    min-width: 300px;
}

.contact-form-container {
    margin-bottom: 40px;
}

.contact-form-container h2,
.contact-info h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.contact-form-container h2::after,
.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
}

.form-container {
    background-color: var(--color-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-dark-3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--color-dark-2);
    border: 2px solid var(--color-dark-3);
    border-radius: 6px;
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn {
    min-width: 200px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.success-message {
    text-align: center;
    padding: 30px 0;
}

.success-message h3 {
    color: var(--color-success);
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 25px;
}

/* Contact Info Styles - Enhanced */
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info-container {
    background-color: var(--color-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-dark-3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-items {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    background-color: var(--color-dark-2);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid var(--color-gold);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 2;
}

.contact-item h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.contact-item p {
    margin-bottom: 5px;
    color: var(--color-white);
}

.contact-item p:last-child {
    margin-bottom: 0;
}

.social-section {
    margin-top: auto;
}

.social-section h3 {
    margin-bottom: 15px;
    color: var(--color-gold);
}

.social-links-contact {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-dark-3);
}

.social-link:hover {
    background-color: var(--color-gold);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.social-link:hover svg {
    fill: var(--color-black);
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-dark);
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--color-gold);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-dark-3);
}

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

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: var(--color-white);
    background: none;
    border: none;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .row {
        flex-direction: column;
    }
    
    .contact-form-container,
    .contact-info {
        width: 100%;
    }
    
    .contact-info {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-black);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active ul {
        flex-direction: column;
    }
    
    .main-nav.active li {
        margin: 10px 0;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .packages-grid {
        gap: 20px;
    }
    
    .form-container,
    .contact-info-container {
        padding: 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .form-submit .btn {
        width: 100%;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    /* Sobre - Galeria de Fotos */
.photo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.photo-frame {
    aspect-ratio: 9 / 16;
    width: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


}



/* Estilo da seção "Sobre" para desktop */
.about .row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.about-photos {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-content {
    flex: 1;
}

/* Grid de fotos */
.photo-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.photo-frame {
    aspect-ratio: 9 / 16;
    width: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 10px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 2;
  min-width: 280px;
}

/* Estilos para o Modal de Vídeo */
        .video-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.9);
            transition: all 0.3s ease;
        }
        
        .video-modal-content {
            position: relative;
            margin: auto;
            padding: 0;
            width: 90%;
            max-width: 900px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: #fff;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }
        
        .close-modal:hover,
        .close-modal:focus {
            color: #daa520; /* Dourado para combinar com o tema */
            text-decoration: none;
        }
        
        body.modal-open {
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .video-modal-content {
                width: 95%;
            }
            
            .close-modal {
                top: -35px;
                font-size: 24px;
            }
        }
