
        :root {
            /* Paleta de cores principal */
            --rosa-queimado: #A56A73;
            --rosa-antigo: #B57379;
            --rosa-blush: #C98E94;
            --rosa-claro: #E6C1C6;
            --branco-rosado: #F6F2F2;
            
            /* Cores de suporte */
            --cinza-escuro: #333333;
            --cinza-medio: #666666;
            --cinza-claro: #999999;
            --sombra-suave: rgba(165, 106, 115, 0.1);
            --sombra-media: rgba(165, 106, 115, 0.2);
            --sombra-forte: rgba(165, 106, 115, 0.3);
            
            /* Cores do relógio */
            --bg-color: #e5d3c0;
            --text-color: #4a3f35;
            --accent-color: #8d7765;
            --hand-shadow: rgba(0, 0, 0, 0.1);
        }

        /* Reset e estilos base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--cinza-escuro);
            background-color: var(--branco-rosado);
            overflow-x: hidden;
        }

        /* NAVBAR */
        nav {
            background-color: rgba(246, 242, 242, 0.95);
            box-shadow: 0 2px 20px var(--sombra-suave);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background-color: rgba(246, 242, 242, 0.98);
            box-shadow: 0 5px 25px rgba(165, 106, 115, 0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-img {
            width: 170px;
            height: 170px;
            object-fit: contain;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .logo-img:hover {
            transform: scale(1.05);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-signature {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            font-weight: 700;
            color: var(--rosa-queimado);
            line-height: 1;
            white-space: nowrap;
        }

        .crp-mini {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.8rem;
            color: var(--rosa-antigo);
            margin-top: 3px;
            font-weight: 500;
        }

        /* Menu Desktop */
        .menu {
            display: flex;
            gap: 2rem;
            align-items: center;
            margin-left: 20px;
            margin-right: 2rem;
        }

        .menu a {
            text-decoration: none;
            color: var(--cinza-escuro);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .menu a:hover {
            color: var(--rosa-queimado);
        }

        .menu a.active {
            color: var(--rosa-queimado);
            font-weight: 600;
        }

        .menu a.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--rosa-queimado);
            transform: scaleX(1);
        }

        .menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--rosa-queimado);
            transition: width 0.3s ease;
        }

        .menu a:hover::after {
            width: 100%;
        }

        /* Botão Agendar */
        .btn-agendar {
            background: linear-gradient(135deg, var(--rosa-queimado), var(--rosa-antigo));
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--sombra-media);
            border: none;
            cursor: pointer;
            display: inline-block;
            font-size: 0.95rem;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .btn-agendar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .btn-agendar:hover::before {
            left: 100%;
        }

        .btn-agendar:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--sombra-forte);
        }

        /* Menu Mobile */
        .nav-cta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--rosa-queimado);
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .menu-toggle:hover {
            background-color: var(--rosa-claro);
        }

        /* Overlay quando menu aberto */
        .menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            backdrop-filter: blur(3px);
        }

        .menu-overlay.active {
            display: block;
        }

        /* Hero Section */
        .heropage {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 4rem;
        }

        .hero-content {
            flex: 1;
            animation: fadeInUp 1s ease-out;
        }

        .badge {
            display: inline-block;
            background-color: var(--rosa-claro);
            color: var(--rosa-queimado);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: fadeIn 1s ease-out 0.2s both;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--cinza-escuro);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--cinza-medio);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-headlines-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn-3 {
            background: linear-gradient(135deg, var(--rosa-queimado), var(--rosa-antigo));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px var(--sombra-media);
        }

        .btn-3:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--sombra-forte);
        }

        .btn-transparent {
            background: transparent;
            border: 2px solid var(--rosa-queimado);
            color: var(--rosa-queimado);
        }

        .btn-transparent:hover {
            background: var(--rosa-queimado);
            color: white;
        }

        .hero-image-container {
            flex: 1;
            animation: fadeInRight 1s ease-out;
        }

        .hero-main-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px var(--sombra-suave);
            transition: transform 0.3s ease;
        }

        .hero-main-img:hover {
            transform: scale(1.02);
        }

        /* SEÇÃO CÉREBRO INTERATIVO SIMPLIFICADO */
        .brain-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #F9F0F2 0%, #FFFFFF 100%);
            text-align: center;
            margin: 2rem auto;
            border-radius: 24px;
            max-width: 1200px;
            position: relative;
            overflow: hidden;
        }

        .brain-title {
            font-size: 2.5rem;
            color: var(--cinza-escuro);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .brain-subtitle {
            color: var(--cinza-medio);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .brain-container-simple {
            position: relative;
            margin: 40px auto;
            max-width: 800px;
        }

        .brain-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brain-illustration {
            position: absolute;
            width: 300px;
            height: 240px;
            z-index: 1;
            animation: float 6s ease-in-out infinite;
        }

        .brain-illustration svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 8px 20px rgba(165, 106, 115, 0.15));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        /* Bolhas de pensamento minimalistas */
        .thought-bubble {
            position: absolute;
            z-index: 2;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .bubble-content {
            background: white;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--cinza-escuro);
            box-shadow: 0 4px 15px rgba(165, 106, 115, 0.1);
            border: 1.5px solid #F0D4D8;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bubble-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(229, 196, 204, 0.1), rgba(165, 106, 115, 0.05));
            z-index: -1;
        }

        .thought-bubble:hover .bubble-content {
            transform: scale(1.08);
            box-shadow: 0 8px 25px rgba(165, 106, 115, 0.2);
            border-color: var(--rosa-queimado);
            color: var(--rosa-queimado);
        }

        .thought-bubble.transformed .bubble-content {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border-color: #4CAF50;
            box-shadow: 0 8px 25px rgba(76, 175, 80, 0.25);
        }

        /* Posicionamento das bolhas */
        .pos-1 { top: 10%; left: 50%; transform: translateX(-50%); }
        .pos-2 { top: 25%; left: 15%; }
        .pos-3 { top: 25%; right: 15%; }
        .pos-4 { bottom: 25%; left: 15%; }
        .pos-5 { bottom: 25%; right: 15%; }
        .pos-6 { bottom: 10%; left: 50%; transform: translateX(-50%); }

        /* Indicador de progresso */
        .progress-indicator {
            max-width: 500px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #F0D4D8;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--rosa-queimado), var(--rosa-antigo));
            width: 0%;
            transition: width 0.6s ease;
            border-radius: 4px;
        }

        .progress-text {
            font-size: 0.95rem;
            color: var(--cinza-medio);
            display: flex;
            justify-content: space-between;
        }

        .progress-text span:first-child {
            color: var(--rosa-queimado);
            font-weight: 600;
        }

        /* Feedback */
        .brain-feedback {
            margin: 30px auto;
            padding: 20px;
            max-width: 600px;
            min-height: 60px;
            background: white;
            border-radius: 16px;
            font-size: 1rem;
            color: var(--cinza-escuro);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(165, 106, 115, 0.08);
            border: 1px solid #F0D4D8;
        }

        .brain-feedback.positive {
            background: #e8f5e9;
            border-color: #4CAF50;
            color: #2e7d32;
            animation: pulseSuccess 2s ease;
        }

        @keyframes pulseSuccess {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        /* Controles */
        .brain-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .btn-brain {
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-reset {
            background: white;
            color: var(--rosa-queimado);
            border: 2px solid #F0D4D8;
        }

        .btn-reset:hover {
            background: #F9F0F2;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(165, 106, 115, 0.15);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, var(--rosa-queimado), var(--rosa-antigo));
            color: white;
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(165, 106, 115, 0.25);
        }

        /* Seção Sobre */
        .sobre {
            display: flex;
            align-items: center;
            gap: 4rem;
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .img-sobre {
            width: 50%;
            border-radius: 20px;
            box-shadow: 0 20px 40px var(--sombra-suave);
        }

        .sobre-headlines h6 {
            color: var(--rosa-queimado);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .sobre-headlines h1 {
            font-size: 2.5rem;
            color: var(--cinza-escuro);
            margin-bottom: 1.5rem;
        }

        .sobre-headlines p {
            color: var(--cinza-medio);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .sobre-info {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin: 2rem 0;
        }

        .sobre-info-item h5 {
            font-size: 1.8rem;
            color: var(--rosa-queimado);
        }

        .sobre-info-item h6 {
            color: var(--cinza-medio);
            text-transform: none;
            letter-spacing: normal;
        }

        .sobre-info-divider {
            height: 40px;
            width: 1px;
            background-color: var(--rosa-claro);
        }

        .insta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--rosa-queimado);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .insta-link:hover {
            color: var(--rosa-antigo);
        }

        /* Seção Serviços */
        .pets {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .pets-headlines {
            margin-bottom: 3rem;
        }

        .pets-headlines i {
            font-size: 3rem;
            color: var(--rosa-queimado);
            margin-bottom: 1rem;
        }

        .pets-headlines h1 {
            font-size: 2.5rem;
            color: var(--cinza-escuro);
            margin-bottom: 1rem;
        }

        .pets-headlines p {
            color: var(--cinza-medio);
            max-width: 600px;
            margin: 0 auto;
        }

        .pets-collection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .flip-card {
            perspective: 1000px;
            height: 300px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--sombra-suave);
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .flip-card-front {
            background-color: white;
            color: var(--cinza-escuro);
        }

        .flip-card-back {
            background: linear-gradient(135deg, var(--rosa-queimado), var(--rosa-antigo));
            color: white;
            transform: rotateY(180deg);
        }

        .icon-front {
            font-size: 3rem;
            color: var(--rosa-queimado);
            margin-bottom: 1rem;
        }

        .see-more {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--rosa-queimado);
            font-weight: 600;
            margin-top: 1rem;
            transition: gap 0.3s ease;
        }

        .flip-card:hover .see-more {
            gap: 1rem;
        }

        .flip-card-back h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .flip-card-back p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .btn-card {
            padding: 0.8rem 2rem;
            background-color: white;
            color: var(--rosa-queimado);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        /* Seção Locais */
        .processo {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .processo-headlines h1 {
            font-size: 2.5rem;
            color: var(--cinza-escuro);
            margin-bottom: 1rem;
        }

        .processo-headlines p {
            color: var(--cinza-medio);
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .rifas-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .rifa-card {
            background-color: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--sombra-suave);
            transition: transform 0.3s ease;
        }

        .rifa-card:hover {
            transform: translateY(-5px);
        }

        .rifa-card i {
            font-size: 2.5rem;
            color: var(--rosa-queimado);
            margin-bottom: 1rem;
        }

        .rifa-card h4 {
            font-size: 1.5rem;
            color: var(--cinza-escuro);
            margin-bottom: 1rem;
        }

        .rifa-card p {
            color: var(--cinza-medio);
            line-height: 1.6;
        }

        /* SEÇÃO DO RELÓGIO ESTÁTICO */
        .relogio-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            gap: 38px;
            margin: 0 auto;
            text-align: center;
        }

        .relogio-headlines h1 {
            font-size: 2.5rem;
            color: var(--cinza-escuro);
            margin-bottom: 1rem;
        }

        .relogio-headlines p {
            color: var(--cinza-medio);
            max-width: 600px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        .clock-container {
            position: relative;
            width: 380px;
            height: 380px;
            margin: 0 auto;
            border: 1px solid rgba(74, 63, 53, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--bg-color);
        }

        /* Centro do Relógio */
        .clock-hand-center {
            width: 10px;
            height: 10px;
            background: var(--text-color);
            border-radius: 50%;
            z-index: 10;
        }

        /* Ponteiros Fixos */
        .hand {
            position: absolute;
            background: var(--text-color);
            transform-origin: bottom center;
            bottom: 50%;
            left: 50%;
            border-radius: 4px 4px 0 0;
        }

        .hour-hand { 
            width: 4px; 
            height: 80px; 
            transform: translateX(-50%) rotate(320deg);
            clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
            z-index: 8;
        }

        .minute-hand { 
            width: 2px; 
            height: 120px; 
            transform: translateX(-50%) rotate(40deg);
            clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
            z-index: 7;
        }

        /* Frases Estáticas */
        .reason-tag {
            position: absolute;
            font-size: 0.9rem;
            width: 170px;
            line-height: 1.4;
            opacity: 0.9;
            color: var(--text-color);
            font-weight: 500;
        }

        /* Posicionamento radial fixo */
        .r-12 { top: -70px; left: 50%; transform: translateX(-50%); }
        .r-1-5 { top: 20px; right: -160px; text-align: left; }
        .r-3 { top: 50%; right: -190px; transform: translateY(-50%); text-align: left; }
        .r-4-5 { bottom: 20px; right: -160px; text-align: left; }
        .r-6 { bottom: -70px; left: 50%; transform: translateX(-50%); }
        .r-7-5 { bottom: 20px; left: -160px; text-align: right; }
        .r-9 { top: 50%; left: -190px; transform: translateY(-50%); text-align: right; }
        .r-10-5 { top: 20px; left: -160px; text-align: right; }

        .marker {
            position: absolute;
            width: 1px;
            height: 15px;
            background: rgba(74, 63, 53, 0.4);
        }

        /* Seção Depoimentos */
        .testimunhas {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimunhas h6 {
            color: var(--rosa-queimado);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 1rem;
        }

        .testimunhas h1 {
            font-size: 2.5rem;
            color: var(--cinza-escuro);
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimunhas-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimunhas-item {
            background-color: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--sombra-suave);
        }

        .testimunhas-pessoa {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .testimunhas-nome {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .avatar-placeholder {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--rosa-queimado), var(--rosa-antigo));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .testimunhas-nome-item h4 {
            color: var(--cinza-escuro);
            margin-bottom: 0.2rem;
        }

        .testimunhas-nome-item p {
            color: var(--cinza-claro);
            font-size: 0.9rem;
        }

        .testimunhas-pessoa i {
            color: var(--rosa-claro);
            font-size: 1.5rem;
        }

        .testimunhas-text {
            color: var(--cinza-medio);
            line-height: 1.8;
            font-style: italic;
        }

        /* Rodapé */
        footer {
            background-color: var(--cinza-escuro);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-brand h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .accent {
            color: var(--rosa-claro);
        }

        .footer-brand p {
            color: #cccccc;
            margin-bottom: 1.5rem;
        }

        .social {
            display: flex;
            gap: 1rem;
        }

        .social a {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social a:hover {
            background-color: var(--rosa-queimado);
            transform: translateY(-3px);
        }

        .footer-contato-info h2,
        .footer-links h2 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .contato-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #cccccc;
        }

        .contato-info-item i {
            color: var(--rosa-claro);
            width: 20px;
        }

        .links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .links a:hover {
            color: var(--rosa-claro);
        }

        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999999;
            font-size: 0.9rem;
        }

        /* WhatsApp Flutuante */
        .floating-whatsapp {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        }

        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsividade */
        @media (max-width: 768px) {
            /* NAVBAR MOBILE */
            .nav-container {
                padding: 0.8rem 1.5rem;
            }

            .menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 85%;
                max-width: 400px;
                height: 100vh;
                background: var(--branco-rosado);
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 100px;
                gap: 0;
                margin: 0;
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 10px 0 30px var(--sombra-forte);
                z-index: 999;
                overflow-y: auto;
            }

            .menu.active {
                left: 0;
            }

            .menu a {
                width: 100%;
                padding: 1.2rem 2rem;
                border-bottom: 1px solid var(--rosa-claro);
                font-size: 1.1rem;
                display: flex;
                align-items: center;
                gap: 1rem;
            }

            .menu a::before {
                content: '•';
                color: var(--rosa-queimado);
                font-size: 1.5rem;
            }

            .menu a:hover {
                background-color: var(--rosa-claro);
                color: var(--rosa-queimado);
            }

            .menu a:hover::after {
                display: none;
            }

            .menu-toggle {
                display: flex;
                order: 2;
            }

            .nav-cta {
                gap: 1rem;
            }

            .btn-agendar {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }

            /* Logo mobile */
            .logo-img {
                width: 60px;
                height: 60px;
            }
            
            .brand-signature {
                font-size: 1.5rem;
            }
            
            .crp-mini {
                font-size: 0.65rem;
            }

            /* Hero Mobile */
            .heropage {
                flex-direction: column;
                text-align: center;
                padding-top: 6rem;
                gap: 2rem;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-headlines-buttons {
                justify-content: center;
            }

            /* Cérebro Interativo Mobile */
            .brain-visual {
                height: 320px;
            }
            
            .brain-illustration {
                width: 240px;
                height: 190px;
            }
            
            .bubble-content {
                padding: 10px 16px;
                font-size: 0.8rem;
            }
            
            .brain-title {
                font-size: 2rem;
            }
            
            .brain-subtitle {
                font-size: 1rem;
            }
            
            .pos-2 { left: 5%; }
            .pos-3 { right: 5%; }
            .pos-4 { left: 5%; }
            .pos-5 { right: 5%; }
            
            .btn-brain {
                padding: 10px 20px;
                font-size: 0.9rem;
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .brain-controls {
                flex-direction: column;
                align-items: center;
            }

            /* Sobre Mobile */
            .sobre {
                flex-direction: column;
                text-align: center;
            }
            
            .img-sobre {
                width: 100%;
                max-width: 400px;
            }
            
            .sobre-info {
                justify-content: center;
            }

            /* Relógio Mobile */
            .clock-container { 
                width: 300px; 
                height: 300px; 
            }
            .hour-hand { 
                height: 60px; 
            }
            .minute-hand { 
                height: 90px; 
            }
            .reason-tag { 
                width: 140px; 
                font-size: 0.8rem; 
            }
            .r-1-5 { right: -120px; }
            .r-3 { right: -140px; }
            .r-4-5 { right: -120px; }
            .r-7-5 { left: -120px; }
            .r-9 { left: -140px; }
            .r-10-5 { left: -120px; }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0.7rem 1rem;
            }

            .brand-signature {
                font-size: 1.3rem;
            }

            .logo-img {
                width: 50px;
                height: 50px;
            }

            .btn-agendar {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .menu {
                width: 90%;
            }

            .menu a {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }

            /* Hero */
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .btn-3 {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            /* Cérebro Interativo Mobile Pequeno */
            .brain-visual {
                height: 280px;
            }
            
            .brain-illustration {
                width: 200px;
                height: 160px;
            }
            
            .bubble-content {
                padding: 8px 14px;
                font-size: 0.75rem;
            }

            /* Relógio */
            .clock-container { 
                width: 250px; 
                height: 250px; 
            }
            .hour-hand { 
                height: 50px; 
            }
            .minute-hand { 
                height: 70px; 
            }
            .reason-tag { 
                width: 120px; 
                font-size: 0.7rem; 
            }
            .r-1-5 { right: -100px; }
            .r-3 { right: -110px; }
            .r-4-5 { right: -100px; }
            .r-7-5 { left: -100px; }
            .r-9 { left: -110px; }
            .r-10-5 { left: -100px; }
            .relogio-headlines h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 360px) {
            .brand-signature {
                font-size: 1.1rem;
            }
            
            .crp-mini {
                font-size: 0.6rem;
            }
            
            .btn-agendar {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            .clock-container { 
                width: 220px; 
                height: 220px; 
            }
            .reason-tag { 
                width: 100px; 
                font-size: 0.65rem; 
            }
            .r-1-5 { right: -80px; }
            .r-3 { right: -90px; }
            .r-4-5 { right: -80px; }
            .r-7-5 { left: -80px; }
            .r-9 { left: -90px; }
            .r-10-5 { left: -80px; }
        }
