:root {
    --gold: #D4AF37;
    --dark-gold: #B78D3F;
    --light-gold: #FFDF91;
    --dark-green: #1E3F20;
    --medium-green: #2E5E30;
    --brown: #5C4033;
    --light-brown: #8B6B4D;
    --cream: #F5F0E6;
    --black: #121212;
}

/* Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--cream);
    background-color: var(--black);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.gold-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

/* Textos Especiais */
.gold-text {
    color: var(--gold);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    padding: 1.5rem 0;
    background: var(--dark-green);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--dark-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo::selection{
    background-color: var(--cream);
    color: #1E3F20;
}

.logo-icons-container {
    display: flex;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    color: var(--gold);
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 50px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--cream);
}

.logo h1 span {
    color: var(--gold);
    font-weight: 400;
}


.subscribe-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to bottom, var(--gold), var(--dark-gold));
    color: var(--dark-green);
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.subscribe-btn:hover {
    background: linear-gradient(to bottom, var(--light-gold), var(--gold));
}



.subscribe-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.subscribe-btn:hover::before {
    left: 100%;
}
.subscribe-btn span{
    font-size: 18px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.desktop-nav a i {
    color: var(--gold);
}

.desktop-nav a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--light-gold);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--dark-green);
    z-index: 9999;
    transition: right 0.5s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-left: 1px solid var(--dark-gold);
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--gold);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: var(--light-gold);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin-top: 60px;
}

.mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Marcellus', serif;
    transition: all 0.3s ease;
}

.mobile-nav li a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.mobile-nav li a i {
    color: var(--gold);
    width: 25px;
    text-align: center;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
}

.hero-content::selection{
    background-color: var(--cream);
    color: #1E3F20;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero h2 span {
    color: var(--gold);
    display: block;
    font-size: 5.5rem;
}

.hero p {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.mandala-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vmin;
    height: 80vmin;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="%23D4AF37" stroke-width="0.5" d="M50 0a50 50 0 1 1 0 100 50 50 0 0 1 0-100zm0 10a40 40 0 1 0 0 80 40 40 0 0 0 0-80zm0 10a30 30 0 1 1 0 60 30 30 0 0 1 0-60zm0 10a20 20 0 1 0 0 40 20 20 0 0 0 0-40zm0 10a10 10 0 1 1 0 20 10 10 0 0 1 0-20z"/></svg>') center/contain no-repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Botões */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulsar 6.4s ease-out infinite;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        box-shadow: #B78D3F 0px 0px 40px;
    }
    100% {
        transform: scale(1);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-button i {
    margin-left: 0.5rem;
}

/* Seções Gerais */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 6rem;
}
.section-header::selection{
    background-color: white;
    color: black;
}

.section-header h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.section-header.dark .galeria-txt{
    color: var(--cream);
}
.section-header.dark h2.galeria-txt {
    color: var(--cream) !important;
}
.section-header .exper{
    color: var(--black);
}
.section-header .despertar{
    color: var(--cream);
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brown));
    margin: 0 auto;
}

/* About Section */
.about-section {
    background-color: var(--black);
    position: relative;
    height: 100%;
    padding: 0px 0px 7rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    height: auto;
}

.about-text {
    flex: 1;
}

.about-text::selection{
    background-color: white;
    color: black;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.gold-list {
    list-style: none;
    margin-top: 2rem;
}

.gold-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Marcellus', serif;
}

.gold-list i {
    color: var(--gold);
    font-size: 0.5rem;
}

.gold-text::selection{
    background-color: #1E3F20;
    color: var(--cream);
}

.about-image {
    flex: 1;
    position: relative;
}

.gold-frame {
    border: 5px solid var(--gold);
    padding: 10px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
}

.gold-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--gold);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.youtube {
    width: 100%;
    gap: 4rem;
    padding: 20px;
    margin-top: 80px;
    background-color: transparent;
    text-align: center;
    align-content: center;
    align-items: center;
    justify-content: center;
    height: auto;
}

.youtube::selection{
    background-color: white;
    color: black;
}

.yt-video {
    display: flex;
    padding: 0px;
    margin: 0px;
}

