        :root {
            --bg-primary: #0a0a0a;
            --bg-secondary: #111111;
            --bg-card: #161616;
            --text-primary: #ffffff;
            --text-secondary: #a1a1a1;
            --text-muted: #666666;
            --neon-orange: #ff6b00;
            --neon-amber: #ffaa00;
            --neon-glow: rgba(255, 107, 0, 0.5);
            --border-color: #262626;
            --border-glow: rgba(255, 107, 0, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        
        @media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    /* Ajuste opcional: centralizar o formulário no mobile */
    .contact-wrapper {
        display: block;
        padding: 10px;
    }
    
    .contact-form-wrapper {
        width: 100%;
        margin: 0 auto;
    }
}
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .font-display {
            font-family: 'Orbitron', sans-serif;
        }
        
        /* Neon Glow Effects */
        .neon-text {
            text-shadow: 0 0 10px var(--neon-glow), 0 0 20px var(--neon-glow), 0 0 30px var(--neon-glow);
        }
        
        .neon-border {
            border: 1px solid var(--border-glow);
            box-shadow: 0 0 15px var(--neon-glow), inset 0 0 15px rgba(255, 107, 0, 0.05);
        }
        
        .neon-line {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-orange), transparent);
            box-shadow: 0 0 10px var(--neon-glow);
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo img {
            height: 45px;
            width: auto;
        }
        
        nav {
            display: none;
        }
        
        @media (min-width: 768px) {
            nav {
                display: flex;
                gap: 30px;
            }
            
            nav a {
                color: var(--text-secondary);
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                transition: color 0.3s, text-shadow 0.3s;
            }
            
            nav a:hover {
                color: var(--neon-orange);
                text-shadow: 0 0 10px var(--neon-glow);
            }
        }
        
        .header-cta {
            background: linear-gradient(135deg, var(--neon-orange), var(--neon-amber));
            color: var(--bg-primary);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
            box-shadow: 0 0 20px var(--neon-glow);
        }
        
        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px var(--neon-glow), 0 5px 20px rgba(0,0,0,0.3);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--neon-orange), transparent);
            box-shadow: 0 0 20px var(--neon-glow);
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }
        
        @media (min-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .hero-text h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(28px, 5vw, 48px);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-amber) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-text h1 span {
            color: var(--neon-orange);
            -webkit-text-fill-color: var(--neon-orange);
            text-shadow: 0 0 30px var(--neon-glow);
        }
        
        .hero-text p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 30px;
            max-width: 500px;
            line-height: 1.8;
        }
        
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--neon-orange), var(--neon-amber));
            color: var(--bg-primary);
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s;
            box-shadow: 0 0 30px var(--neon-glow);
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px var(--neon-glow), 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--text-primary);
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            border: 1px solid var(--border-glow);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 107, 0, 0.1);
            border-color: var(--neon-orange);
            box-shadow: 0 0 20px var(--neon-glow);
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-glow);
            box-shadow: 0 0 40px var(--neon-glow);
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Sections */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-amber) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-header p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Local Authority */
        .authority-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .authority-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .authority-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .authority-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .authority-text h2 span {
            color: var(--neon-orange);
            text-shadow: 0 0 20px var(--neon-glow);
        }
        
        .authority-text p {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .authority-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .stat-card {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        
        .stat-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 30px var(--neon-glow);
            transform: translateY(-5px);
        }
        
        .stat-number {
            font-family: 'Orbitron', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--neon-orange);
            text-shadow: 0 0 20px var(--neon-glow);
        }
        
        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 5px;
        }
        
        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        @media (min-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .service-card {
            background: var(--bg-card);
            padding: 35px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-orange), var(--neon-amber));
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .service-card:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 40px var(--neon-glow);
            transform: translateY(-10px);
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 170, 0, 0.1));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid var(--border-glow);
        }
        
        .service-icon svg {
            width: 30px;
            height: 30px;
            color: var(--neon-orange);
            filter: drop-shadow(0 0 10px var(--neon-glow));
        }
        
        .service-card h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-primary);
        }
        
        .service-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }
        
        /* Benefits */
        .benefits-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        @media (min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .benefits-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        .benefit-item {
            text-align: center;
            padding: 25px 15px;
            background: var(--bg-card);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        
        .benefit-item:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 25px var(--neon-glow);
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 170, 0, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            border: 1px solid var(--border-glow);
        }
        
        .benefit-icon svg {
            width: 24px;
            height: 24px;
            color: var(--neon-orange);
            filter: drop-shadow(0 0 8px var(--neon-glow));
        }
        
        .benefit-item h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        /* Expertise */
        .expertise-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .expertise-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .expertise-image {
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-glow);
            box-shadow: 0 0 40px var(--neon-glow);
        }
        
        .expertise-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .expertise-text h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .expertise-text h2 span {
            color: var(--neon-orange);
            text-shadow: 0 0 20px var(--neon-glow);
        }
        
        .expertise-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .expertise-list {
            list-style: none;
        }
        
        .expertise-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        
        .expertise-list li:last-child {
            border-bottom: none;
        }
        
        .expertise-list svg {
            width: 20px;
            height: 20px;
            color: var(--neon-orange);
            filter: drop-shadow(0 0 8px var(--neon-glow));
            flex-shrink: 0;
        }
        
        /* Coverage */
        .coverage-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }
        
        .coverage-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .coverage-content h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .coverage-content h2 span {
            color: var(--neon-orange);
            text-shadow: 0 0 20px var(--neon-glow);
        }
        
        .coverage-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .coverage-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 170, 0, 0.1));
            padding: 15px 30px;
            border-radius: 50px;
            border: 1px solid var(--border-glow);
            box-shadow: 0 0 30px var(--neon-glow);
        }
        
        .coverage-badge svg {
            width: 24px;
            height: 24px;
            color: var(--neon-orange);
            filter: drop-shadow(0 0 10px var(--neon-glow));
        }
        
        .coverage-badge span {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        /* FAQ */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-card);
            border-radius: 15px;
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            border-color: var(--border-glow);
            box-shadow: 0 0 20px var(--neon-glow);
        }
        
        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
        }
        
        .faq-question svg {
            width: 20px;
            height: 20px;
            color: var(--neon-orange);
            transition: transform 0.3s;
            filter: drop-shadow(0 0 8px var(--neon-glow));
        }
        
        .faq-item.active .faq-question svg {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        
        .faq-answer p {
            padding: 0 25px 20px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Contact Form */
        .contact-section {
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: start;
        }
        
        @media (min-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .contact-info h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(24px, 4vw, 36px);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--neon-amber) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .contact-info p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .contact-features {
            list-style: none;
        }
        
        .contact-features li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
        }
        
        .contact-features li:last-child {
            border-bottom: none;
        }
        
        .contact-features svg {
            width: 24px;
            height: 24px;
            color: var(--neon-orange);
            filter: drop-shadow(0 0 10px var(--neon-glow));
            flex-shrink: 0;
        }
        
        .contact-form-wrapper {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border-glow);
            box-shadow: 0 0 50px var(--neon-glow);
        }
        
        .form-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--text-primary);
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-orange);
            box-shadow: 0 0 15px var(--neon-glow);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--neon-orange), var(--neon-amber));
            border: none;
            border-radius: 10px;
            color: var(--bg-primary);
            font-size: 16px;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 30px var(--neon-glow);
        }
        
        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 50px var(--neon-glow), 0 10px 30px rgba(0,0,0,0.3);
        }
        
        .form-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        .form-message {
            text-align: center;
            padding: 15px;
            border-radius: 10px;
            margin-top: 15px;
            display: none;
        }
        
        .form-message.success {
            display: block;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
        }
        
        .form-message.error {
            display: block;
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }
        
        /* Footer */
        footer {
            background: var(--bg-secondary);
            padding: 40px 0;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 20px;
        }
        
        .footer-logo img {
            height: 40px;
            width: auto;
        }
        
        .footer-text {
            color: var(--text-muted);
            font-size: 14px;
        }
        
        .footer-text span {
            color: var(--neon-orange);
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }
        
        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            color: white;
        }
        
        /* Animations */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .animate-pulse {
            animation: pulse 2s infinite;
        }
        
        /* Loading Spinner */
        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .form-submit.loading .spinner {
            display: inline-block;
            margin-right: 10px;
        }
        
        .form-submit.loading {
            display: flex;
            align-items: center;
            justify-content: center;
        }
                .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-glow);
            box-shadow: 0 0 40px var(--neon-glow);
        }
        
        .hero-image video {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        
        .video-sound-toggle {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(10, 10, 10, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }
        
        .video-sound-toggle:hover {
            background: rgba(10, 10, 10, 0.9);
            border-color: var(--border-glow);
            box-shadow: 0 0 15px var(--neon-glow);
        }
        
        .video-sound-toggle svg {
            width: 20px;
            height: 20px;
            color: var(--text-secondary);
            transition: color 0.3s;
        }
        
        .video-sound-toggle:hover svg {
            color: var(--neon-orange);
        }
        
        .video-sound-toggle.unmuted svg {
            color: var(--neon-orange);
        }
        /* Container Principal */
.wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Botão Flutuante Estilo Neon */
.wa-float-btn {
    background-color: #25D366; /* Mantemos o verde oficial para reconhecimento */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float-btn:hover { 
    transform: scale(1.1) rotate(5deg); 
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.wa-float-btn img { width: 32px; height: 32px; }

/* Caixa do Chat Adaptada ao Tema Dark/Orange */
.wa-box {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #161616;
    border-radius: 20px;
    border: 1px solid #262626;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    pointer-events: none;
}
.wa-box.active {
    display: block !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cabeçalho Estilo Site */
.wa-header {
    background: linear-gradient(135deg, #ff6b00, #ffaa00); /* Suas cores Neon */
    color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-profile { display: flex; align-items: center; gap: 12px; }
.wa-profile img { width: 35px; background: white; border-radius: 50%; padding: 2px; }
.wa-profile strong { display: block; font-size: 16px; font-weight: 700; }
.wa-profile span { font-size: 12px; font-weight: 500; opacity: 0.8; }

.wa-close { 
    background: rgba(0,0,0,0.1); 
    border: none; 
    color: #000; 
    font-size: 20px; 
    cursor: pointer; 
    width: 30px; 
    height: 30px; 
    border-radius: 50%;
    line-height: 1;
}

/* Corpo do Chat Dark */
.wa-body { padding: 20px; background: #0a0a0a; }
.wa-body p { 
    margin-bottom: 20px; 
    font-size: 14px; 
    color: #fff; 
    background: #1a1a1a; 
    padding: 12px; 
    border-radius: 0 15px 15px 15px; 
    border: 1px solid #333;
}

.wa-input-group { margin-bottom: 15px; }
.wa-input-group input {
    width: 100%;
    padding: 12px 15px;
    background: #161616;
    border: 1px solid #262626;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}
.wa-input-group input:focus { border-color: #ff6b00; }

.wa-submit-btn {
    width: 100%;
    background: #ff6b00;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.wa-submit-btn:hover { 
    background: #ff8533;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}
/* No grupo dos inputs */
.wa-input-group input {
    -webkit-appearance: none; /* Remove estilo padrão do iOS */
    appearance: none;
    -webkit-border-radius: 10px; /* Garante que o raio da borda funcione no Safari */
    border-radius: 10px;
    font-size: 16px !important; /* Evita que o iPhone dê "zoom" automático ao clicar no campo */
}

/* No botão de submit */
.wa-submit-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex; /* Melhora alinhamento no Safari */
    align-items: center;
    justify-content: center;
}

/* Ajuste de profundidade (z-index) */
.wa-widget {
    -webkit-transform: translateZ(0); /* Força o Safari a renderizar a camada acima de tudo */
    transform: translateZ(0);
}
/* Correção para Inputs no Safari (iOS) */
.wa-input-group input {
    -webkit-appearance: none; /* Remove sombreamento padrão do iOS */
    appearance: none;
    background-color: #161616 !important; /* Força a cor do seu card */
    color: #ffffff !important;
    border: 1px solid #262626;
    font-size: 16px !important; /* Impede o zoom indesejado no iPhone */
    width: 100%;
    display: block;
}

/* Ajuste do Botão de Enviar para não ficar arredondado demais no iOS */
.wa-submit-btn {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 12px !important;
    -webkit-border-radius: 12px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Garantir que o Widget fique sempre por cima de tudo */
.wa-widget {
    z-index: 999999 !important;
    /* Adiciona uma pequena margem para não colar no canto em ecrãs curvos */
    bottom: 20px;
    right: 20px;
}

/* Ajuste da largura para telemóveis pequenos */
@media (max-width: 480px) {
    .wa-box {
        width: 280px;
        right: 0;
    }
}
/* ========================================
   CARROSSEL DE PROJETOS - PORTFOLIO
   CSS COMPLETO - VERSÃO OTIMIZADA iOS/ANDROID
   Cole isso NO FINAL do seu style.css
   ======================================== */

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-primary);
}

/* Carousel Wrapper */
.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 40px var(--neon-glow);
    position: relative;
    width: 100%;
}

/* Altura fixa baseada na largura (aspect ratio) */
.carousel-container::before {
    content: '';
    display: block;
    padding-top: 62.5%; /* 16:10 ratio para desktop */
}

.carousel-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Hardware acceleration */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
    /* Renderização suave iOS */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Slide Caption com Gradiente */
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
    padding: 40px 30px 25px;
    z-index: 2;
}

.slide-caption h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-orange);
    margin-bottom: 8px;
    text-shadow: 0 0 20px var(--neon-glow);
    word-wrap: break-word;
}

.slide-caption p {
    font-size: 15px;
    color: var(--text-secondary);
    word-wrap: break-word;
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
    -webkit-transform: translateY(-50%) scale(0.95);
}

.carousel-btn:hover {
    background: rgba(10, 10, 10, 0.95);
    border-color: var(--neon-orange);
    box-shadow: 0 0 25px var(--neon-glow);
}

/* Remove hover em dispositivos touch */
@media (hover: none) {
    .carousel-btn:hover {
        background: rgba(10, 10, 10, 0.8);
        border-color: var(--border-glow);
        box-shadow: none;
    }
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: color 0.3s;
    pointer-events: none;
}

.carousel-btn:hover svg {
    color: var(--neon-orange);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    touch-action: manipulation;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.indicator:active {
    transform: scale(0.9);
}

.indicator:hover {
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px var(--neon-glow);
}

.indicator.active {
    background: var(--neon-orange);
    border-color: var(--neon-orange);
    box-shadow: 0 0 20px var(--neon-glow);
    width: 32px;
    border-radius: 6px;
}

/* Barra de Autoplay */
.autoplay-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--neon-orange);
    width: 0;
    transition: width 5s linear;
    box-shadow: 0 0 10px var(--neon-glow);
    z-index: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.carousel-slide.active .autoplay-bar {
    width: 100%;
}

/* ========================================
   RESPONSIVO - TABLET
   ======================================== */
@media (max-width: 768px) {
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    /* Proporção 4:3 no tablet */
    .carousel-container::before {
        padding-top: 75%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .slide-caption {
        padding: 25px 20px 20px;
    }
    
    .slide-caption h3 {
        font-size: 20px;
    }
    
    .slide-caption p {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVO - MOBILE (FOTOS MAIORES!)
   ======================================== */
@media (max-width: 480px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .carousel-wrapper {
        padding: 0 45px;
        max-width: 100%;
    }
    
    /* ALTURA MUITO MAIOR NO MOBILE - Proporção 3:4 */
    .carousel-container::before {
        padding-top: 133%; /* Fotos bem mais altas! */
    }
    
    .carousel-container {
        border-radius: 15px;
    }
    
    .carousel-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .slide-caption {
        padding: 25px 18px 18px;
    }
    
    .slide-caption h3 {
        font-size: 19px;
        margin-bottom: 6px;
    }
    
    .slide-caption p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .carousel-indicators {
        margin-top: 20px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 28px;
    }
}

/* ========================================
   RESPONSIVO - CELULARES PEQUENOS
   ======================================== */
@media (max-width: 375px) {
    .carousel-wrapper {
        padding: 0 40px;
    }
    
    /* Ainda mais alto em telas pequenas */
    .carousel-container::before {
        padding-top: 140%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .slide-caption h3 {
        font-size: 17px;
    }
    
    .slide-caption p {
        font-size: 13px;
    }
}

/* ========================================
   OTIMIZAÇÕES ESPECÍFICAS PARA SAFARI/iOS
   ======================================== */
@supports (-webkit-touch-callout: none) {
    .carousel-container {
        -webkit-overflow-scrolling: touch;
    }
    
    .carousel-track {
        will-change: transform;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .carousel-slide {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
/* ========================================
   EFEITO HOVER NA LOGO (VOLTAR AO TOPO)
   Cole no final do seu style.css
   ======================================== */

.logo {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.logo:active {
    transform: translateY(0);
}

.logo img {
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 10px var(--neon-glow));
}

/* Remove o efeito em dispositivos touch (mobile) */
@media (hover: none) {
    .logo:hover {
        transform: none;
        opacity: 1;
    }
    
    .logo:hover img {
        filter: none;
    }
}