﻿        :root {
            --ambyos-dark: #000000;
            --ambyos-yellow: #FFD700;
            --ambyos-yellow-hover: #FFED4E;
            --ambyos-gray: #333333;
            --ambyos-light-gray: #666666;
            --ambyos-white: #FFFFFF;
            --ambyos-transparent: rgba(0, 0, 0, 0.8);
            --ambyos-glass: rgba(255, 255, 255, 0.1);
            --ambyos-glass-hover: rgba(255, 255, 255, 0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--ambyos-dark);
            color: var(--ambyos-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Smooth transitions for all elements */
        * {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Section Numbers */
        .section-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 2px solid var(--ambyos-yellow);
        }
        
        /* Navigation */
        .navbar {
            background: var(--ambyos-transparent) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--ambyos-glass);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            color: var(--ambyos-yellow) !important;
            font-weight: 700;
            font-size: 0; /* Força a remoção de qualquer texto residual */
            padding: 0;
        }

        .navbar-brand img {
            height: 60px;
            width: auto;
            animation: pulse-logo 0.7s ease-in-out 1s 3;
        }
        
        .navbar-nav .nav-link {
            color: var(--ambyos-white) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--ambyos-glass);
            color: var(--ambyos-yellow) !important;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 80vh;
            background: linear-gradient(135deg, var(--ambyos-dark) 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-slider {
            width: 100%;
            height: 80vh;
        }
        
        .swiper-slide {
            position: relative;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
            backdrop-filter: blur(5px);
        }
        
        .slide-content {
            text-align: center;
            color: var(--ambyos-white);
            z-index: 2;
            position: relative;
            padding: 2rem;
        }
        
        .slide-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--ambyos-white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5);
        }
        
        .slide-subtitle {
            font-size: 1.2rem;
            color: var(--ambyos-yellow);
            margin-bottom: 1rem;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .slide-description {
            font-size: 1rem;
            color: #FFFFFF;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, var(--ambyos-yellow) 0%, #FFED4E 100%);
            border: none;
            color: var(--ambyos-dark);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #FFED4E 0%, var(--ambyos-yellow) 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
            color: var(--ambyos-dark);
        }
        
        /* About Section */
        .about-section {
            background: var(--ambyos-dark);
            padding: 5rem 0;
            position: relative;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .section-title {
            color: var(--ambyos-yellow);
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .about-content p {
            color: var(--ambyos-white);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        
        .about-content strong {
            color: var(--ambyos-yellow);
            font-weight: 600;
        }
        
        /* FAQ Styles */
        .faq-container {
            background: var(--ambyos-glass);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--ambyos-glass);
            backdrop-filter: blur(20px);
        }
        
        .faq-container h3 {
            color: var(--ambyos-yellow);
            font-weight: 600;
        }
        
        .accordion-item {
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .accordion-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
            border-color: var(--ambyos-yellow);
        }
        
        .accordion-button {
            background: var(--ambyos-glass);
            color: var(--ambyos-white);
            border: none;
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            backdrop-filter: blur(10px);
        }
        
        .accordion-button:hover {
            background: var(--ambyos-glass-hover);
            color: var(--ambyos-yellow);
            transform: scale(1.02);
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
        }
        
        .accordion-body {
            background: var(--ambyos-glass);
            padding: 1.5rem;
            border-top: 1px solid var(--ambyos-glass);
            color: var(--ambyos-white);
        }
        
        .accordion-body ul {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
        }
        
        .accordion-body li {
            margin-bottom: 0.5rem;
            color: var(--ambyos-white);
        }
        
        .accordion-body p {
            margin-bottom: 0.75rem;
            color: var(--ambyos-white);
        }
        
        .accordion-body strong {
            color: var(--ambyos-yellow);
            font-weight: 600;
        }
        
        /* Service Cards Styles */
        .service-card {
            position: relative;
            width: 100%;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: float 6s ease-in-out infinite;
        }

        .service-card:nth-child(2) {
            animation-delay: 0.5s;
        }

        .service-card:nth-child(3) {
            animation-delay: 1s;
        }

        .service-card:nth-child(4) {
            animation-delay: 1.5s;
        }

        .service-card:nth-child(5) {
            animation-delay: 2s;
        }

        .service-card:nth-child(6) {
            animation-delay: 2.5s;
        }

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

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
            animation: none;
        }

        .service-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--ambyos-yellow) 0%, #FFED4E 50%, #FFD700 100%);
            color: var(--ambyos-dark);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
            opacity: 0;
            transform: scale(0.8) rotateY(90deg);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 20px;
            box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.3);
        }

        .service-card:hover .service-overlay {
            opacity: 1;
            transform: scale(1) rotateY(0deg);
        }

        .service-card:hover .service-image {
            transform: scale(1.2) rotate(5deg);
            filter: blur(4px) brightness(0.7);
        }

        .service-overlay h4 {
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            color: var(--ambyos-dark);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.1s;
        }

        .service-overlay p {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--ambyos-dark);
            margin: 0;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease 0.2s;
            font-weight: 500;
        }

        .service-card:hover .service-overlay h4,
        .service-card:hover .service-overlay p {
            transform: translateY(0);
            opacity: 1;
        }

        /* Efeito de brilho */
        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            z-index: 1;
            opacity: 0;
        }

        .service-card:hover::before {
            opacity: 1;
            animation: shine 1.5s ease;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            50% {
                transform: translateX(0%) translateY(0%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        /* Efeito de partículas */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::after {
            opacity: 1;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes pulse-logo {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.1);
            }
        }

        /* Responsive Service Cards */
        @media (max-width: 768px) {
            .service-card {
                height: 300px;
            }
            
            .service-overlay {
                padding: 1.5rem;
            }
            
            .service-overlay h4 {
                font-size: 1.4rem;
            }
            
            .service-overlay p {
                font-size: 0.95rem;
            }
        }
        
        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--ambyos-dark) 0%, #1a1a1a 100%);
            padding: 4rem 0;
            position: relative;
        }
        
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--ambyos-glass);
            border-radius: 20px;
            border: 1px solid var(--ambyos-glass);
            backdrop-filter: blur(20px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .stat-item:hover::before {
            left: 100%;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
            border-color: var(--ambyos-yellow);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--ambyos-yellow);
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .stat-number.animate {
            animation: numberPulse 0.5s ease-in-out;
        }
        
        @keyframes numberPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .stat-label {
            color: var(--ambyos-white);
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--ambyos-dark);
            padding: 5rem 0;
            position: relative;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .contact-info {
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(20px);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
            padding: 1rem;
            background: var(--ambyos-glass);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--ambyos-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--ambyos-dark);
            font-size: 1.2rem;
        }
        
        .contact-item h6 {
            color: var(--ambyos-yellow);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p {
            color: var(--ambyos-white);
            margin: 0;
        }
        
        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--ambyos-yellow);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .social-links a:hover {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        }
        
        /* Form Styles */
        .card {
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            border-radius: 20px;
            backdrop-filter: blur(20px);
        }
        
        .card-title {
            color: var(--ambyos-yellow);
            font-weight: 600;
        }
        
        .form-label {
            color: var(--ambyos-white);
            font-weight: 500;
        }
        
        .form-control, .form-select {
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            color: var(--ambyos-white);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .form-control:hover, .form-select:hover {
            background: var(--ambyos-glass-hover);
            border-color: var(--ambyos-yellow);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }
        
        .form-control:focus, .form-select:focus {
            background: var(--ambyos-dark);
            border-color: var(--ambyos-yellow);
            color: var(--ambyos-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
            outline: none;
        }
        
        .form-control::placeholder {
            color: #999;
        }
        
        /* Select dropdown specific styling */
        .form-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFD700' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 16px 12px;
            cursor: pointer;
        }
        
        .form-select:hover {
            background-color: var(--ambyos-glass-hover);
            border-color: var(--ambyos-yellow);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }
        
        .form-select:focus {
            background-color: var(--ambyos-dark);
            border-color: var(--ambyos-yellow);
            color: var(--ambyos-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
            outline: none;
        }
        
        /* Dropdown options styling */
        .form-select option {
            background: var(--ambyos-dark);
            color: var(--ambyos-yellow);
            padding: 0.75rem;
            border: none;
        }
        
        .form-select option:hover {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
        }
        
        .form-select option:checked {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
        }
        
        /* Input fields enhanced styling */
        .form-control:hover {
            background: var(--ambyos-glass-hover);
            border-color: var(--ambyos-yellow);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        .form-control:focus {
            background: var(--ambyos-dark);
            border-color: var(--ambyos-yellow);
            color: var(--ambyos-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
            outline: none;
        }
        
        /* Textarea specific styling */
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        textarea.form-control:hover {
            background: var(--ambyos-glass-hover);
            border-color: var(--ambyos-yellow);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
            transform: translateY(-2px);
        }

        textarea.form-control:focus {
            background: var(--ambyos-dark);
            border-color: var(--ambyos-yellow);
            color: var(--ambyos-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
            outline: none;
        }
        
        /* Button hover effect */
        .btn-primary:hover {
            background: linear-gradient(135deg, #FFED4E 0%, var(--ambyos-yellow) 100%);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
            color: var(--ambyos-dark);
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--ambyos-dark) 0%, #1a1a1a 100%);
            padding: 3rem 0 1rem;
            border-top: 1px solid var(--ambyos-glass);
        }
        
        .footer h5 {
            color: var(--ambyos-yellow);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .footer p {
            color: var(--ambyos-white);
        }
        
        .footer a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--ambyos-yellow);
        }
        
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
            color: white;
        }
        
        /* Swiper Styles */
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--ambyos-yellow);
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            backdrop-filter: blur(10px);
        }
        
        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
        }
        
        .swiper-pagination-bullet {
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
        }
        
        .swiper-pagination-bullet-active {
            background: var(--ambyos-yellow);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
            }
            
            .hero-slider {
                height: 70vh;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-subtitle {
                font-size: 1rem;
            }
            
            .slide-description {
                font-size: 0.9rem;
            }
            
            .section-number {
                width: 35px;
                height: 35px;
                font-size: 16px;
                top: 15px;
                right: 15px;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
            
            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 16px;
            }
        }
        
        /* FAQ Icons Animation */
        .accordion-button i {
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) i {
            transform: rotate(360deg);
        }
        
        /* Responsive FAQ */
        @media (max-width: 768px) {
            .faq-container {
                padding: 1.5rem;
                margin: 0 1rem;
            }
            
            .accordion-button {
                padding: 1rem;
                font-size: 1rem;
            }
            
            .accordion-body {
                padding: 1rem;
            }
        }

        /* Services Section specific styling */
        #services {
            position: relative;
            background: var(--ambyos-dark);
            padding: 5rem 0;
        }

        #services .section-number {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            font-weight: 900;
            font-size: 20px;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
            border: 3px solid var(--ambyos-yellow);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
            }
            50% {
                box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8);
            }
            100% {
                box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
            }
        }

        /* Flip Cards Styles */
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 350px;
            perspective: 1000px;
            margin-bottom: 2rem;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            border-radius: 20px;
            overflow: hidden;
        }

        .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;
            overflow: hidden;
        }

        .flip-card-back {
            transform: rotateY(180deg);
        }

        .flip-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .flip-card-back-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        /* Responsive Flip Cards */
        @media (max-width: 768px) {
            .flip-card {
                height: 300px;
            }
        }

        .contact-item-link {
            text-decoration: none;
            display: block;
            border-radius: 15px;
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--ambyos-glass);
            transition: all 0.3s ease;
        }
        
        .contact-item-link:hover {
            background: var(--ambyos-glass-hover);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
        }

        /* Footer Styles */
        .footer {
            background: var(--ambyos-dark);
            padding: 4rem 0 2rem;
            font-family: 'Teko', sans-serif;
            border-top: 4px solid var(--ambyos-yellow);
        }

        .footer h5 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--ambyos-yellow);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .footer p {
            color: var(--ambyos-white);
            font-size: 1.2rem;
            line-height: 1.7;
        }

        .footer .list-unstyled li a {
            color: var(--ambyos-white) !important;
            font-size: 1.3rem;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .footer .list-unstyled li a:hover {
            color: var(--ambyos-yellow) !important;
            padding-left: 5px;
        }

        .footer .social-links a {
            color: var(--ambyos-white);
        }

        .footer .social-links a:hover {
            color: var(--ambyos-yellow);
        }

        .footer .text-muted {
            color: var(--ambyos-light-gray) !important;
            font-size: 1.1rem;
        }

        /* App Section Styles */
        #app-section {
            background: linear-gradient(135deg, #1a1a1a 0%, var(--ambyos-dark) 100%);
            overflow: hidden;
        }

        #app-section .section-title {
            color: var(--ambyos-yellow);
            font-size: 2.8rem;
        }

        #app-section .section-title strong {
            font-weight: 700;
        }

        .app-mockup {
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            max-width: 80%;
            transform: rotate(-3deg);
            transition: all 0.5s ease;
        }

        .app-mockup:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .app-description {
            font-size: 1.1rem;
            color: var(--ambyos-white);
            line-height: 1.8;
            margin: 1.5rem 0;
        }

        .google-play-badge {
            height: 90px;
            transition: all 0.3s ease;
        }

        .google-play-badge:hover {
            transform: scale(1.05);
        }

        .app-availability {
            font-size: 1rem;
            color: var(--ambyos-light-gray);
            font-style: italic;
        }

        #app-section .btn-secondary {
            background: transparent;
            border: 2px solid var(--ambyos-yellow);
            color: var(--ambyos-yellow);
            font-weight: 600;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
        }

        #app-section .btn-secondary:hover {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            transform: translateY(-3px);
        }

        /* Special Nav Link for App */
        .nav-link-special {
            border: 2px solid var(--ambyos-yellow);
            border-radius: 50px;
            color: var(--ambyos-yellow) !important;
            animation: glow 2.5s ease-in-out infinite;
            position: relative;
        }

        .nav-link-special:hover {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark) !important;
            animation: none;
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
            }
            50% {
                box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
            }
        }

        /* Remote Support Section */
        #remote-support .section-title {
            color: var(--ambyos-yellow);
        }
        .remote-support-logo {
            height: 120px;
        }
        .remote-support-description {
            font-size: 1.1rem;
            color: var(--ambyos-light-gray);
            max-width: 600px;
        }
        .remote-steps {
            text-align: left;
            --bs-list-group-bg: var(--ambyos-glass);
            --bs-list-group-color: var(--ambyos-white);
            --bs-list-group-border-color: rgba(255, 215, 0, 0.2);
        }
        .remote-steps .list-group-item {
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
        }
        .remote-steps .list-group-item strong {
            color: var(--ambyos-yellow);
        }
        .download-button {
            animation: pulse-logo 2s infinite ease-in-out;
        }

        /* Blog/News Sidebar */
        .blog-sidebar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 350px;
            background: rgba(0, 0, 0, 0.7);
            border-left: 3px solid rgba(255, 215, 0, 0.5);
            padding: 2rem;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
            z-index: 999;
            max-height: 80vh;
            overflow-y: auto;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-50%) translateX(100%);
        }
        
        .blog-sidebar.show {
            opacity: 0.6;
            visibility: visible;
            transform: translateY(-50%) translateX(0);
        }

        .blog-sidebar:hover {
            background: var(--ambyos-dark);
            border-left: 3px solid var(--ambyos-yellow);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(20px);
            opacity: 1;
            transform: translateY(-50%) translateX(-10px);
        }

        .blog-sidebar::-webkit-scrollbar {
            width: 8px;
        }

        .blog-sidebar::-webkit-scrollbar-track {
            background: var(--ambyos-gray);
        }

        .blog-sidebar::-webkit-scrollbar-thumb {
            background: rgba(255, 215, 0, 0.5);
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover::-webkit-scrollbar-thumb {
            background: var(--ambyos-yellow);
        }

        .blog-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover .blog-header {
            border-bottom: 2px solid var(--ambyos-yellow);
        }

        .blog-header h3 {
            color: rgba(255, 215, 0, 0.8);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover .blog-header h3 {
            color: var(--ambyos-yellow);
        }

        .blog-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover .blog-header p {
            color: var(--ambyos-white);
            opacity: 0.8;
        }

        .blog-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            opacity: 0.8;
        }

        .blog-sidebar:hover .blog-item {
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-glass);
            opacity: 1;
        }

        .blog-item:hover {
            transform: translateX(-5px);
            border-color: var(--ambyos-yellow);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
            background: rgba(255, 255, 255, 0.1);
        }

        .blog-item h4 {
            color: rgba(255, 215, 0, 0.7);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover .blog-item h4 {
            color: var(--ambyos-yellow);
        }

        .blog-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover .blog-item p {
            color: var(--ambyos-white);
        }

        .blog-item .read-more {
            color: rgba(255, 215, 0, 0.6);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .blog-sidebar:hover .blog-item .read-more {
            color: var(--ambyos-yellow);
        }

        .blog-item .read-more:hover {
            color: var(--ambyos-white);
            transform: translateX(5px);
        }

        .blog-item .read-more i {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .blog-item:hover .read-more i {
            transform: translateX(3px);
        }

        /* Modal Styles */
        .blog-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
        }

        .blog-modal-content {
            background: var(--ambyos-dark);
            margin: 5% auto;
            padding: 2rem;
            border: 2px solid var(--ambyos-yellow);
            border-radius: 20px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }

        .blog-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--ambyos-yellow);
        }

        .blog-modal-header h2 {
            color: var(--ambyos-yellow);
            font-size: 2rem;
            font-weight: 700;
        }

        .close-modal {
            color: var(--ambyos-yellow);
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            color: var(--ambyos-white);
            transform: scale(1.1);
        }

        .blog-modal-body {
            color: var(--ambyos-white);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .blog-modal-body h3 {
            color: var(--ambyos-yellow);
            font-size: 1.5rem;
            margin: 2rem 0 1rem 0;
        }

        .blog-modal-body ul {
            margin: 1rem 0;
            padding-left: 2rem;
        }

        .blog-modal-body li {
            margin-bottom: 0.5rem;
        }

        .blog-modal-body .highlight {
            background: linear-gradient(135deg, var(--ambyos-yellow) 0%, #FFED4E 100%);
            color: var(--ambyos-dark);
            padding: 0.5rem 1rem;
            border-radius: 10px;
            font-weight: 600;
            display: inline-block;
            margin: 1rem 0;
        }


        .admin-modal {
            display: none;
            position: fixed;
            z-index: 10001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            align-items: center;
            justify-content: center;
        }

        .admin-modal-content {
            background: var(--ambyos-dark);
            padding: 2rem;
            border: 2px solid var(--ambyos-yellow);
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .admin-form {
            color: var(--ambyos-white);
        }

        .admin-form label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--ambyos-yellow);
            font-weight: 600;
        }

        .admin-form input,
        .admin-form textarea {
            width: 100%;
            padding: 1rem;
            margin-bottom: 1rem;
            background: var(--ambyos-glass);
            border: 1px solid var(--ambyos-yellow);
            border-radius: 10px;
            color: var(--ambyos-white);
            font-size: 1rem;
        }

        .admin-form input:focus,
        .admin-form textarea:focus {
            outline: none;
            border-color: var(--ambyos-white);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .admin-form button {
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .admin-form button:hover {
            background: var(--ambyos-white);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .blog-sidebar {
                position: static;
                transform: none;
                width: 100%;
                max-height: none;
                margin-top: 2rem;
            }
        }

        /* Alert message animations */
        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        .alert-message {
            animation: slideInRight 0.5s ease;
        }

        .alert-message.removing {
            animation: slideOutRight 0.5s ease;
        }

        /* Avatar do Fundador - Animação de Entrada */
        .avatar-founder {
            position: fixed;
            width: auto;
            height: 400px;
            z-index: 9999;
            filter: drop-shadow(0 10px 40px rgba(255, 215, 0, 0.6));
            cursor: pointer;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: block;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        /* Estado inicial - Centro da tela */
        .avatar-founder.intro {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
            animation: avatarIntro 1.5s ease-out forwards;
        }

        /* Estado final - Canto inferior esquerdo */
        .avatar-founder.corner {
            bottom: 20px;
            left: 20px;
            height: 250px;
            transform: translate(0, 0) scale(1);
            opacity: 1;
        }

        .avatar-founder.corner:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 15px 50px rgba(255, 215, 0, 0.9));
        }

        .avatar-founder img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Tooltip do Avatar - Estilo Balão de Fala */
        .avatar-tooltip {
            position: absolute;
            bottom: 260px;
            left: 0;
            background: var(--ambyos-yellow);
            color: var(--ambyos-dark);
            padding: 12px 18px;
            border-radius: 20px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
            font-size: 15px;
            font-weight: 600;
            animation: bounce 2s ease-in-out infinite;
        }

        .avatar-tooltip::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 5px solid transparent;
            border-top: 20px solid var(--ambyos-yellow);
        }

        /* Pequeno círculo decorativo do balão */
        .avatar-tooltip::before {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 15px;
            width: 8px;
            height: 8px;
            background: var(--ambyos-yellow);
            border-radius: 50%;
            box-shadow: -8px 4px 0 -3px var(--ambyos-yellow);
        }

        .avatar-founder.corner:hover .avatar-tooltip {
            opacity: 1;
            bottom: 270px;
        }

        /* Animação de bounce suave para o balão */
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        /* Animação de entrada do avatar - Surgindo do fundo */
        @keyframes avatarIntro {
            0% {
                transform: translate(-50%, -50%) scale(0.3) translateZ(-500px);
                opacity: 0;
                filter: blur(20px) drop-shadow(0 0 0 rgba(255, 215, 0, 0));
            }
            30% {
                transform: translate(-50%, -50%) scale(0.6) translateZ(-200px);
                opacity: 0.4;
                filter: blur(10px) drop-shadow(0 5px 15px rgba(255, 215, 0, 0.3));
            }
            60% {
                transform: translate(-50%, -50%) scale(1.1) translateZ(0px);
                opacity: 0.8;
                filter: blur(3px) drop-shadow(0 10px 30px rgba(255, 215, 0, 0.5));
            }
            100% {
                transform: translate(-50%, -50%) scale(1) translateZ(0px);
                opacity: 1;
                filter: blur(0px) drop-shadow(0 10px 40px rgba(255, 215, 0, 0.6));
            }
        }

        /* Overlay de boas-vindas */
        .welcome-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9998;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.8s ease;
            pointer-events: none;
        }

        .welcome-overlay.hidden {
            opacity: 0;
        }

        .welcome-text {
            position: fixed;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 9999;
            opacity: 0;
            animation: welcomeText 1.5s ease-out 0.5s forwards;
        }

        .welcome-text h2 {
            color: var(--ambyos-yellow);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .welcome-text p {
            color: var(--ambyos-white);
            font-size: 1.2rem;
            font-weight: 300;
        }

        @keyframes welcomeText {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translate(-50%, -50%) translateY(0);
            }
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .avatar-founder {
                height: 300px;
            }
            
            .avatar-founder.corner {
                bottom: 10px;
                left: 10px;
                height: 180px;
            }
            
            .avatar-tooltip {
                font-size: 13px;
                padding: 10px 15px;
                bottom: 190px;
            }
            
            .avatar-founder.corner:hover .avatar-tooltip {
                bottom: 195px;
            }
            
            .avatar-tooltip::after {
                bottom: -12px;
                left: 25px;
                border-left: 12px solid transparent;
                border-right: 4px solid transparent;
                border-top: 15px solid var(--ambyos-yellow);
            }
            
            .welcome-text h2 {
                font-size: 1.8rem;
            }
            
            .welcome-text p {
                font-size: 1rem;
            }
        }

