
        /* --- VARIÁVEIS E RESET --- */
        :root {
            --cor-primaria: #4B1549; /* Roxo Profundo */
            --cor-secundaria: #9B6A8B; /* Malva/Rosa Antigo */
            --cor-clara: #F4F0E8; /* Creme/Off-white */
            --cor-texto: #2c2c2c;
            --cor-texto-suave: #555;
            
            --fonte-titulo: 'Playfair Display', serif;
            --fonte-corpo: 'Lato', sans-serif;
            
            --transicao-suave: all 0.3s ease;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--fonte-corpo);
            background-color: var(--cor-clara);
            color: var(--cor-texto);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: var(--fonte-titulo);
            font-weight: 700;
        }

        /*p {
            margin-bottom: 1.5rem;
        }*/

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- TIPOGRAFIA UTILITÁRIA --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--cor-primaria);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--cor-secundaria);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--cor-secundaria);
            color: var(--cor-clara);
            border: 2px solid var(--cor-secundaria);
            border-radius: 50px;
            font-family: var(--fonte-titulo);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transicao-suave);
            border: none;
        }

        .btn:hover {
            background-color: var(--cor-primaria);
            color: var(--cor-clara);
        }
        
        .btn:disabled {
            background-color: #ccc;
            border-color: #ccc;
            cursor: not-allowed;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--cor-clara);
            color: var(--cor-clara);
        }

        .btn-outline:hover {
            background-color: var(--cor-clara);
            color: var(--cor-primaria);
        }

        /* --- HEADER / NAVEGAÇÃO --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 10px 0;
            z-index: 1000;
            transition: background-color 0.3s ease, padding 0.3s ease;
        }

        /* Classe adicionada via JS ao rolar */
        header.scrolled {
            background-color: var(--cor-primaria);
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo-text {
            font-family: var(--fonte-titulo);
            font-size: 1.5rem;
            color: var(--cor-clara);
            font-weight: 700;
            z-index: 1002;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links li a {
            color: var(--cor-clara);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transicao-suave);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--cor-secundaria);
            transition: var(--transicao-suave);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Menu Mobile Toggle */
        .menu-toggle {
            display: none;
            color: var(--cor-clara);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* --- HERO SECTION --- */
        #hero {
            height: 85vh;
            background-color: var(--cor-primaria);
            display: flex;
            align-items: center;
            position: relative;
            padding-top: var(--header-height); /* Compensar header fixo se necessário */
        }

        .hero-content {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .hero-left {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0,0,0,0.1);
            border-right: 1px solid rgba(244, 240, 232, 0.1);
        }

        .hero-logo-placeholder {
            width: 350px;
            height: 350px;
            /* background-color removido para focar na imagem */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-logo-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            /* Efeito opcional de drop-shadow para destacar logo sobre fundo escuro */
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
        }

        .hero-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 50px;
        }

        .hero-text-wrapper {
            max-width: 600px;
        }

        .hero-welcome {
            color: var(--cor-secundaria);
            font-family: var(--fonte-corpo);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: block;
        }

        /* Container para alinhar texto e cursor */
        .typewriter-container {
            font-family: var(--fonte-titulo);
            font-size: 3.5rem;
            line-height: 1.2;
            color: var(--cor-clara);
            min-height: 160px;
            display: inline-block;
        }

        #typewriter {
            display: inline; /* Importante para o cursor ficar na frente */
            font-family: inherit;
            font-weight: 700;
        }

        .cursor {
            display: inline-block;
            width: 3px;
            height: 3.5rem; /* Altura ajustada à fonte */
            background-color: var(--cor-secundaria);
            animation: blink 1s infinite;
            vertical-align: sub; /* Ajuste fino de alinhamento */
            margin-left: 5px;
        }

        .hero-cta {
            margin-top: 20px;
			margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease;
        }

        .hero-cta.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- SERVIÇOS SECTION --- */
        #servicos {
            padding: 40px 0;
            background-color: var(--cor-clara);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transicao-suave);
            border-bottom: 3px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid var(--cor-primaria);
        }

        .service-card h3 {
            color: var(--cor-primaria);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .service-subtitle {
            display: block;
            color: var(--cor-secundaria);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .service-card p {
            font-size: 0.95rem;
            color: var(--cor-texto-suave);
            margin-bottom: 0;
        }

        /* --- SOBRE MIM SECTION --- */
        #sobre {
            padding: 40px 0;
            background-color: #ffffff;
        }

        .about-wrapper {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .about-image {
            flex: 1;
            position: relative;
			box-shadow: 10px 15px 0px rgba(46, 26, 71, 0.1);
			border-radius: 5px;
        }

        .about-placeholder-img {
            width: 100%;
            /*height: 500px;*/
            background-color: #eee;
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #999;
            font-family: var(--fonte-titulo);
            overflow: hidden;
        }
        
        .about-placeholder-img img {
             width: 100%;
             height: 100%;
             object-fit: cover;
			 object-position: top center;
             /* display: none; removido para a imagem aparecer */
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: var(--cor-primaria);
            margin-bottom: 30px;
        }

        .about-content p {
            color: var(--cor-texto-suave);
            /*font-size: 1.1rem;*/
        }

        /* --- ESTILIZAÇÃO DO SWIPER (CARROSSEL) --- */
        .carousel-section {
            padding: 40px 0;
        }

        /* Cores de Fundo das Seções */
        #galeria {
            background-color: var(--cor-primaria);
            color: var(--cor-clara);
        }
        #galeria .section-title { color: var(--cor-clara); }
        #galeria .section-title::after { background-color: var(--cor-clara); opacity: 0.5; }

        #livros {
            background-color: var(--cor-clara);
        }
        
        #depoimentos {
            background-color: var(--cor-primaria);
            color: white;
        }
        #depoimentos .section-title { color: var(--cor-clara); }
        #depoimentos .section-title::after { background-color: var(--cor-clara); opacity: 0.5; }

        .card-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 10px;
            overflow: hidden; 
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            height: auto;
        }

        .card-link {
            user-select: none;
            display: block;
            background: #fff;
            padding-top: 10px;
			padding-left: 10px;
			padding-right: 10px;
			padding-bottom: 5px;
            border-radius: 8px;
            text-decoration: none;
            border: 2px solid transparent;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: 0.3s ease;
            width: 100%;
            cursor: pointer;
            position: relative;
        }
        
        /* Estilo específico para Depoimentos */
        .testimonial-card {
            user-select: none;
            display: block;
            background: #fff;
            padding: 30px 20px;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            width: 100%;
            text-align: center;
            color: var(--cor-texto);
            height: 100%;
        }
        
        .testimonial-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 15px;
            border: 3px solid var(--cor-secundaria);
        }
        
        .testimonial-name {
            font-family: var(--fonte-titulo);
            font-size: 1.2rem;
            color: var(--cor-primaria);
            margin-bottom: 5px;
        }
        
        .testimonial-role {
            font-size: 0.8rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            display: block;
        }
        
        .testimonial-quote {
            font-style: italic;
            color: #555;
            position: relative;
            padding: 0 10px;
        }
        
        .quote-icon {
            color: var(--cor-secundaria);
            font-size: 1.5rem;
            margin-bottom: 10px;
            opacity: 0.5;
        }

        .card-link:hover {
            border-color: var(--cor-secundaria);
            transform: translateY(-5px);
        }

        .card-image {
            width: 100%;             
            object-fit: contain;
            border-radius: 4px;
            margin-bottom: 15px;
        }
        
        #galeria .card-image {
            aspect-ratio: 4 / 3;
        }

        .card-badge {
            color: var(--cor-primaria);
            padding: 6px 12px;
            font-weight: 600;
            font-size: 0.8rem;
            background: #f0f0f0;
            width: fit-content;
            border-radius: 50px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .card-title {
            font-size: 1.1rem;
            color: var(--cor-primaria);
            font-weight: 700;
            font-family: var(--fonte-titulo);
            line-height: 1.3;
        }

        .card-button {
            height: 35px;
            width: 35px;
            color: var(--cor-secundaria);
            border-radius: 50%;
            background: none;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--cor-secundaria);
            transition: 0.3s ease;
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 1.2rem;
        }

        .card-link:hover .card-button {
            background: var(--cor-secundaria);
            color: white;
        }

        /* Swiper Controls Customization */
        .swiper-pagination-bullet {
            height: 10px;
            width: 10px;
            opacity: 0.5;
            background: var(--cor-secundaria);
        }
        .swiper-pagination-bullet-active {
            opacity: 1;
            background: var(--cor-primaria);
        }
        
        #galeria .swiper-pagination-bullet, #depoimentos .swiper-pagination-bullet {
            background: #fff;
            opacity: 0.4;
        }
        #galeria .swiper-pagination-bullet-active, #depoimentos .swiper-pagination-bullet-active {
            background: #fff;
            opacity: 1;
        }

        .swiper-slide-button {
            color: var(--cor-secundaria);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.8);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .swiper-slide-button:after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        #galeria .swiper-slide-button, #depoimentos .swiper-slide-button {
            color: var(--cor-primaria);
            background-color: var(--cor-clara);
        }

        /* --- CONTATO SECTION --- */
        #contato {
            padding: 40px 0;
            background-color: #fff;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            color: var(--cor-primaria);
            margin-bottom: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--cor-texto-suave);
        }
        
        .contact-item i {
            color: var(--cor-secundaria);
            font-size: 1.2rem;
            margin-right: 15px;
            width: 20px;
            text-align: center;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: var(--fonte-corpo);
            font-size: 1rem;
            background-color: #f9f9f9;
            transition: var(--transicao-suave);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--cor-secundaria);
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(155, 106, 139, 0.1);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* --- RODAPÉ --- */
        footer {
            background-color: #2c2c2c; /* Cinza escuro */
            color: #fff;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }
        
        .footer-logo {
            font-family: var(--fonte-titulo);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .footer-col h4 {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: #aaa;
            transition: 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--cor-secundaria);
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            transition: 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--cor-secundaria);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }

        /* --- LIGHTBOX --- */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 4px;
            box-shadow: 0 0 20px rgba(255,255,255,0.1);
        }

        .lightbox-caption {
            color: white;
            margin-top: 15px;
            font-family: var(--fonte-titulo);
            font-size: 1.2rem;
            text-align: center;
        }

        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            line-height: 1;
        }
		
		.lightbox-prev, .lightbox-next {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			font-size: 40px;
			color: white;
			cursor: pointer;
			padding: 15px;
			user-select: none;
			transition: color 0.3s;
			z-index: 1001;
		}

		.lightbox-prev:hover, .lightbox-next:hover {
			color: #9B6A8B; /* Cor malva do seu projeto */
		}

		.lightbox-prev { left: 20px; }
		.lightbox-next { right: 20px; }

		/* Oculta as setas no celular para o usuário focar apenas no deslize do dedo */
		@media (max-width: 768px) {
			.lightbox-prev, .lightbox-next {
				display: none; 
			}
		}

        /* --- RESPONSIVIDADE --- */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        @media (max-width: 768px) {
            /* Navegação Mobile */
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--cor-primaria);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                transform: translateY(-150%);
                opacity: 0;
                transition: all 0.4s ease;
                z-index: 1001;
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }

            /* Hero Responsivo */
            .hero-content {
                flex-direction: column;
            }

            .hero-left {
                height: 40%;
                border-right: none;
                border-bottom: 1px solid rgba(244, 240, 232, 0.1);
            }

            .hero-right {
                height: 60%;
                padding: 30px;
                text-align: center;
                align-items: center;
            }

            .hero-logo-placeholder {
                width: 120px;
                height: 200px;
            }

            .typewriter-container {
                font-size: 2rem;
                min-height: 100px;
            }
            
            .cursor {
                height: 2rem;
            }

            .about-wrapper {
                flex-direction: column;
            }
            
            .card-wrapper {
                margin: 0 10px 25px;
            }

            .swiper-slide-button {
                display: none;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
        }

