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

html {
    scroll-behavior: smooth;
}

:root {
    --violeta-principal: #2D1B4E;
    --violeta-medio: #4A3B6E;
    --lavanda-claro: #8B7BA8;
    --roxo-suave: #E8E3F0;
    --dourado: #D4AF37;
    --dourado-suave: #F1D063;
    --branco: #FFFFFF;
    --off-white: #FEFEFE;
    --preto-suave: #2C2C2C;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--off-white);
    color: var(--preto-suave);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--violeta-principal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--preto-suave);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--violeta-principal);
}

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

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

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

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--violeta-principal);
    margin: 3px 0;
    transition: 0.3s;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.8), rgba(74, 59, 110, 0.6)), 
                url('../img/foto_hero2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-logo-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: logoFadeIn 1.5s ease-out 0.3s both;
    max-width: 400px;
    width: 100%;
}

.hero-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

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

.hero h1 {
    font-family: 'Crimson Text', serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 2.8rem;
    color: var(--violeta-principal);
    text-align: center;
    margin-bottom: 25px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--violeta-medio);
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Quem Somos Section */
.quem-somos {
    background: var(--roxo-suave);
}

/* Ayahuasca Section Destacada */
.ayahuasca-destacada {
    background: linear-gradient(135deg, 
        rgba(45, 27, 78, 0.85), 
        rgba(74, 59, 110, 0.8)), 
        url('../img/foto_hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--branco);
}

.ayahuasca-destacada .section-title {
    color: var(--branco);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.ayahuasca-destacada .section-subtitle {
    color: var(--bege-suave);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.ayahuasca-content {
    max-width: 900px;
    margin: 0 auto;
}

.ayahuasca-text {
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.ayahuasca-text h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2.4rem;
    color: var(--dourado);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.ayahuasca-text p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
    color: var(--branco);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quem-somos-text h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2.2rem;
    color: var(--violeta-principal);
    margin-bottom: 30px;
}

.quem-somos-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.destaque-text {
    background: var(--dourado);
    color: var(--preto-suave);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    font-style: italic;
    border-left: 5px solid var(--violeta-principal);
}

.quem-somos-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quem-somos-image img {
    width: 100%;
    height: 500px;
    object-fit: stretch;
}

/* Galeria de Fotos Section */
.galeria {
    background: var(--roxo-suave);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Oferecemos Section */
.oferecemos {
    background: var(--branco);
}

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

.servico-card {
    background: var(--roxo-suave);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--dourado);
}

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

.servico-card i {
    font-size: 3.5rem;
    color: var(--violeta-principal);
    margin-bottom: 25px;
}

.servico-card h3 {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    color: var(--violeta-principal);
    margin-bottom: 20px;
}

.servico-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.servico-link {
    color: var(--dourado);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.servico-link:hover {
    color: var(--violeta-principal);
}

/* Estilos Destacados da Ayahuasca */
.ayahuasca-destaque {
    background: rgba(212, 175, 55, 0.9);
    color: var(--preto-suave);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    font-style: italic;
    border-left: 5px solid var(--branco);
    text-shadow: none;
}

.ayahuasca-lista {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.ayahuasca-lista-item {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--dourado);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: var(--preto-suave);
    text-shadow: none;
}

.ayahuasca-pergunta {
    font-style: italic;
    color: var(--dourado);
    margin: 30px 0;
    font-size: 1.3rem;
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.ayahuasca-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--branco);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    border: 2px solid var(--dourado);
}

.ayahuasca-cta-titulo {
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.ayahuasca-cta-subtitulo {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 15px 0;
    color: var(--dourado);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.ayahuasca-conclusao {
    font-weight: 600;
    color: var(--preto-suave);
    font-size: 1.4rem;
    text-align: center;
    margin-top: 40px;
    background: rgba(212, 175, 55, 0.95);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    text-shadow: none;
}

/* Estilos da seção de vivências */
.vivencias-empty {
    text-align: center;
    color: var(--dourado);
    font-size: 1.3rem;
    margin: 40px 0;
    background: rgba(0,0,0,0.1);
    padding: 30px;
    border-radius: 12px;
}

.vivencia-flex-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Estilos dos elementos centralizados */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Estilos do círculo dourado */
.circle-dourado {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle at 60% 40%, #fffbe7 0%, #d4af37 70%, #bfa133 100%);
    box-shadow: 0 0 40px 10px rgba(212,175,55,0.4), 0 8px 40px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: brilhoDourado 2.5s infinite alternate;
}

.circle-icon {
    font-size: 3.5rem;
    color: #fffbe7;
    text-shadow: 0 0 18px #d4af37, 0 0 8px #fff;
    transform: rotate(20deg);
}

.circle-text {
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Crimson Text', serif;
    font-size: 1.1rem;
    color: #2d5016;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #fffbe7;
}

/* Estilos dos títulos */
.heading-contato {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: var(--violeta-principal);
    margin-bottom: 30px;
}

/* Estilos dos selects */
.select-interesse {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    font-size: 1rem;
}

.select-interesse option {
    background: var(--violeta-principal);
    color: var(--branco);
}

/* Estilos do Modal de Login */
#vivenciaLoginModalBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

#vivenciaLoginModalBg.active {
    display: flex;
}

#vivenciaLoginModalBg .vivencia-modal {
    max-width: 370px;
    width: 96vw;
    margin: 20px auto;
    position: relative;
    box-sizing: border-box;
    background: #fffbe7;
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

#vivenciaLoginMsg {
    min-height: 24px;
    color: #b91c1c;
    text-align: center;
}

#vivenciaLoginModalBg label {
    font-weight: 600;
    color: var(--verde-floresta, #2d5016);
}

#vivenciaLoginModalBg input[type="email"],
#vivenciaLoginModalBg input[type="password"] {
    font-size: 1.08rem;
    color: #111;
    background: #fff;
    border: 1px solid #bfa133;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

#vivenciaLoginModalBg input[type="password"] {
    padding-right: 38px;
}

.vivencia-password-toggle {
    position: absolute;
    right: 18px;
    top: 38px;
    background: none;
    border: none;
    color: #bfa133;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

/* Estilos para o link "Esqueci ou não tenho senha" */
.vivencia-login-help {
    text-align: center;
    margin-top: 16px;
}

.esqueci-senha-link {
    color: #bfa133;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.esqueci-senha-link:hover {
    color: #2d5016;
    text-decoration: underline;
}

/* Estilos do Modal de Descrição */
.vivencia-modal-bg {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
}

.vivencia-modal-bg.active {
    display: flex;
}

.vivencia-modal {
    background: #fffbe7;
    color: var(--preto-suave, #222);
    border-radius: 18px;
    max-width: 95vw;
    width: 420px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    padding: 32px 28px 24px 28px;
    position: relative;
    animation: modalFadeIn 0.2s;
}

.vivencia-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: #bfa133;
    cursor: pointer;
}

.vivencia-modal-title {
    font-size: 1.25rem;
    color: var(--dourado);
    font-weight: 700;
    margin-bottom: 18px;
}

.vivencia-modal-desc {
    font-size: 1.08rem;
    color: var(--preto-suave, #222);
    white-space: pre-line;
}

/* Estilos do Grid de Vivências */
.vivencias-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin: 40px 0 0 0;
}

.vivencia-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    overflow: hidden;
    min-width: 0;
    transition: box-shadow 0.2s;
}

.vivencia-card:hover {
    box-shadow: 0 6px 32px rgba(212,175,55,0.18), 0 2px 16px rgba(0,0,0,0.13);
}

.vivencia-img {
    width: 100%;
    aspect-ratio: 3/1;
    min-height: 140px;
    max-height: 210px;
    height: 180px;
    background-size: cover;
    background-position: center center;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    background-repeat: no-repeat;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.vivencia-info {
    padding: 18px 16px 20px 16px;
    text-align: left;
    width: 100%;
}

.vivencia-info h3 {
    font-size: 1.25rem;
    color: var(--dourado);
    margin-bottom: 8px;
}

.vivencia-data,
.vivencia-local {
    font-size: 0.98rem;
    color: var(--violeta-principal);
    margin-bottom: 6px;
}

.vivencia-desc {
    font-size: 1.02rem;
    color: var(--preto-suave);
    margin-bottom: 12px;
}

.btn-vivencia-inscrever {
    display: inline-block;
    background: var(--dourado);
    color: var(--preto-suave);
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-vivencia-inscrever:hover {
    background: #bfa133;
    color: #fff;
}

.btn-vivencia-descricao {
    display: inline-block;
    background: var(--verde-floresta, #2d5016);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-vivencia-descricao:hover {
    background: #1e3610;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .vivencias-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .vivencias-cards-grid {
        grid-template-columns: 1fr;
    }
    #vivenciaLoginModalBg .vivencia-modal {
        left: unset;
        right: unset;
        top: unset;
        bottom: unset;
    }
}

@media (max-width: 500px) {
    #vivenciaLoginModalBg .vivencia-modal {
        max-width: 98vw;
        width: 98vw;
        margin: 0;
        border-radius: 0 0 18px 18px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Diferencial Section */
.diferencial {
    background: var(--violeta-principal);
    color: var(--branco);
}

.diferencial .section-title {
    color: var(--branco);
}

.diferencial .section-subtitle {
    color: var(--bege-suave);
}

.diferencial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 50px;
}

.diferencial-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.diferencial-text h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    color: var(--dourado);
    margin-bottom: 25px;
}

.diferencial-list {
    list-style: none;
    margin: 30px 0;
}

.diferencial-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.diferencial-list i {
    color: var(--dourado);
    font-size: 1.3rem;
    min-width: 25px;
}

.diferencial-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Depoimentos Section */
.depoimentos {
    background: var(--roxo-suave);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.depoimento-card {
    background: var(--branco);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--dourado);
    position: relative;
    overflow: hidden;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-suave));
}