.youtube iframe {
    width: 100%;
    height: 600px;
    display: flex;
    border: solid gold 2px;
    border-radius: 10px;
}

.youtube h2 {
    font-size: 3rem;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

/* Classes Section */
.classes-section {
    background-color: var(--cream);
    color: var(--black);
    padding-bottom: 6rem;
}

.class-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.carousel-item {
    min-width: 350px;
    height: 500px;
    background-color: var(--black);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.carousel-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Estilos da Galeria */
.class-galeria {
    padding: 2rem 0;
    overflow: hidden;
}

.galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.galeria-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--cream);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-caption {
    transform: translateY(0);
}

/* Lightbox (modal) styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-height: 80vh;
    max-width: 90vw;
    border: 3px solid var(--gold);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.lightbox-button {
    background: rgba(212, 175, 55, 0.5);
    color: var(--cream);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-button:hover {
    background: var(--gold);
    color: var(--black);
}


/* Quando o texto estiver abaixo da imagem (em telas menores) */
@media (max-width: 992px) {
      #akal-muret-singh .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    #akal-muret-singh .about-text,
    #akal-muret-singh .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    #akal-muret-singh .gold-list {
        padding: 1rem;
    }
    
    .p-muret {
        padding: 0 1rem;
    }
}

#akal-muret-singh {
    background: transparent;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

#akal-muret-singh .container {
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#akal-muret-singh .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4rem;
    justify-content: center;
}

#akal-muret-singh .about-text {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

#akal-muret-singh .about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#akal-muret-singh .gold-frame {
    max-width: 100%;
    height: auto;
}
.p-muret{
    display: flex;
    text-align: justify;
}

.p-muret::selection{
    background-color: #1E3F20;
    color: var(--cream);
}
/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--dark-green), var(--black));
    padding: 6rem 0rem ;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.benefit-card {
    background-color: rgba(30, 63, 32, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 3rem 2rem;
    top: 2vh !important;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-green);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.gold-icon {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 2px solid var(--gold);
}

.green-icon {
    background-color: rgba(46, 94, 48, 0.1);
    color: var(--medium-green);
    border: 2px solid var(--medium-green);
}

.brown-icon {
    background-color: rgba(92, 64, 51, 0.1);
    color: var(--light-brown);
    border: 2px solid var(--light-brown);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.benefit-card p {
    font-family: 'Marcellus', serif;
    color: rgba(245, 240, 230, 0.8);
}



.nanak-section {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--cream);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.nanak-section .section-nanak-topo h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 0;
}
.nanak-section .section-nanak-topo h2 {
    font-size: 1.8rem;
}

.nanak-section .jornada {
    background-color: transparent;
    justify-content: center;
    align-content: center;
    gap: 10px;
    display: flex;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--dark-gold);
    margin-top: 10px;
    text-transform: uppercase;
}
.nanak-section .jornada img{
    width: auto;
    height: 50px;
}

.nanak-section .divisor {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--dark-gold), transparent);
    margin: 20px auto;
}

.nanak-section .section-content-nanak p {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}


/* Contact Section */
.contact-section {
    background-color: var(--black);
    padding: 6rem 0;
}

.contact-content {
    display: flex;
    gap: 4rem;
}
.contact-content p {
    color: white;
    text-decoration: none;
}

.nome-local{
    font-weight: bold;
    color: #B78D3F !important;
    font-size: 1.5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-decoration: none;

}

.contact-info h2 span {
    color: var(--gold);
    display: block;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-family: 'Marcellus', serif;
}

.contact-info iframe {
    align-content: center;
    width: 100%;
    margin: 20px 0px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    background-color: transparent;
    margin-top: 3rem;
}

