:root {
            --azul-pastel-claro: #d4e4f7;
            --azul-pastel: #a8c9e8;
            --azul-medio: #7ba7d4;
            --azul-profundo: #5a8dba;
            --creme: #fdfcf8;
            --cinza-suave: #4a5668;
            --branco-suave: #f9f9fc;
        }

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

        body {
            font-family: 'Crimson Pro', serif;
            background: var(--creme);
            color: var(--cinza-suave);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, var(--azul-pastel-claro) 0%, var(--azul-pastel) 100%);
            padding: 1.2rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(168, 201, 232, 0.15);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--azul-profundo);
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--cinza-suave);
            font-weight: 400;
            font-size: 1.05rem;
            transition: color 0.3s ease, transform 0.3s ease;
            position: relative;
        }

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

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

        .nav-links a:hover {
            color: var(--azul-profundo);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 85vh;
            background: linear-gradient(165deg, var(--azul-pastel-claro) 0%, var(--branco-suave) 50%, var(--creme) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--azul-pastel) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            opacity: 0.3;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--azul-medio) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            opacity: 0.2;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, 30px) scale(1.1); }
        }

        .hero-content {
            max-width: 1000px;
            text-align: center;
            z-index: 1;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

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

        .hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 400;
            color: var(--azul-profundo);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.4rem;
            color: var(--cinza-suave);
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--azul-medio);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(123, 167, 212, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            background: var(--azul-profundo);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(123, 167, 212, 0.4);
        }

        /* Seções */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            font-weight: 500;
            color: var(--azul-profundo);
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--azul-pastel);
        }

        /* Sobre */
        .sobre-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .sobre-text h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            color: var(--azul-profundo);
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .sobre-text p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .sobre-image {
            width: 100%;
            height: 500px;
            background: url('https://www.pexels.com/photo/close-up-of-hand-over-white-background-255527/');
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(168, 201, 232, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            color: var(--azul-profundo);
            position: relative;
            overflow: hidden;
        }

        .sobre-image::before {
         
            content: "";
            position: absolute;
            inset: 0;
            background-image: url("https://media.licdn.com/dms/image/v2/D4D03AQF9PS9ex8msOA/profile-displayphoto-crop_800_800/B4DZsyg1AwKcAI-/0/1766079028972?e=1771459200&v=beta&t=FVb2tyC-lv2kpptmT_gFK2y2w4qjR9tvhSnNwKtJt3I");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;

        }

        /* Serviços */
        #servicos {
            background: var(--branco-suave);
        }

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

        .servico-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(168, 201, 232, 0.15);
            transition: all 0.4s ease;
            border-top: 4px solid var(--azul-pastel);
        }

        .servico-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(168, 201, 232, 0.25);
            border-top-color: var(--azul-medio);
        }

        .servico-icon {
            font-size: 3rem;
            color: var(--azul-medio);
            margin-bottom: 1.5rem;
        }

        .servico-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--azul-profundo);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .servico-card p {
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* Abordagens */
        .abordagens-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .abordagem-item {
            background: linear-gradient(135deg, var(--azul-pastel-claro) 0%, white 100%);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .abordagem-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 50px rgba(168, 201, 232, 0.2);
        }

        .abordagem-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: var(--azul-profundo);
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        /* Contato */
        #contato {
            background: linear-gradient(135deg, var(--azul-pastel-claro) 0%, var(--branco-suave) 100%);
        }

        .contato-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contato-info {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(168, 201, 232, 0.2);
        }

        .contato-item {
            margin-bottom: 2rem;
            display: flex;
            align-items: start;
            gap: 1.5rem;
        }

        .contato-icon {
            font-size: 1.8rem;
            color: var(--azul-medio);
            min-width: 40px;
        }

        .contato-item h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: var(--azul-profundo);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .contato-item p {
            font-size: 1.1rem;
        }

        .form-contato {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(168, 201, 232, 0.2);
        }

        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.7rem;
            font-size: 1.1rem;
            color: var(--cinza-suave);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--azul-pastel-claro);
            border-radius: 10px;
            font-family: 'Crimson Pro', serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--creme);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--azul-medio);
            background: white;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 1.2rem;
            background: var(--azul-medio);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Crimson Pro', serif;
        }

        .submit-button:hover {
            background: var(--azul-profundo);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(123, 167, 212, 0.3);
        }

        /* Footer */
        footer {
            background: var(--azul-profundo);
            color: white;
            text-align: center;
            padding: 2.5rem 2rem;
            margin-top: 4rem;
        }

        footer p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Menu Mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--azul-profundo);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

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

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

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

        /* Responsive */
        @media (max-width: 968px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                max-width: 300px;
                background: linear-gradient(135deg, var(--azul-pastel-claro) 0%, var(--branco-suave) 100%);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2.5rem;
                transition: right 0.4s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
                padding: 2rem;
            }

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

            .nav-links a {
                font-size: 1.3rem;
                width: 100%;
                text-align: center;
                padding: 1rem;
            }

            header {
                padding: 1rem 1.5rem;
            }

            .logo {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 70vh;
                padding: 2rem 1rem;
                margin-top: 70px;
            }

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

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }

            .cta-button {
                padding: 0.9rem 2.5rem;
                font-size: 1rem;
            }

            .hero::before,
            .hero::after {
                width: 300px;
                height: 300px;
            }

            .sobre-content,
            .contato-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .sobre-image {
                height: 300px;
                font-size: 2rem;
            }

            .sobre-image::before {
                font-size: 8rem;
            }

            .section {
                padding: 3rem 1.5rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2.5rem;
            }

            .servicos-grid,
            .abordagens-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .servico-card {
                padding: 2rem 1.5rem;
            }

            .servico-card h3 {
                font-size: 1.5rem;
            }

            .contato-info,
            .form-contato {
                padding: 2rem 1.5rem;
            }

            .contato-item {
                margin-bottom: 1.5rem;
                gap: 1rem;
            }

            .contato-icon {
                font-size: 1.5rem;
                min-width: 30px;
            }

            footer {
                padding: 2rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

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

            .cta-button {
                padding: 0.8rem 2rem;
                font-size: 0.95rem;
            }

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

            .sobre-text h3 {
                font-size: 1.5rem;
            }

            .sobre-text p {
                font-size: 1rem;
            }

            .servico-icon {
                font-size: 2.5rem;
            }

            .servico-card h3 {
                font-size: 1.3rem;
            }

            .servico-card p {
                font-size: 0.95rem;
            }

            .abordagem-item h4 {
                font-size: 1.2rem;
            }

            .abordagem-item p {
                font-size: 0.9rem;
            }

            .contato-item h4 {
                font-size: 1.2rem;
            }

            .contato-item p {
                font-size: 0.95rem;
            }

            .form-group label {
                font-size: 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.8rem;
                font-size: 0.95rem;
            }
        }

        /* Animação de scroll suave */
        html {
            scroll-behavior: smooth;
        }

        /* Animação de entrada para elementos */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
        }