        :root {
            --bg-color: #E8E4D6;
            --primary: #ff914d;
            --primary-dark: #e07a38;
            --text-dark: #1a1917;
            --text-muted: #5c5a54;
            --card-bg: rgba(255, 255, 255, 0.4);
            --glass-border: rgba(255, 255, 255, 0.6);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-dark);
            overflow-x: hidden;
            position: relative;
            font-size: 16px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* --- Elementos Abstratos de Fundo (Efeitos Visuais) --- */
        .blur-circle {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.5;
            pointer-events: none;
            animation: float 8s ease-in-out infinite alternate;
        }
        .circle-1 { top: 25%; right: -12%; width: 600px; height: 600px; background: var(--primary); }
        .circle-2 { top: 40%; left: -10%; width: 500px; height: 500px; background: rgba(255, 145, 77, 0.3); animation-delay: -3s; }

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

        /* --- Barra de Navegação --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 8%;
            z-index: 1000;
            transition: all 0.4s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .header-logo {
            width: min(220px, 60vw);
            max-width: 220px;
            height: auto;
            cursor: pointer;
        }

        header.scrolled {
            background: rgba(232, 228, 214, 0.85);
            backdrop-filter: blur(15px);
            padding: 15px 8%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid var(--glass-border);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -1px;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: color 0.3s;
            position: relative;
        }

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

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

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

        .nav-links a.header-cta {
            padding: 12px 22px;
            border-radius: 50px;
            background: var(--primary);
            color: white !important;
            box-shadow: 0 10px 20px rgba(255, 145, 77, 0.3);
            border: 1px solid rgba(255, 145, 77, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 46px;
        }

        .nav-links a.header-cta::after {
            display: none;
        }

        .nav-links a.header-cta:hover {
            background: var(--primary-dark);
            color: white !important;
            transform: translateY(-2px);
        }

        .menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.7);
            transition: all 0.3s ease;
        }

        .menu-btn i {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .menu-btn.active {
            color: var(--primary);
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-left: auto;
        }

        /* --- Seletor de Idioma --- */
        .language-selector {
            display: flex;
            gap: 8px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.3);
            padding: 6px;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .lang-btn {
            background: transparent;
            border: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 0.85rem;
            padding: 6px 14px;
            border-radius: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .lang-btn.active {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 12px rgba(255, 145, 77, 0.3);
        }

        .lang-btn:hover:not(.active) {
            color: var(--primary);
        }

        /* --- Banner de Cookies --- */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--text-dark);
            color: white;
            padding: 20px 8%;
            z-index: 999;
            display: none;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
            animation: slideUp 0.4s ease;
        }

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

        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cookie-text {
            flex: 1;
        }

        .cookie-text h4 {
            margin-bottom: 8px;
            font-size: 1rem;
            color: white;
        }

        .cookie-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        #accept-cookies,
        #reject-cookies {
            padding: 10px 24px;
            border-radius: 24px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        #accept-cookies {
            background: var(--primary);
            color: white;
        }

        #accept-cookies:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255, 145, 77, 0.3);
        }

        #reject-cookies {
            background: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        #reject-cookies:hover {
            border-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 900px) {
            .circle-1 { 
                right: -450px;
            }

            .language-selector {
                gap: 6px;
                padding: 4px;
            }

            .lang-btn {
                padding: 4px 10px;
                font-size: 0.75rem;
            }

            .cookie-banner {
                padding: 16px 6%;
            }

            .cookie-content {
                flex-direction: column;
                gap: 16px;
            }

            .cookie-text {
                width: 100%;
            }

            .cookie-actions {
                width: 100%;
                justify-content: flex-end;
            }
        }

        @media (max-width: 600px) {
            .header-controls {
                gap: 15px;
            }

            .cookie-actions {
                gap: 8px;
            }

            #accept-cookies,
            #reject-cookies {
                padding: 8px 16px;
                font-size: 0.8rem;
            }

            .cookie-text p {
                font-size: 0.85rem;
            }
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            position: relative;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 720px;
            z-index: 2;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .hero-tag {
            background: rgba(255, 145, 77, 0.15);
            color: var(--primary-dark);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 145, 77, 0.3);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards 0.2s;
        }

        .hero h1 {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -2px;
            min-height: clamp(3.4em, 6vw, 4.8em);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards 0.4s;
            text-align: left;
        }

        .hero h1 span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: clamp(1rem, 2.1vw, 1.2rem);
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 35px;
            min-height: auto;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards 0.6s;
            text-align: left;
        }

        .cta-container {
            display: flex;
            gap: 20px;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 0.8s forwards 0.8s;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            cursor: pointer;
            min-height: 48px;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 20px rgba(255, 145, 77, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(255, 145, 77, 0.4);
            background: var(--primary-dark);
        }

        .btn-secondary {
            border: 2px solid var(--text-dark);
            color: var(--text-dark);
        }

        .btn-secondary:hover {
            background: var(--text-dark);
            color: var(--bg-color);
            transform: translateY(-5px);
        }

        /* --- Secções Gerais --- */
        section {
            padding: 100px 8%;
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 50px;
            letter-spacing: -1px;
        }

        .section-title span {
            color: var(--primary);
        }

        /* Revealing Animation no Scroll */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Secção Sobre a Empresa --- */
        .about-section {
            text-align: center;
        }

        .about-intro {
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .section-intro {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .about-grid {
            display: grid;
            justify-content: center;
            margin-top: 80px !important;
            grid-template-columns: 70% 30%;
            gap: 190px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-content {
            text-align: left;
        }

        .about-text p {
            font-size: 1.08rem;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .about-features {
            display: grid;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature-card {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            padding: 22px 24px;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.02);
        }

        .about-feature-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            border-radius: 14px;
            background: rgba(255, 145, 77, 0.12);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .about-feature-card h3 {
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .about-feature-card p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .about-stats {
            display: flex;
            justify-content: center;
        }

        .stat-card {
            /* background: linear-gradient(135deg, rgba(255, 145, 77, 0.12), rgba(255, 255, 255, 0.75)); */
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            width: 500px;
            backdrop-filter: blur(10px);
            padding: 36px 24px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
            min-height: 260px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .stat-number {
            font-size: clamp(3rem, 6vw, 4.5rem);
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 12px;
        }

        .stat-card p {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        /* --- Secção Serviços --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 16px;
            padding-bottom: 12px;
        }

        .services-grid::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            padding: 48px 36px;
            border-radius: 24px;
            transition: all 0.4s ease;
            cursor: pointer;
            scroll-snap-align: start;
        }

        .service-card:hover {
            transform: scale(1.02);
            background: white;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border-color: rgba(255, 145, 77, 0.3);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 145, 77, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            background: var(--primary);
            color: white;
        }

        .service-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* --- Secção Portfólio --- */
        .portfolio-section {
            position: relative;
        }

        .portfolio-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            padding: 40px 60px;
            min-height: 600px;
            position: relative;
        }

        .portfolio-grid {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: min(100%, 980px);
            min-height: 600px;
            flex: 1;
            overflow: hidden;
        }

        .portfolio-item {
            position: absolute;
            top: 50%;
            left: 50%;
            width: min(480px, 55vw);
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            cursor: pointer;
            pointer-events: none;
            opacity: 0;
        }

        .portfolio-item.side-left,
        .portfolio-item.side-right {
            opacity: 0.55;
            filter: saturate(0.8);
            transform: translate(-50%, -50%) scale(0.8);
        }

        .portfolio-item.side-left {
            transform: translate(-50%, -50%) translateX(-200px) scale(0.8);
        }

        .portfolio-item.side-right {
            transform: translate(-50%, -50%) translateX(200px) scale(0.8);
        }

        .portfolio-item.center {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: auto;
            z-index: 3;
        }

        .portfolio-arrow {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            border: none;
            color: white;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .portfolio-arrow:hover {
            background: var(--primary-dark);
            transform: scale(1.15);
            box-shadow: 0 8px 20px rgba(255, 145, 77, 0.4);
        }

        .portfolio-arrow-left {
            position: relative;
        }

        .portfolio-arrow-right {
            position: relative;
        }

        .site-footer {
            background: var(--text-dark);
            color: rgba(255,255,255,0.9);
            padding: 70px 8% 30px;
            margin-top: 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 1fr;
            gap: 40px;
            padding-bottom: 35px;
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

        .footer-col {
            text-align: left;
        }

        .footer-col h4 {
            font-size: 1rem;
            margin-bottom: 18px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            /* text-align: left; */
        }

        .footer-logo {
            display: inline-block;
            color: white;
            margin-bottom: 16px;
        }

        .footer-col p,
        .footer-col a {
            color: rgba(255,255,255,0.76);
            line-height: 1.7;
            text-decoration: none;
        }

        .footer-nav,
        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            text-align: left;
        }

        .footer-nav a:hover,
        .footer-contact a:hover,
        .social-links a:hover {
            color: var(--primary);
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 6px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }

        .footer-bottom {
            padding-top: 20px;
            text-align: left;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.6);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-color: transparent;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Placeholders Visuais Modernos para Imagens do Portfolio */
        .p-1 { background-image: url(../assets/projetos/hotel1.png); }
        .p-2 { background-image: url(../assets/projetos/restaurante1.png); }
        .p-3 { background-image: url(../assets/projetos/hotel1.png); }

        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 25, 23, 0.9) 20%, rgba(26, 25, 23, 0));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 40px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-overlay h4 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .portfolio-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* --- Secção Contacto --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            border-radius: 32px;
            padding: 50px;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-row {
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s ease;
        }

        .contact-row:hover {
            transform: translateX(10px);
        }

        .contact-row i {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }

        .contact-row:hover i {
            background: var(--primary);
            color: white;
            box-shadow: 0 8px 20px rgba(255, 145, 77, 0.3);
        }

        .contact-row p {
            margin: 0;
        }

        .contact-row a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-row:hover a {
            color: var(--primary);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            color: var(--text-dark);
            outline: none;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group select {
            appearance: none;
            cursor: pointer;
        }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(255, 145, 77, 0.1);
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
        }

        .form-checkbox label {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--text-dark);
            margin: 0;
        }

        .form-checkbox input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin: 0;
            padding: 0;
            cursor: pointer;
            accent-color: var(--primary);
            flex-shrink: 0;
        }

        .form-checkbox a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-checkbox a:hover {
            text-decoration: underline;
        }

        /* --- Botão Flutuante WhatsApp --- */
        .whatsapp-float {
            position: fixed;
            bottom: 40px;
            right: 40px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
            background-color: #20ba5a;
        }

        /* --- Rodapé --- */
        footer {
            background: #1a1917;
            color: #E8E4D6;
            padding: 40px 8%;
            text-align: center;
            font-size: 0.9rem;
        }

        /* --- Animações --- */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* --- Responsividade (Mobile) --- */
        @media (max-width: 992px) {
            header {
                padding: 16px 5%;
            }

            header.scrolled {
                padding: 12px 5%;
            }

            .hero {
                min-height: auto;
                padding: 120px 5% 70px;
            }

            .hero-content {
                max-width: 100%;
                text-align: left;
            }

            .hero h1 { font-size: 2.8rem; }
            .hero p {
                font-size: 1.05rem;
                max-width: 680px;
                margin-left: 0;
                margin-right: auto;
            }
            .cta-container {
                justify-content: flex-start;
                flex-wrap: wrap;
            }
            .about-grid, .contact-container { grid-template-columns: 1fr; gap: 40px; }
            .about-content { text-align: center; }
            .about-feature-card { flex-direction: column; align-items: flex-start; }
            .menu-btn { display: flex; }
            
            .mobile-menu {
                display: none;
            }
            .mobile-menu.active {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 78px;
                right: 5%;
                left: 5%;
                width: auto;
                background: rgba(232, 228, 214, 0.98);
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 0 14px;
                transition: all 0.3s ease;
                box-shadow: 0 10px 20px rgba(0,0,0,0.08);
                border: 1px solid var(--glass-border);
                border-radius: 18px;
                gap: 6px;
                backdrop-filter: blur(14px);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                pointer-events: none;
            }

            .nav-links li {
                width: 100%;
                text-align: left;
            }

            .nav-links a {
                display: block;
                width: 100%;
                padding: 10px 16px;
            }

            .nav-links a.btn {
                width: calc(100% - 32px);
                margin: 6px 16px 0;
                text-align: center;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
        }

        @media (max-width: 576px) {
            header { padding: 12px 5%; }
            .header-logo { width: 120px; }
            .logo { font-size: 1.4rem; }
            .header-controls { gap: 10px; }
            .menu-btn { width: 40px; height: 40px; }
            .hero { padding: 110px 5% 50px; }
            .hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); line-height: 1.2; min-height: 3.2em; }
            .hero p { font-size: 1rem; margin-bottom: 24px; }
            .cta-container { flex-direction: column; align-items: stretch; gap: 12px; }
            .btn { width: 100%; text-align: center; padding: 14px 20px; }
            section { padding: 70px 5%; }
            .section-title { font-size: 1.85rem; margin-bottom: 30px; }
            .about-grid { gap: 28px; margin-top: 36px !important; }
            .about-content { text-align: left; }
            .about-feature-card { padding: 20px; }
            .about-stats { width: 100%; }
            .stat-card { width: 100%; min-height: 220px; padding: 24px 18px; }
            .service-card { padding: 28px 22px; flex-basis: min(86vw, 320px); min-width: min(86vw, 320px); }
            .portfolio-item { height: 320px; flex-basis: min(86vw, 360px); min-width: min(86vw, 360px); }
            .portfolio-overlay { padding: 24px; }
            .contact-container { padding: 24px 18px; border-radius: 24px; gap: 24px; }
            .contact-row { align-items: flex-start; }
            .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; font-size: 24px; }
            .cookie-banner { padding: 16px 5%; }
            .cookie-content { gap: 12px; align-items: stretch; }
            .cookie-actions { flex-direction: column; }
            .cookie-actions .btn { width: 100%; }
            .footer-bottom { text-align: center; }
            .nav-links { top: 72px; right: 4%; left: 4%; }
        }

/* --- Estilos para FAQ Acordeão --- */
.faq-table {
    margin: 20px auto 0;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    overflow: hidden;
}
.faq-row + .faq-row { border-top: 1px solid rgba(0,0,0,0.04); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    text-align: left;
}
.faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-icon { margin-left: 18px; color: #9ad9cc; }
.faq-icon i { 
    transition: transform 0.35s ease;
    color: var(--primary);
 }
.faq-icon i.fa-rotate-180 { transform: rotate(180deg); }
.faq-answer {
    padding: 0 28px;
    background: transparent;
}
.faq-answer p {
    padding: 18px 0 28px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* @media (max-width: 768px) {
    .faq-question { padding: 18px 20px; font-size: 1rem; }
    .faq-answer { padding: 0 20px; }
    .portfolio-container {
        gap: 20px;
        padding: 40px 20px;
        min-height: 550px;
    }
    .portfolio-grid {
        min-height: 450px;
    }
    .portfolio-item {
        height: 400px;
        width: min(350px, 80vw);
    }
    .portfolio-item.side-left {
        transform: translate(-50%, -50%) translateX(-120px) scale(0.75);
    }
    .portfolio-item.side-right {
        transform: translate(-50%, -50%) translateX(120px) scale(0.75);
    }
    .portfolio-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .footer-links {
        justify-content: center;
        width: 100%;
    }
} */

@media (max-width: 768px) {
    .faq-question { padding: 18px 20px; font-size: 1rem; }
    .faq-answer { padding: 0 20px; }

    /* 1. Esconder as setas no telemóvel */
    .portfolio-arrow {
        display: none !important;
    }

    /* 2. Contentor principal ajustado */
    .portfolio-container {
        gap: 0;
        padding: 20px 10px;
        min-height: 520px;
        touch-action: pan-y; /* Permite scroll vertical da página mas captura o horizontal */
    }

    .portfolio-grid {
        min-height: 480px;
        position: relative;
        width: 100%;
    }

    /* 3. Caixas mais compridas e altas */
    .portfolio-item {
        height: 460px; /* Mais alta */
        width: min(340px, 88vw); /* Mais larga */
    }

    /* 4. Ajuste das posições 3D para telemóveis pequenos */
    .portfolio-item.side-left {
        transform: translate(-50%, -50%) translateX(-85px) scale(0.8);
        opacity: 0.5;
    }

    .portfolio-item.side-right {
        transform: translate(-50%, -50%) translateX(85px) scale(0.8);
        opacity: 0.5;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
    }
}

/* --- Estilos para Tabela de Comparação / Pricing --- */
.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.pricing-table {
    width: 100%;
    min-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    background: white;
}
.pricing-row {
    display: grid;
    grid-template-columns: minmax(180px, 1.4fr) repeat(4, minmax(140px, 1fr));
    align-items: center;
}
.pricing-head { background: linear-gradient(90deg, rgba(255,145,77,0.06), rgba(154,217,204,0.03)); }
.pricing-cell {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-weight: 600;
    text-align: center;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-col {
    text-align: left;
    color: var(--text-muted);
    font-weight: 700;
    justify-content: flex-start;
}
.pricing-row.pricing-cta .pricing-cell { padding: 20px; }
.pricing-row.pricing-cta .pricing-cell a.btn { padding: 10px 20px; border-radius: 24px; }
.btn-outline { background: transparent; color: var(--text-dark); border: 2px solid rgba(0,0,0,0.06); }

@media (max-width: 1000px) {
    .pricing-table { min-width: 820px; }
    .pricing-row { grid-template-columns: minmax(170px, 1.3fr) repeat(3, minmax(120px, 1fr)); grid-auto-rows: auto; }
    .pricing-row > .pricing-cell:nth-child(n+5) { display: none; }
}

@media (max-width: 700px) {
    .pricing-table { min-width: 740px; }
    .pricing-row { grid-template-columns: minmax(170px, 1.3fr) repeat(3, minmax(120px, 1fr)); }
    .pricing-row .pricing-cell { text-align: left; padding: 14px 16px; min-height: 58px; }
    .pricing-row.pricing-head { display: none; }
    .pricing-row { border-bottom: 1px solid rgba(0,0,0,0.03); }
}

/* Typing caret for hero title */
.typing-caret {
    display: inline-block;
    width: 2px;
    background: var(--text-dark);
    margin-left: 8px;
    animation: typing-blink 1s steps(1) infinite;
    vertical-align: middle;
    height: 1.1em;
}

@keyframes typing-blink {
    50% { opacity: 0; }
}