
        :root {
            --primary: #1B4B5A;
            --secondary: #7FA99B;
            --accent: #C9A568;
            --rose: #D4A5A5;
            --cream: #FAF7F2;
            --white: #FFFFFF;
            --text-dark: #2B3A42;
            --text-light: #8B8B8B;
        }

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

        /*body {
            font-family: 'Raleway', sans-serif;
            background: var(--cream);
            color: var(--text-dark);
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }*/

        body {
            font-family: 'Raleway', sans-serif;
        }
        
        h1, .section-title {
            font-family: 'Playfair Display', serif;
        }
        
        .container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(27, 75, 90, 0.12);
            border: 1px solid rgba(0,0,0,0.03);
        }

        /* Decorative background elements */
        .bg-decoration {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.04;
        }

        .circle-1 {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -200px;
            right: -150px;
        }

        .circle-2 {
            width: 350px;
            height: 350px;
            background: var(--accent);
            bottom: -100px;
            left: -100px;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            background: var(--rose);
            top: 40%;
            left: 10%;
            animation: floatSlow 25s ease-in-out infinite;
        }

        @keyframes floatSlow {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        /* Header section */
        .header {
            position: relative;
            z-index: 1;
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .logo-area {
            margin-bottom: 1rem;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 3vw, 2.2rem);
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 0.05em;
        }

        .logo-divider {
            width: 150px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 1rem auto;
        }

       .logo-img {
            width: 350px; /* ajuste conforme necessário */
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* Main content */
        .main-content {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        /* Left side - Character */
        .character-section {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .character-frame {
            position: relative;
            padding: 2rem;
        }

        .character-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid var(--accent);
            border-radius: 50%;
            opacity: 0.3;
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .character-image {
            width: 100%;
            max-width: 350px;
            height: auto;
            position: relative;
            z-index: 2;
            animation: gentleBounce 5s ease-in-out infinite;
        }

        @keyframes gentleBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Right side - Content */
        .text-section {
            padding: 2rem;
        }

        .section-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .main-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .main-title .highlight {
            color: var(--accent);
            font-style: italic;
        }

        .main-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        /* Stats section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 4rem 0;
            padding: 3rem 2rem;
            background: var(--white);
            box-shadow: 0 10px 40px rgba(27, 75, 90, 0.08);
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem 1rem;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, var(--accent), transparent);
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .stat-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .stat-description {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Message box */
        .message-box {
            background: linear-gradient(135deg, rgba(127, 169, 155, 0.08), rgba(201, 165, 104, 0.08));
            padding: 3rem;
            margin: 4rem auto;
            max-width: 900px;
            border-left: 4px solid var(--accent);
            position: relative;
        }

        .message-box::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 5rem;
            color: var(--accent);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .message-text {
            font-size: 1.1rem;
            line-height: 1.9;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .message-author {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--primary);
            font-style: italic;
            text-align: right;
        }

        /* Progress section */
        .progress-wrapper {
            text-align: center;
            margin: 4rem auto;
            max-width: 600px;
        }

        .progress-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
        }

        .progress-track {
            height: 4px;
            background: rgba(27, 75, 90, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            width: 0;
            animation: loadProgress 3s ease-out forwards;
            position: relative;
        }

        @keyframes loadProgress {
            to { width: 78%; }
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
            animation: shine 2s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .progress-label {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--text-light);
            letter-spacing: 0.1em;
        }

        /* Contact section */
        .contact-section {
            background: var(--white);
            padding: 4rem 2rem;
            margin-top: 5rem;
            text-align: center;
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .contact-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 3rem;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .contact-btn.primary {
            background: var(--primary);
            color: var(--white);
            border: 2px solid var(--primary);
        }

        .contact-btn.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s, height 0.5s;
        }

        .contact-btn.primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .contact-btn.secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(27, 75, 90, 0.25);
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            display: inline-block;
            vertical-align: middle;
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 2rem;
            color: var(--text-light);
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-item::after {
                display: none;
            }

            .message-box {
                padding: 2rem;
            }

            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        /* Entrance animations */
        .fade-up {
            animation: fadeUp 1s ease-out;
        }

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

        .fade-in {
            animation: fadeIn 1.2s ease-out;
        }

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

        .slide-left {
            animation: slideLeft 1s ease-out;
        }

        @keyframes slideLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-right {
            animation: slideRight 1s ease-out;
        }

        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        } 