.social-links a {
    color: var(--cream);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.contact-form {
    flex: 1;
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(245, 240, 230, 0.1);
    border: 1px solid var(--brown);
    border-radius: 5px;
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    display: flex;
    text-align: center;
    background-color: var(--dark-green);
    color: var(--cream);
    padding: 4rem 0 0;
    border-top: 1px solid var(--dark-gold);
    position: relative;
}

.footer-content {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0 1.5rem;
}

.footer-section h4 {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section.about .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section.about .logo-icons-container {
        display: flex;
        justify-content: center;
        gap: 15px; /* Espaço entre as logos */
        margin-bottom: 10px; /* Espaço entre as imagens e o título */
        order: -1; /* Garante que fica acima do h1 */
    }
    
    .footer-section.about .footer-logo img {
        width: 60px; /* Ajuste conforme necessário */
        height: auto;
    }
    
    .footer-section.about .logo h1 {
        order: 1; /* Garante que o h1 fica abaixo */
        margin-top: 0; /* Remove margem superior */
    }

.footer-logo h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--cream);
}

.footer-logo h3 span {
    color: var(--gold);
}

.footer-about {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-family: 'Marcellus', serif;
}

.contact-info {
    padding: 0 1.5rem;
}

.contact-info h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-family: 'Marcellus', serif;
}

.contact-info i {
    color: var(--gold);
    margin-right: 0.8rem;
    width: 20px;
    align-content: center;
    text-align: center;
}

/* Seção Links */
.footer-section.links ul {
    list-style: none;
    align-content: center;
    text-align: center;
}

.footer-section.links li {
    margin-bottom: 0.8rem;
}

.footer-section.links a {
    color: var(--cream);
    text-decoration: none;
    text-align: center;
    justify-content: center;
    font-family: 'Marcellus', serif;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section.links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-section.links i {
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Seção Horários */
.schedule li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-family: 'Marcellus', serif;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.schedule span:first-child {
    color: var(--gold);
    font-weight: 500;
}

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.copyright p {
    font-family: 'Marcellus', serif;
    margin-bottom: 1rem;
    color: rgba(245, 240, 230, 0.7);
    transition: color 0.3s ease;
}

.copyright a:hover p {
    color: var(--gold);
}

.footer-mandala img {
    width: 80px;
    opacity: 0.7;
    transition: all 0.5s ease;
}

.footer-mandala:hover img {
    transform: rotate(15deg);
    opacity: 1;
}

/* Responsividade */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .subscribe-btn{
        width: 60%;
    }
    
    .mobile-menu-btn {
        display: flex;
        font-size: 1.8rem;
        color: var(--gold);
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
    
    .header-content {
        padding: 15px;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
        margin-top: 0;
    }
    
    .hero h2 span {
        font-size: 2.5rem;
    }
    .section-header.dark h2.galeria-txt,
    .section-header.dark .galeria-txt {
        color: var(--cream) !important;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    .nanak-section .jornada img{
        display: none;
    width: auto;
    height: 50px;
}
    
      .footer-section {
        display: flex;
        flex-direction: column;
    }
    
    .footer-section.about .logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section.about .logo-icons-container {
        display: flex;
        justify-content: center;
        gap: 15px; /* Espaço entre as logos */
        margin-bottom: 10px; /* Espaço entre as imagens e o título */
        order: -1; /* Garante que fica acima do h1 */
    }
    
    .footer-section.about .footer-logo img {
        width: 60px; /* Ajuste conforme necessário */
        height: auto;
    }
    
    .footer-section.about .logo h1 {
        order: 1; /* Garante que o h1 fica abaixo */
        margin-top: 0; /* Remove margem superior */
    }
    
    .footer-section.links ul {
        order: 1;
    }
    
    .footer-section h4 {
        order: 0; /* Títulos ficam abaixo das imagens */
        margin-top: 1rem;
    }
    
    .contact-info i {
        order: -1; /* Ícones ficam acima do texto */
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: block;
        width: 100%;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section.links a {
        flex-direction: column;
    }
    
    .footer-section.links i {
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    
    .youtube iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .youtube iframe {
        height: 250px;
    }
    
    .galeria {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .lightbox-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
     .footer-logo img {
        width: 40px;
    }
    
    .footer-mandala img {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero h2 span {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .mobile-nav {
        width: 80%;
    }
    
    .logo-icons-container {
        gap: 5px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon img {
        width: 40px;
    }
    
    .youtube iframe {
        height: 180px;
    }
    
    .youtube h2 {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        min-width: 280px;
        height: 400px;
    }
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-logo img {
        width: 35px;
    }
    
    .footer-mandala img {
        width: 50px;
    }
}