.depoimento-content {
    position: relative;
    z-index: 2;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--preto-suave);
    margin-bottom: 20px;
    font-style: italic;
    text-align: left;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.autor-nome {
    font-weight: 600;
    color: var(--violeta-principal);
    font-size: 1rem;
}

.instagram-link {
    color: var(--violeta-principal);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 8px;
    border-radius: 50%;
    background: rgba(45, 27, 78, 0.1);
}

.instagram-link:hover {
    color: var(--dourado);
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.1);
}


.instagram-link-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(196, 53, 132, 0.3);
    vertical-align: middle;
}

.instagram-link-inline:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(196, 53, 132, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-link-inline i {
    font-size: 0.9rem;
    margin: 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.depoimento-item {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.depoimento-img {
    width: 100%;
    height: 250px;
    object-fit: stretch;
    display: block;
}

/* Contato Section */
.contato {
    background: var(--branco);
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 50px;
}

.contato-info {
    background: var(--roxo-suave);
    padding: 50px;
    border-radius: 20px;
    border-left: 5px solid var(--dourado);
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contato-item i {
    font-size: 1.5rem;
    color: var(--violeta-principal);
    min-width: 30px;
    margin-top: 5px;
}

.contato-item h4 {
    color: var(--violeta-principal);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contato-item p {
    color: var(--preto-suave);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    background: var(--violeta-principal);
    color: var(--branco);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

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

.formulario {
    background: var(--violeta-principal);
    padding: 50px;
    border-radius: 20px;
    color: var(--branco);
}

.formulario h3 {
    font-family: 'Crimson Text', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dourado);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.btn-enviar {
    background: var(--dourado);
    color: var(--preto-suave);
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-enviar:hover {
    background: var(--branco);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--preto-suave);
    color: var(--branco);
    text-align: center;
    padding: 50px 0;
}

.footer .logo {
    color: var(--dourado);
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer .logo img {
    width: 50px;
    height: 50px;
}

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

.footer-section h4 {
    color: var(--dourado);
    margin-bottom: 15px;
    font-family: 'Crimson Text', serif;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.mantra {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--dourado);
    margin: 30px 0;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .ayahuasca-destacada {
        background-attachment: scroll;
    }

    .ayahuasca-text {
        padding: 0 15px;
    }

    .ayahuasca-text h3 {
        font-size: 2rem;
    }

    .ayahuasca-text p {
        font-size: 1.1rem;
        text-align: left;
    }

    .hero-content {
        gap: 30px;
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .hero-logo-container {
        max-width: 300px;
        padding: 20px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        height: calc(100vh - 80px);
        width: 100%;
        background: var(--off-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--preto-suave);
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .quem-somos-content,
    .diferencial-content,
    .contato-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 20px;
    }

    .depoimento-img {
        height: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .carrossel-wrapper {
        height: 350px;
    }

    .carrossel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carrossel-prev {
        left: 10px;
    }

    .carrossel-next {
        right: 10px;
    }

    .carrossel-indicators {
        bottom: 15px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 1fr);
        gap: 10px;
        padding: 10px;
    }

    .logo img {
        width: 30px;
        height: 30px;
    }

    .footer .logo img {
        width: 40px;
        height: 40px;
    }

    .hero-content {
        gap: 25px;
    }

    .hero-logo-container {
        max-width: 250px;
        padding: 15px;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 1fr);
        gap: 15px;
    }

    .depoimento-img {
        height: 180px;
    }
}