        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1a2c4e;
            --accent-blue: #427ad6;
            --gradient-primary: linear-gradient(135deg, #1a2c4e 0%, #2d4a75 100%);
            --gradient-accent: linear-gradient(135deg, #427ad6 0%, #5a8de8 100%);
            --gradient-orange: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
            --gradient-whatsapp: linear-gradient(135deg, #25D366 0%, #20C058 100%);
            --text-primary: #1a1a1a;
            --text-secondary: #6b7280;
            --surface: #ffffff;
            --surface-elevated: rgba(255, 255, 255, 0.9);
            --border: rgba(255, 255, 255, 0.2);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-elevated: 0 10px 40px rgba(0, 0, 0, 0.12);
            --border-radius: 16px;
            --border-radius-sm: 8px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            margin: 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Modern Header with Glassmorphism */
        .header {
            background: rgba(26, 44, 78, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-soft);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 32px;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        /* Hamburger Menu Toggle */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 4px;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 100%;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Centered Modern Navigation */
        .nav-container {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .nav {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            padding: 8px 12px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .nav ul {
            list-style: none;
            display: flex;
            gap: 4px;
            align-items: center;
        }

        .nav ul li a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 12px 20px;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav ul li:last-child a::after {
            display: none;
        }

        .nav ul li a:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            transform: translateY(-1px);
        }

        .nav ul li a:hover::after {
            transform: rotate(180deg);
        }

        /* Modern Contact Info */
        .contact-info {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #fff;
        }

        .contact-phone,
        .contact-whatsapp {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: #ffffff;
        }

        .contact-whatsapp {
            background: var(--gradient-whatsapp);
        }

        .contact-phone:hover,
        .contact-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-elevated);
        }

        .phone-icon,
        .whatsapp-icon {
            width: 20px;
            height: 20px;
            background: currentColor;
        }

        .whatsapp-icon {
            mask: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.6 14c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.6.8-.8 1-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.2-.5-.5-1-1.1-1.4-1.7-.1-.2 0-.4.1-.5.1-.1.2-.3.4-.4.1-.1.2-.3.2-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.3-.8-1.8-.1-.7-.3-.7-.5-.7h-.5c-.2 0-.5.1-.7.3-.7.7-1 1.6-1 2.5 0 .3.1.7.2 1 .7 2.8 2.5 4.8 5.2 5.6.7.2 1.4.3 2.1.3.4 0 .7 0 1.1-.1.7-.1 1.3-.3 1.7-.7.3-.3.5-.7.5-1.1 0-.2-.1-.3-.2-.4zM12 22C6.5 22 2 17.5 2 12S6.5 2 12 2s10 4.5 10 10-4.5 10-10 10zm0-2c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8z'/%3e%3c/svg%3e") no-repeat;
            mask-size: contain;
        }

        /* Hero Section with Modern Card Design - RESPONSIVO */
        .hero-section {
            background: var(--gradient-primary);
            padding: 80px 0 120px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(66, 122, 214, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 140, 0, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-card {
            background: var(--surface-elevated);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-elevated);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            max-width: 1000px;
            width: 90%;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }

        .image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }

        .image-container::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, transparent 60%, rgba(26, 44, 78, 0.05) 100%);
        }

        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius-sm);
            filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.1));
            transition: transform 0.3s ease;
        }

        .image-container:hover img {
            transform: scale(1.05);
        }

        .content-container {
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 24px;
        }

        .content-container h1 {
            font-size: clamp(28px, 4vw, 42px);
            color: var(--primary-blue);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .content-container p {
            font-size: 18px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .btn {
            background: var(--gradient-accent);
            color: #fff;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            align-self: flex-start;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(66, 122, 214, 0.3);
        }

        .btn a {
            color: #fff;
            text-decoration: none;

        }


        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(66, 122, 214, 0.4);
        }

        /* Modern Popular Skid Steers Section */
        .popular-skid-steers {
            padding: 80px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .popular-skid-steers h2 {
            font-size: 36px;
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 48px;
            text-align: center;
            position: relative;
            letter-spacing: -0.02em;
        }

        .popular-skid-steers h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .skid-steer-item {
            background: var(--surface);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            padding: 32px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .skid-steer-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-accent);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .skid-steer-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-elevated);
            border-color: rgba(66, 122, 214, 0.2);
        }

        .skid-steer-item:hover::before {
            transform: scaleY(1);
        }

        .item-image {
            width: 140px;
            height: 120px;
            margin-right: 32px;
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .item-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .skid-steer-item:hover .item-image img {
            transform: scale(1.1);
        }

        .item-details h3 {
            font-size: 24px;
            color: var(--primary-blue);
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .item-actions {
            display: flex;
            gap: 12px;
        }

        .btn-call,
        .btn-rent {
            padding: 14px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-call {
            background: var(--gradient-orange);
            color: #fff;
            box-shadow: 0 4px 16px rgba(255, 140, 0, 0.3);
        }

        .btn-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 140, 0, 0.4);
        }

        .btn-rent {
            background: rgba(255, 140, 0, 0.1);
            color: #ff8c00;
            border: 2px solid #ff8c00;
        }

        .btn-rent:hover {
            background: #ff8c00;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(255, 140, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header-container {
                grid-template-columns: auto 1fr auto;
                gap: 24px;
            }

            .nav-container {
                order: 2;
                grid-column: 1 / -1;
                justify-self: center;
            }

            /* Hero responsivo para tablets */
            .hero-section {
                padding: 60px 0 80px;
            }

            .hero-card {
                width: 95%;
                grid-template-columns: 1fr 1fr;
            }

            .content-container {
                padding: 40px;
            }

            .image-container {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-container {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 44, 78, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                padding: 16px 24px;
                border-bottom: 1px solid var(--border);
                text-align: center;
            }

            .nav-container.active {
                display: block;
            }

            .nav {
                border-radius: 16px;
                padding: 16px;
                background: none;
                border: none;
                box-shadow: none;
            }

            .nav ul {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }

            .nav ul li a {
                padding: 12px;
                font-size: 16px;
                width: 100%;
                justify-content: center;
            }

            /* Hero responsivo para mobile */
            .hero-section {
                padding: 40px 0 60px;
            }

            .hero-card {
                grid-template-columns: 1fr;
                width: 95%;
                margin: 0 auto;
            }

            .image-container {
                order: 2;
                padding: 20px;
            }

            .content-container {
                order: 1;
                padding: 30px 24px;
                text-align: center;
            }

            .content-container h1 {
                font-size: clamp(24px, 6vw, 32px);
                line-height: 1.3;
            }

            .content-container p {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .btn {
                padding: 14px 28px;
                font-size: 15px;
                align-self: center;
                width: fit-content;
            }

            .skid-steer-item {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 24px;
                padding: 24px;
            }

            .item-image {
                margin: 0 auto;
                width: 120px;
                height: 100px;
            }

            .item-actions {
                justify-content: center;
                flex-wrap: wrap;
            }

            .popular-skid-steers {
                padding: 60px 20px;
            }

            .popular-skid-steers h2 {
                font-size: 28px;
            }
        }

        /* Breakpoint extra pequeno para telas muito pequenas */
        @media (max-width: 480px) {
            .hero-section {
                padding: 30px 0 50px;
            }

            .hero-card {
                width: 98%;
                border-radius: 12px;
            }

            .content-container {
                padding: 20px 16px;
            }

            .content-container h1 {
                font-size: 22px;
            }

            .content-container p {
                font-size: 15px;
            }

            .btn {
                padding: 12px 24px;
                font-size: 14px;
            }

            .contact-whatsapp span:last-child {
                display: none;
            }

            .logo {
                font-size: 24px;
            }
        }


        /* Adicione este CSS ao final do arquivo de estilos */

        /* Modern Footer */
        .footer {
            background: var(--gradient-primary);
            color: #fff;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(66, 122, 214, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            padding: 80px 24px 60px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #fff;
            position: relative;
            letter-spacing: -0.01em;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient-accent);
            border-radius: 1px;
        }

        .footer-logo {
            margin-bottom: 24px;
        }

        .footer-logo .logo {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .footer-logo p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            line-height: 1.6;
            max-width: 280px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-section ul li a:hover {
            color: #fff;
            padding-left: 8px;
        }

        .footer-section ul li a::before {
            content: '';
            position: absolute;
            left: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-accent);
            transition: width 0.3s ease;
        }

        .footer-section ul li a:hover::before {
            width: 12px;
        }

        /* Footer Contact Section */
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
        }

        .contact-icon {
            font-size: 18px;
            width: 24px;
            text-align: center;
        }

        .footer-social {
            margin-top: 24px;
        }

        .social-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-whatsapp);
            color: #fff;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
        }

        .social-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 32px 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin: 0;
        }

        .footer-links {
            display: flex;
            gap: 24px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
        }

        /* Responsive Footer */
        @media (max-width: 1024px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                padding: 60px 24px 50px;
            }
        }

        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 50px 20px 40px;
                text-align: center;
            }

            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-logo p {
                max-width: none;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-main {
                padding: 40px 16px 32px;
            }

            .footer-logo .logo {
                font-size: 28px;
            }

            .footer-bottom-content {
                padding: 20px 16px;
            }

            .footer-links {
                gap: 16px;
            }

            .footer-links a {
                font-size: 13px;
            }
        }


        /* Correção para o item com WhatsApp integrado */
        .skid-steer-item-whatsapp {
            background: var(--surface);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius);
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: stretch;
            /* Mudança aqui - faz os elementos preencherem toda a altura */
            padding: 0;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 160px;
            /* Define uma altura mínima */
        }

        .skid-steer-item-whatsapp::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: #5186e1;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .skid-steer-item-whatsapp:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-elevated);
            border-color: rgba(37, 211, 102, 0.2);
        }

        .skid-steer-item-whatsapp:hover::before {
            transform: scaleY(1);
        }

        /* Imagem do item */
        .skid-steer-item-whatsapp .item-image {
            width: 140px;
            height: 120px;
            margin: 20px 32px;
            /* Reduzido para melhor proporção */
            border-radius: var(--border-radius-sm);
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            align-self: center;
            /* Centraliza verticalmente */
        }

        .skid-steer-item-whatsapp .item-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .skid-steer-item-whatsapp:hover .item-image img {
            transform: scale(1.1);
        }

        /* Detalhes do item */
        .skid-steer-item-whatsapp .item-details {
            padding: 32px 24px 32px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            /* Centraliza o conteúdo verticalmente */
        }

        .skid-steer-item-whatsapp .item-details h3 {
            font-size: 24px;
            color: var(--primary-blue);
            font-weight: 600;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }

        .skid-steer-item-whatsapp .item-details p {
            color: var(--text-secondary);
            font-size: 16px;
            margin: 0;
        }

        /* Botão WhatsApp integrado - CORRIGIDO */
        .whatsapp-action {
            background: var(--gradient-whatsapp);
            color: #fff;
            text-decoration: none;
            padding: 0;
            margin: 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 220px;
            /* Define largura fixa */
            height: 100%;
            /* Preenche toda a altura disponível */
            position: relative;
            overflow: hidden;
        }

        .whatsapp-action::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .whatsapp-action:hover::before {
            opacity: 1;
        }

        .whatsapp-action:hover {
            transform: scale(1.02);
            box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .whatsapp-content {
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        .whatsapp-icon-large {
            width: 32px;
            height: 32px;
            background: currentColor;
            mask: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.6 14c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.6.8-.8 1-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.2-.5-.5-1-1.1-1.4-1.7-.1-.2 0-.4.1-.5.1-.1.2-.3.4-.4.1-.1.2-.3.2-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.3-.8-1.8-.1-.7-.3-.7-.5-.7h-.5c-.2 0-.5.1-.7.3-.7.7-1 1.6-1 2.5 0 .3.1.7.2 1 .7 2.8 2.5 4.8 5.2 5.6.7.2 1.4.3 2.1.3.4 0 .7 0 1.1-.1.7-.1 1.3-.3 1.7-.7.3-.3.5-.7.5-1.1 0-.2-.1-.3-.2-.4zM12 22C6.5 22 2 17.5 2 12S6.5 2 12 2s10 4.5 10 10-4.5 10-10 10zm0-2c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8z'/%3e%3c/svg%3e") no-repeat;
            mask-size: contain;
            flex-shrink: 0;
        }

        .whatsapp-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .whatsapp-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .whatsapp-subtitle {
            font-size: 14px;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .skid-steer-item-whatsapp {
                grid-template-columns: 1fr;
                text-align: center;
                min-height: auto;
            }

            .skid-steer-item-whatsapp .item-image {
                margin: 24px auto 0;
                width: 120px;
                height: 100px;
            }

            .skid-steer-item-whatsapp .item-details {
                padding: 24px 24px 0;
            }

            .whatsapp-action {
                border-radius: 0 0 var(--border-radius) var(--border-radius);
                width: 100%;
                height: 80px;
                margin-top: 24px;
            }

            .whatsapp-content {
                gap: 12px;
                padding: 15px;
            }

            .whatsapp-icon-large {
                width: 28px;
                height: 28px;
            }

            .whatsapp-title {
                font-size: 16px;
            }

            .whatsapp-subtitle {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .whatsapp-action {
                height: 70px;
            }

            .whatsapp-content {
                gap: 10px;
                padding: 12px;
            }

            .whatsapp-icon-large {
                width: 24px;
                height: 24px;
            }

            .whatsapp-title {
                font-size: 15px;
            }

            .whatsapp-subtitle {
                font-size: 12px;
            }
        }


        /* Cities Section - Versão com Ver Mais */
        .cities-section {
            position: relative;
            overflow: hidden;
        }

        .cities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(66, 122, 214, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .cities-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1;
        }

        .cities-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .cities-header h2 {
            font-size: 36px;
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            letter-spacing: -0.02em;
        }

        .cities-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .cities-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Cities Grid */
        .cities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .city-card {
            background: var(--surface);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius);
            padding: 32px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(0);
        }

        .city-card.hidden {
            display: none;
            opacity: 0;
            transform: translateY(20px);
        }

        .city-card.show {
            display: block;
            animation: slideIn 0.5s ease forwards;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .city-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .city-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-elevated);
            border-color: rgba(66, 122, 214, 0.2);
        }

        .city-card:hover::before {
            transform: scaleX(1);
        }

        .city-card.featured {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #2d4a75 100%);
            color: #fff;
            transform: scale(1.05);
        }

        .city-card.featured::before {
            background: var(--gradient-orange);
        }

        .city-card.featured h3,
        .city-card.featured p {
            color: #fff;
        }

        .city-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .city-icon {
            font-size: 48px;
            margin-bottom: 16px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .city-card h3 {
            font-size: 22px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .city-card p {
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 16px;
        }

        .city-badge {
            background: var(--gradient-orange);
            color: #fff;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Cities Actions - Botão Ver Mais */
        .cities-actions {
            text-align: center;
            margin-bottom: 64px;
        }

        .btn-show-more {
            background: var(--gradient-accent);
            color: #fff;
            border: none;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(66, 122, 214, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-show-more::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-show-more:hover::before {
            left: 100%;
        }

        .btn-show-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(66, 122, 214, 0.4);
        }

        .btn-icon {
            transition: transform 0.3s ease;
            font-size: 14px;
        }

        .btn-show-more.expanded .btn-icon {
            transform: rotate(180deg);
        }

        /* Coverage Info */
        .coverage-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 64px;
        }

        .coverage-card {
            background: var(--surface);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius);
            padding: 32px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .coverage-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-elevated);
        }

        .coverage-icon {
            font-size: 32px;
            width: 60px;
            height: 60px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
        }

        .coverage-text h4 {
            font-size: 20px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .coverage-text p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        /* Contact CTA */
        .contact-cta {
            background: var(--surface);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius);
            padding: 48px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(66, 122, 214, 0.02) 0%, rgba(255, 140, 0, 0.02) 100%);
            pointer-events: none;
        }

        .contact-cta h3 {
            font-size: 28px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .contact-cta p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-whatsapp-cta {
            background: var(--gradient-whatsapp);
            color: #fff;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        }

        .btn-whatsapp-cta .whatsapp-icon {
            width: 20px;
            height: 20px;
            background: currentColor;
            mask: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M16.6 14c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.2-.6.8-.8 1-.1.2-.3.2-.5.1-.7-.3-1.4-.7-2-1.2-.5-.5-1-1.1-1.4-1.7-.1-.2 0-.4.1-.5.1-.1.2-.3.4-.4.1-.1.2-.3.2-.4.1-.1.1-.3 0-.4-.1-.1-.6-1.3-.8-1.8-.1-.7-.3-.7-.5-.7h-.5c-.2 0-.5.1-.7.3-.7.7-1 1.6-1 2.5 0 .3.1.7.2 1 .7 2.8 2.5 4.8 5.2 5.6.7.2 1.4.3 2.1.3.4 0 .7 0 1.1-.1.7-.1 1.3-.3 1.7-.7.3-.3.5-.7.5-1.1 0-.2-.1-.3-.2-.4zM12 22C6.5 22 2 17.5 2 12S6.5 2 12 2s10 4.5 10 10-4.5 10-10 10zm0-2c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8z'/%3e%3c/svg%3e") no-repeat;
            mask-size: contain;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cities-section {
                padding: 60px 0;
            }

            .cities-container {
                padding: 0 20px;
            }

            .cities-header {
                margin-bottom: 48px;
            }

            .cities-header h2 {
                font-size: 28px;
            }

            .cities-header p {
                font-size: 16px;
            }

            .cities-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
                margin-bottom: 32px;
            }

            .city-card {
                padding: 24px;
            }

            .city-card.featured {
                transform: none;
            }

            .city-card.featured:hover {
                transform: translateY(-8px);
            }

            .cities-actions {
                margin-bottom: 48px;
            }

            .btn-show-more {
                padding: 14px 24px;
                font-size: 15px;
            }

            .coverage-info {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 48px;
            }

            .coverage-card {
                padding: 24px;
                flex-direction: column;
                text-align: center;
            }

            .coverage-icon {
                align-self: center;
            }

            .contact-cta {
                padding: 32px 24px;
            }

            .contact-cta h3 {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .cities-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .city-card {
                padding: 20px;
            }

            .coverage-card {
                padding: 20px;
            }

            .contact-cta {
                padding: 24px 16px;
            }

            .contact-cta h3 {
                font-size: 22px;
            }

            .btn-whatsapp-cta {
                padding: 14px 24px;
                font-size: 15px;
            }

            .btn-show-more {
                padding: 12px 20px;
                font-size: 14px;
            }
        }




        /* Services Grid */
        .services-main {
            padding-top: 50px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 32px;
            margin-bottom: 80px;
        }

        .service-card {
            background: var(--surface);
            border: 1px solid rgba(226, 232, 240, 0.8);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-elevated);
            border-color: rgba(66, 122, 214, 0.2);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-image {
            height: auto;
            /* Remove a altura fixa para se adaptar ao conteúdo */
            min-height: 200px;
            /* Define uma altura mínima para consistência */
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            display: flex;
            /* Adiciona flex para centralizar a imagem */
            align-items: center;
            justify-content: center;
        }

        .service-image img {
            width: 100%;
            height: auto;
            /* Permite que a altura da imagem se ajuste proporcionalmente */
            object-fit: contain;
            /* Garante que a imagem seja exibida completamente, sem cortes */
            transition: transform 0.4s ease;
            max-height: 220px;
            /* Limita a altura máxima para manter consistência */
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gradient-orange);
            color: #fff;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-content {
            padding: 32px;
        }

        .service-content h3 {
            font-size: 24px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .service-content p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 24px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 8px;
        }

        .service-features li::before {
            content: '✓';
            color: #25D366;
            font-weight: 600;
            font-size: 16px;
        }

        .service-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-service {
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }

        .btn-whatsapp {
            background: var(--gradient-whatsapp);
            color: #fff;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        }

        .btn-info {
            background: rgba(66, 122, 214, 0.1);
            color: var(--accent-blue);
            border: 2px solid var(--accent-blue);
        }

        .btn-info:hover {
            background: var(--accent-blue);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(66, 122, 214, 0.3);
        }

        /* Process Section */
        .process-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .process-header h2 {
            font-size: 36px;
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 16px;
            position: relative;
            letter-spacing: -0.02em;
        }

        .process-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .process-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .process-step {
            background: var(--surface);
            text-align: center;
            position: relative;
            border-radius: 10px;
            margin-bottom: 40px;
            padding: 20px;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            color: #fff;
            position: relative;
        }

        .step-number {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 32px;
            height: 32px;
            background: var(--gradient-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: #fff;
        }

        .process-step h3 {
            font-size: 22px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .process-step p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(66, 122, 214, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 24px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: clamp(28px, 4vw, 42px);
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta {
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--gradient-whatsapp);
            color: #fff;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-hero {
                padding: 100px 0 60px;
            }

            .services-main {
                padding: 60px 0;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin-bottom: 60px;
            }

            .service-card {
                margin: 0 auto;
                max-width: 400px;
            }

            .service-content {
                padding: 24px;
            }

            .process-section {
                padding: 60px 0;
            }

            .process-header {
                margin-bottom: 48px;
            }

            .process-steps {
                gap: 24px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-cta {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .services-container {
                padding: 0 16px;
            }

            .service-content {
                padding: 20px;
            }

            .service-actions {
                flex-direction: column;
            }

            .btn-service {
                justify-content: center;
            }

            .cta-content {
                padding: 0 16px;
            }
        }

        /* Estilos para listas de benefícios dos serviços */
        .item-details ul {
            list-style: none;
            padding: 0;
            margin: 16px 0 0 0;
        }

        .item-details ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 12px;
            padding: 8px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .item-details ul li:last-child {
            margin-bottom: 0;
        }

        .item-details ul li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: var(--gradient-whatsapp);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        }

        .item-details ul li:hover {
            color: var(--text-primary);
            padding-left: 8px;
        }

        .item-details ul li:hover::before {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
        }

        /* Variação alternativa com ícones diferentes */
        .item-details ul.benefits-alt li::before {
            content: '';
            background: var(--gradient-accent);
            mask: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3e%3c/svg%3e") no-repeat center;
            mask-size: 16px;
            -webkit-mask: url("data:image/svg+xml,%3csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3e%3c/svg%3e") no-repeat center;
            -webkit-mask-size: 16px;
        }

        /* Variação com numeração */
        .item-details ul.benefits-numbered {
            counter-reset: benefit-counter;
        }

        .item-details ul.benefits-numbered li {
            counter-increment: benefit-counter;
        }

        .item-details ul.benefits-numbered li::before {
            content: counter(benefit-counter);
            background: var(--gradient-orange);
            font-size: 12px;
            font-weight: 700;
        }

        /* Animação de entrada dos itens */
        .item-details ul li {
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInBenefit 0.5s ease forwards;
        }

        .item-details ul li:nth-child(1) {
            animation-delay: 0.1s;
        }

        .item-details ul li:nth-child(2) {
            animation-delay: 0.2s;
        }

        .item-details ul li:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes slideInBenefit {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsivo para mobile */
        @media (max-width: 768px) {
            .item-details ul li {
                font-size: 14px;
                gap: 10px;
                margin-bottom: 10px;
                padding: 6px 0;
            }

            .item-details ul li::before {
                width: 20px;
                height: 20px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .item-details ul li {
                font-size: 13px;
                gap: 8px;
                margin-bottom: 8px;
            }

            .item-details ul li::before {
                width: 18px;
                height: 18px;
                font-size: 11px;
            }
        }


        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 2000;
            align-items: flex-start;
            justify-content: center;
            padding: 16px;
            overflow-y: auto;
        }

        .modal-content {
            background: var(--surface-elevated);
            border-radius: var(--border-radius);
            max-width: 900px;
            width: 90%;
            max-height: 90vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            box-shadow: var(--shadow-elevated);
            position: relative;
            overflow-y: auto;
            animation: slideInModal 0.3s ease forwards;
            margin: 16px 0;
        }

        @keyframes slideInModal {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: #e53e3e;
            /* Fundo vermelho chamativo */
            color: #ffffff;
            /* Texto branco para contraste */
            font-size: 20px;
            font-weight: bold;
            border-radius: 50%;
            /* Formato circular */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            /* Sombra suave para destaque */
            z-index: 10;
        }

        .modal-close:hover {
            background: #c53030;
            /* Tom mais escuro no hover */
            transform: scale(1.1);
            /* Leve aumento para efeito visual */
        }

        .modal-image {
            height: auto;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .modal-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
            max-height: 350px;
            border-radius: var(--border-radius-sm);
            transition: transform 0.3s ease;
        }

        .modal-image:hover img {
            transform: scale(1.05);
        }

        .modal-details {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .modal-details h2 {
            font-size: 28px;
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .modal-details p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .modal-details .service-features {
            margin-bottom: 24px;
        }

        .modal-actions {
            display: flex;
            gap: 12px;
        }

        /* Responsive Modal */
        @media (max-width: 768px) {
            .modal {
                padding: 8px;
            }

            .modal-content {
                grid-template-columns: 1fr;
                max-width: 95%;
                max-height: 85vh;
                gap: 16px;
                margin: 8px 0;
            }

            .modal-image {
                height: auto;
                min-height: 150px;
            }

            .modal-image img {
                max-height: 200px;
            }

            .modal-details {
                padding: 16px;
            }

            .modal-details h2 {
                font-size: 24px;
            }

            .modal-details p {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .modal {
                padding: 4px;
            }

            .modal-content {
                width: 98%;
                max-height: 80vh;
                gap: 12px;
                margin: 4px 0;
            }

            .modal-image {
                min-height: 120px;
            }

            .modal-image img {
                max-height: 150px;
            }

            .modal-details {
                padding: 12px;
            }

            .modal-details h2 {
                font-size: 20px;
            }

            .modal-details p {
                font-size: 14px;
            }

            .modal-actions {
                flex-direction: column;
                align-items: center;
            }

            .modal-actions .btn-service {
                width: 100%;
                text-align: center;
            }

            .modal-close {
                width: 32px;
                height: 32px;
                font-size: 18px;
            }
        }


        /* Contact Section */
        .contact-section {
            padding: 64px 0;
        }




        .contact-header {
            text-align: center;
            margin-bottom: 48px;
        }


        .contact-header h2 {
            font-size: 36px;
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 48px;
            text-align: center;
            position: relative;
            letter-spacing: -0.02em;
        }


        .contact-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .contact-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            background: var(--gradient-primary);
            flex-direction: column;
            padding: 20px;
            gap: 24px;
            border-radius: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 16px;
            color: #ffffff;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            padding: 12px;
            font-size: 16px;
            color: var(--text-primary);
            background: var(--surface-elevated);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius-sm);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button.btn-service {
            align-self: center;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
        }

        /* Responsive Contact Form */
        @media (max-width: 768px) {
            .contact-section {
                padding: 48px 0;
            }

            .contact-header h2 {
                font-size: 28px;
            }

            .contact-header p {
                font-size: 16px;
            }

            .contact-form {
                max-width: 90%;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 32px 0;
            }

            .contact-header h2 {
                font-size: 24px;
            }

            .contact-header p {
                font-size: 14px;
            }

            .form-group label {
                font-size: 14px;
            }

            .form-group input,
            .form-group textarea {
                font-size: 14px;
                padding: 10px;
            }

            .contact-form button.btn-service {
                width: 100%;
                padding: 12px;
            }
        }




        .brands-section {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 24px 0;
            position: relative;
            z-index: 1;
        }

        .brands-ticker {
            background: white;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
            height: 100px;
            border-radius: var(--border-radius);
            margin: auto;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        /* Gradientes nas bordas para fade suave */
        .brands-ticker::before,
        .brands-ticker::after {
            background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
            content: "";
            height: 100px;
            position: absolute;
            width: 50px;
            z-index: 2;
        }

        .brands-ticker::after {
            right: 0;
            top: 0;
            transform: rotateZ(180deg);
        }

        .brands-ticker::before {
            left: 0;
            top: 0;
        }

        .brands-track {
            display: flex;
            width: calc(250px * 14);
            /* Ajuste o número conforme seus itens */
            animation: scroll 40s linear infinite;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 7));
                /* Metade dos itens */
            }
        }

        .brand-item {
            flex-shrink: 0;
            width: 250px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            gap: 80px;
            border-radius: 8px;
        }

        .brand-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }



        /* Privacy Policy Section */
        .privacy-section {
            padding: 64px 0;
        }

        .privacy-content-box {
            background: var(--surface-elevated);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-elevated);
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .privacy-content-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .privacy-content-box:hover::before {
            transform: scaleX(1);
        }

        .privacy-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .privacy-content h3 {
            font-size: 24px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
            position: relative;
        }

        .privacy-content h3::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient-orange);
            border-radius: 1px;
        }

        .privacy-content p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .privacy-content ul {
            list-style: none;
            padding: 0;
            margin: 0 0 16px 0;
        }

        .privacy-content ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 15px;
            margin-bottom: 12px;
            position: relative;
        }

        .privacy-content ul li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: var(--gradient-whatsapp);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .privacy-content .contact-item {
            margin-bottom: 12px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-section {
                padding: 48px 0;
            }

            .privacy-content-box {
                padding: 24px;
                max-width: 90%;
            }

            .privacy-content h3 {
                font-size: 20px;
            }

            .privacy-content p {
                font-size: 15px;
            }

            .privacy-content ul li {
                font-size: 14px;
                gap: 10px;
            }

            .privacy-content ul li::before {
                width: 18px;
                height: 18px;
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .privacy-section {
                padding: 32px 0;
            }

            .privacy-content-box {
                padding: 20px;
                max-width: 95%;
            }

            .privacy-content h3 {
                font-size: 18px;
            }

            .privacy-content p {
                font-size: 14px;
            }

            .privacy-content ul li {
                font-size: 13px;
                gap: 8px;
            }

            .privacy-content ul li::before {
                width: 16px;
                height: 16px;
                font-size: 10px;
            }
        }

        /* Cookie Consent Banner - Estilo discreto no topo */
        .cookie-consent-banner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: #1e5bc7;
            color: #ffffff;
            padding: 12px 20px;
            font-size: 14px;
            z-index: 10000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        .cookie-consent-banner.show {
            transform: translateY(0);
        }

        .cookie-consent-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cookie-text {
            font-weight: 400;
            line-height: 1.4;
            flex: 1;
            min-width: 200px;
        }

        .cookie-link {
            color: #ffffff;
            text-decoration: underline;
            font-weight: 500;
            transition: opacity 0.3s ease;
            white-space: nowrap;
        }

        .cookie-link:hover {
            opacity: 0.8;
        }

        .cookie-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .cookie-btn {
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-accept {
            background: #ffffff;
            color: #1e5bc7;
        }

        .cookie-accept:hover {
            background: #f5f5f5;
            transform: translateY(-1px);
        }

        .cookie-customize {
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        .cookie-customize:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffffff;
        }

        /* Ajuste do header quando o aviso de cookies está visível */
        body.cookie-notice-visible .header {
            top: 44px;
        }

        /* Cookie Modal - Mantém o mesmo estilo sofisticado */
        .cookie-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 10001;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .cookie-modal.show {
            display: flex;
        }

        .cookie-modal-content {
            background: #ffffff;
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            animation: slideInModal 0.3s ease;
        }

        @keyframes slideInModal {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 24px 16px;
            border-bottom: 1px solid #e2e8f0;
        }

        .cookie-modal-header h2 {
            font-size: 24px;
            color: var(--primary-blue);
            font-weight: 700;
            margin: 0;
        }

        .cookie-modal-close {
            background: #e53e3e;
            color: #ffffff;
            border: none;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .cookie-modal-close:hover {
            background: #c53030;
            transform: scale(1.1);
        }

        .cookie-modal-body {
            padding: 24px;
        }

        .cookie-category {
            margin-bottom: 24px;
            padding: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .cookie-category:hover {
            border-color: var(--accent-blue);
            box-shadow: 0 4px 12px rgba(66, 122, 214, 0.1);
        }

        .cookie-category-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .cookie-category-info h4 {
            font-size: 18px;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .cookie-category-info p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        /* Custom Switch */
        .cookie-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            flex-shrink: 0;
        }

        .cookie-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 24px;
        }

        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked+.cookie-slider {
            background-color: var(--accent-blue);
        }

        input:checked+.cookie-slider:before {
            transform: translateX(26px);
        }

        input:disabled+.cookie-slider {
            background-color: var(--accent-blue);
            cursor: not-allowed;
        }

        .cookie-modal-footer {
            padding: 16px 24px 24px;
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .btn-reject-modal {
            background: #dc3545;
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-reject-modal:hover {
            background: #c82333;
            transform: translateY(-2px);
        }

        .btn-save-custom {
            background: var(--gradient-accent);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-save-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(66, 122, 214, 0.4);
        }

        /* Responsive - Banner compacto em uma linha no mobile */
        @media (max-width: 768px) {
            .cookie-consent-banner {
                padding: 6px 10px;
                font-size: 11px;
            }

            .cookie-consent-content {
                flex-direction: row;
                /* Força uma linha */
                justify-content: space-between;
                align-items: center;
                gap: 4px;
                flex-wrap: nowrap;
                /* Não quebra linha */
            }

            .cookie-text {
                flex: 1;
                font-size: 10px;
                line-height: 1.2;
                min-width: unset;
            }

            .cookie-link {
                display: none;
                /* Remove o link no mobile para economizar espaço */
            }

            .cookie-actions {
                flex-shrink: 0;
                gap: 3px;
            }

            .cookie-btn {
                padding: 4px 8px;
                font-size: 9px;
                border-radius: 12px;
            }

            body.cookie-notice-visible .header {
                top: 28px;
                /* Muito discreto */
            }

            .cookie-modal-content {
                margin: 20px;
                max-height: 70vh;
            }

            .cookie-category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .cookie-modal-footer {
                flex-direction: column;
            }

            .btn-reject-modal,
            .btn-save-custom {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .cookie-consent-banner {
                padding: 5px 8px;
                font-size: 10px;
            }

            .cookie-text {
                font-size: 9px;
            }

            .cookie-btn {
                padding: 3px 6px;
                font-size: 12px;
            }

            body.cookie-notice-visible .header {
                top: 24px;
            }

            .cookie-modal-content {
                margin: 10px;
            }

            .cookie-modal-header,
            .cookie-modal-body,
            .cookie-modal-footer {
                padding: 16px;
            }
        }