/* ==========================================================================
   Variáveis CSS
   ========================================================================== */
   :root {
    --color-green-light: #99cc66;
    --color-green-top: #a3d368;
    --color-green-dark: #00984a;
    --color-purple: #702082;
    --color-red: #b31b34;
    --color-orange: #e87b27;
    --color-yellow: #fcd116;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ==========================================================================
   Reset e Base globais
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-light-gray);
    color: #333;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Utilidades */
.text-center-mobile { text-align: center; }
.fw-bold { font-weight: 700; }
.italic { font-style: italic; }

/* Placeholders (substituir por imagens reais) */
.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}
.bg-green-light { background-color: var(--color-green-light); }
.bg-blue-light { background-color: #5bc5ce; }
.bg-brown { background-color: #8c5b4e; }

/* ==========================================================================
   Header e Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--color-green-top);
    color: var(--color-white);
    font-size: 0.8rem;
    padding: 8px 0;
    text-align: right;
    font-weight: 600;
}

.top-bar a {
    color: var(--color-white);
    margin: 0 5px;
}

.site-header {
    background-color: var(--color-white);
    padding: 15px 0;
    position: relative;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 60px;
    height: 60px;
}

.logo-text h1 {
    font-family: var(--font-heading);
    color: #0b4e85; /* Azul escuro da logo na imagem */
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.logo-text h2 {
    font-family: var(--font-main);
    color: #0b4e85;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-green-dark);
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 99;
    padding-top: 100px;
    transition: 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 20px;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: var(--color-purple);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.btn-menu-destaque {
    background-color: var(--color-green-dark);
    color: var(--color-white) !important;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
}

/* ==========================================================================
   Hero / Carrossel
   ========================================================================== */
.hero {
    position: relative;
    background-color: var(--color-red);
    min-height: 500px; /* Ajuste conforme imagem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    padding: 50px 0;
}

/* Background com textura/imagem (Simulado) */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="none"/></svg>'); /* Inserir foto de fundo via WP */
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.carousel {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-btn {
    background-color: rgba(112, 32, 130, 0.8); /* Roxo com transparência */
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-btn:hover { background-color: var(--color-purple); }
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 0 50px;
}

.carousel-track {
    list-style: none;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    text-align: center;
}

.slide-label {
    display: none; /* Esconde o texto "SLIDE 1" na visualização final, mas mantemos para acessibilidade/referência */
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--color-white);
}

.slide-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.slide-text {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.slide-list {
    text-align: left;
    display: inline-block;
    margin-bottom: 20px;
}

.slide-list li {
    margin-bottom: 8px;
    font-weight: 600;
}

.slide-list.small {
    font-size: 0.9rem;
}

.inscricoes-badge {
    background-color: var(--color-yellow);
    color: var(--color-purple);
    font-weight: 800;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 15px;
}

/* Dots Navegação */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 2;
}

.carousel-indicator {
    border: none;
    background-color: rgba(255,255,255,0.5);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-indicator.current-slide {
    background-color: var(--color-white);
}

/* ==========================================================================
   Seções de Conteúdo (Inscrição, Yoga, Branca)
   ========================================================================== */
.layout-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
}

.imagem-redonda {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    flex-shrink: 0;
}

/* Seção Inscrição */
.secao-inscricao {
    background-color: var(--color-light-gray);
}

.call-to-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.titulo-roxo {
    color: var(--color-purple);
    font-size: 2rem;
    line-height: 1;
    text-align: right;
}

.btn-amarelo {
    background-color: var(--color-yellow);
    color: #333;
    font-weight: 800;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: lowercase;
    transition: transform 0.2s;
}

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

.texto-roxo {
    color: var(--color-purple);
    font-weight: 600;
    max-width: 300px;
    margin: 0 auto;
}

/* Seção Yoga Terapia */
.box-laranja {
    background-color: var(--color-orange);
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

.titulo-branco {
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 20px;
}

.texto-branco {
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 500;
}

/* Seção Branca Messina */
.box-verde {
    background-color: var(--color-green-dark);
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.selo-mec-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.selo-mec {
    background: linear-gradient(135deg, #d4af37, #aa7c11); /* Dourado */
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.selo-mec .stars { font-size: 0.6rem; }
.selo-mec .mec-text { font-size: 1.2rem; font-weight: 800; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 20px 0;
    text-align: center;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================================================
   Media Queries (Adaptação para Desktop)
   ========================================================================== */
@media (min-width: 768px) {
    .menu-toggle { display: none; }
    
    .mobile-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    .mobile-menu ul {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 0;
    }
    
    .mobile-menu li { margin: 0; }
    
    .mobile-menu a {
        font-size: 0.9rem;
        color: #333;
    }

    .btn-menu-destaque { margin-top: 0; }

    .header-inner { justify-content: space-between; }

    .layout-grid {
        flex-direction: row;
        justify-content: center;
        max-width: 1000px;
        margin: 0 auto;
        gap: 60px;
    }

    .layout-grid:nth-child(even) {
        flex-direction: row-reverse;
    }

    .text-center-mobile { text-align: left; }
    
    .call-to-action {
        justify-content: flex-start;
    }

    .box-laranja, .box-verde {
        padding: 50px;
    }
}
