        :root {
            --primary-blue: #000035;
            --light-blue: #151553;
            --dark-blue: #000000;
            --accent-yellow: #FFD54F;
            --accent-orange: #FFB74D;
            --light-bg: #F5F9FF;
            --white: #FFFFFF;
            --text-dark: #333333;
            --text-light: #666666;
        }

   /* Hero Section */
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
            margin: 0;
            overflow: hidden;
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
            position: relative;
        }
        
        .cabeçalho-imagem {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }
        
        .cabeçalho-imagem::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            z-index: 1;
        }
        
        .cabeçalho-imagem img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 2;
        }
        
        .cabeçalho-texto {
            padding: 3rem;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            flex-direction: column;
            text-align: left;
            color: var(--white);
            position: relative;
            z-index: 2;
        }
        
        .cabeçalho-texto h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .cabeçalho-texto p {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--white);
        }
        
        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .btn-hero {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        
        .btn-primary {
            background-color: var(--accent-yellow);
            color: var(--dark-blue);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        




        /* Resources Section */
        .div-meio {
            padding: 5rem 5%;
            background-color: var(--white);
        }
        
        .textos-inicio {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .textos-inicio h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .textos-inicio h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-yellow);
            border-radius: 2px;
        }
        
        .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 3rem;
        }
        
        .manual-item {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #06D6A0;
        }
        
        .manual-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .manual-item h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .manual-item p {
            color: var(--text-light);
            line-height: 1.8;
        }
        

                
        .manual-item2 {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #FF6B6B;
        }
        
        .manual-item2:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .manual-item2 h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .manual-item2 p {
            color: var(--text-light);
            line-height: 1.8;
        }


                
        .manual-item3 {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 5px solid #FFD166;
        }
        
        .manual-item3:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .manual-item3 h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .manual-item3 p {
            color: var(--text-light);
            line-height: 1.8;
        }

        .btn-resources {
            display: block;
            margin: 0 auto;
            padding: 15px 30px;
            background-color: #118AB2;
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
        }
        
        .btn-resources:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
        }
        
        /* Carousel */
        .pages-carousel {
            padding: 1rem 5%;
            background-color: var(--light-bg);
            position: relative;
        }
        
        .pages-carousel h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .pages-carousel h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-yellow);
            border-radius: 2px;
        }
        
        .page-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-blue);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .page-arrow:hover {
            background-color: var(--dark-blue);
            transform: translateY(-50%) scale(1.1);
        }
        
        .page-arrow.left {
            left: 20px;
        }
        
        .page-arrow.right {
            right: 20px;
        }
        
        .pages-wrapper {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: none;
        }
        
        .pages-wrapper::-webkit-scrollbar {
            display: none;
        }
        
        .page-card {
            min-width: 280px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        
        .page-card:hover {
            transform: translateY(-10px);
        }
        
        .page-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .page-body {
            padding: 20px;
        }
        
        .page-body h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }
        
        .page-body p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .btnvermais {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-blue);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btnvermais:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Forum Section */
        .forum-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
            color: white;
            text-align: center;
        }
        
        .forum-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .forum-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .forum-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .btn-forum {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--accent-yellow);
            color: var(--dark-blue);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-forum:hover {
            background-color: var(--accent-orange);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Rights Section */
        .div-inicio-direitos {
            padding: 5rem 5%;
            background-color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .div-direitos-texto h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .div-direitos-texto p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .btn-inicio-convivendocomtea, .btn-inicio-atividades {
            padding: 15px 30px;
            background-color: #000035;
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            width: 100px;
            margin-top: 100px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
            width: 100%;
        }
        
        .btn-inicio-convivendocomtea:hover, .btn-inicio-atividades:hover {
            background-color: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
        }
        
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-section {
                grid-template-columns: 1fr;
            }
            
            .cabeçalho-texto {
                text-align: center;
                align-items: center;
            }
            
            .div-inicio-direitos {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        