        /* Variáveis CSS - Paleta Melhorada */
        :root {
            --primary-color: #15803d;
            --primary-dark: #14532d;
            --primary-light: #22c55e;
            --secondary-color: #059669;
            --accent-color: #f59e0b;
            --dark-color: #111827;
            --dark-secondary: #1f2937;
            --light-color: #f9fafb;
            --gray-color: #6b7280;
            --gray-light: #e5e7eb;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --white-color: #ffffff;
            --gradient-primary: linear-gradient(135deg, #15803d 0%, #059669 100%);
            --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --border-radius-sm: 0.25rem;
            --border-radius: 0.5rem;
            --border-radius-md: 0.75rem;
            --border-radius-lg: 1rem;
            --border-radius-xl: 1.5rem;
            --border-radius-full: 9999px;
        }

        /* Reset e Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            height: 100%;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-color);
            background-color: var(--light-color);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 6rem 0;
            flex: 1;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--dark-color);
            position: relative;
            line-height: 1.2;
        }

        .section-title span {
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }

        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background-color: rgba(34, 197, 94, 0.2);
            z-index: -1;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            max-width: 700px;
            margin: -2rem auto 3rem;
            color: var(--gray-color);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            color: var(--white-color);
            border: none;
            border-radius: var(--border-radius-lg);
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-transform: uppercase;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-xl);
            color: var(--white-color);
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white-color);
        }

        .btn-secondary {
            background: var(--gradient-secondary);
        }

        .btn-icon {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .btn:hover .btn-icon {
            transform: translateX(4px);
        }

        /* Header e Navegação */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .header.scrolled {
            padding: 0.5rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 0.75rem;
            transition: var(--transition);
        }

        .header.scrolled .logo img {
            height: 40px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .header.scrolled .logo-text {
            font-size: 1.3rem;
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            margin-right: 2rem;
        }

        .nav-item {
            margin: 0 1rem;
        }

        .nav-link {
            font-weight: 500;
            font-size: 1rem;
            color: var(--dark-color);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--dark-color);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* Hero Section - Melhorado */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--gradient-primary);
            color: var(--white-color);
            overflow: hidden;
            padding: 8rem 0 6rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('images/og-image.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: -1;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 0 1.5rem;
            z-index: 1;
            position: relative;
        }

        .hero-logo {
            width: 180px;
            margin: 0 auto 2rem;
            filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            font-weight: 400;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .hero-shape {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            z-index: 2;
        }

        /* Carrossel Styles - CORRIGIDO */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 400px;
            margin: 2rem auto;
            overflow: hidden;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            background: var(--white-color);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s ease-in-out;
            transform: translateX(100%);
        }

        .carousel-slide.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .carousel-slide.prev {
            transform: translateX(-100%);
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .carousel-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .carousel-dot:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.1);
        }

        .carousel-dot.active {
            background-color: var(--white-color);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* Navegação do carrossel */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: var(--transition);
            z-index: 10;
        }

        .carousel-nav:hover {
            background: var(--white-color);
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-md);
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        /* Sobre Nós */
        .about {
            background-color: var(--white-color);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.05);
            z-index: 0;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(132, 204, 22, 0.05);
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: auto;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            border: 3px solid var(--primary-color);
            border-radius: var(--border-radius-lg);
            z-index: -1;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 50%;
            z-index: -1;
        }

        .about-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            line-height: 1.2;
        }

        .about-title span {
            color: var(--primary-color);
        }

        .about-description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--gray-color);
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .about-feature i {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .about-feature span {
            font-weight: 500;
            color: var(--dark-color);
        }

        /* Serviços */
        .services {
            background: linear-gradient(135deg, var(--light-color) 0%, rgba(34, 197, 94, 0.05) 100%);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white-color);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(22, 163, 74, 0.1) 0%, rgba(132, 204, 22, 0.1) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .service-image::after {
            opacity: 1;
        }

        .service-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
            line-height: 1.3;
        }

        .service-description {
            color: var(--gray-color);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            transition: var(--transition);
            margin-top: auto;
        }

        .service-link:hover {
            color: var(--primary-dark);
            transform: translateX(4px);
        }

        .service-link i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .service-link:hover i {
            transform: translateX(4px);
        }

        /* Portfólio */
        .portfolio {
            background-color: var(--white-color);
            position: relative;
            overflow: hidden;
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .portfolio-filter {
            padding: 0.75rem 1.5rem;
            background: transparent;
            border: 2px solid var(--gray-light);
            border-radius: var(--border-radius-full);
            color: var(--gray-color);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .portfolio-filter.active,
        .portfolio-filter:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--white-color);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 300px;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(22, 163, 74, 0.9), rgba(132, 204, 22, 0.8));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: var(--transition);
            padding: 2rem;
            text-align: center;
            color: var(--white-color);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .portfolio-category {
            font-size: 1rem;
            font-weight: 400;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
        }

        .portfolio-item:hover .portfolio-title,
        .portfolio-item:hover .portfolio-category {
            transform: translateY(0);
        }

        /* Depoimentos */
        .testimonials {
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 1;
            z-index: 0;
        }

        .testimonial-slider {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-item {
            background-color: var(--white-color);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-item::before {
            content: '"';
            position: absolute;
            top: 1.25rem;
            left: 1.25rem;
            font-size: 5rem;
            font-family: 'Georgia', serif;
            color: rgba(34, 197, 94, 0.1);
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 1.05rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--dark-secondary);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: var(--border-radius-full);
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid var(--primary-light);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-info {
            display: flex;
            flex-direction: column;
        }

        .testimonial-name {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark-color);
        }

        .testimonial-position {
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .testimonial-rating {
            display: flex;
            margin-top: 0.5rem;
        }

        .testimonial-rating i {
            color: var(--warning-color);
            margin-right: 0.2rem;
        }

        /* YouTube Section */
        .youtube-section {
            text-align: center;
            padding: 3rem 0;
            background-color: var(--light-color);
            border-radius: var(--border-radius-lg);
            margin: 3rem 0;
            position: relative;
            z-index: 1;
        }

        .youtube-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .youtube-section p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--gray-color);
        }

        .youtube-section .btn {
            background-color: #ff0000;
        }

        .youtube-section .btn:hover {
            background-color: #cc0000;
        }

        /* Contato */
        .contact {
            background-color: var(--white-color);
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(34, 197, 94, 0.05);
            z-index: 0;
        }

        .contact::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(132, 204, 22, 0.05);
            z-index: 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            padding-right: 2rem;
        }

        .contact-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            position: relative;
            padding-bottom: 0.75rem;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            border-radius: var(--border-radius-full);
        }

        .contact-text {
            margin-bottom: 2rem;
            font-size: 1.05rem;
            color: var(--gray-color);
        }

        .contact-details {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background-color: rgba(34, 197, 94, 0.1);
            border-radius: var(--border-radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-item-text {
            display: flex;
            flex-direction: column;
        }

        .contact-item-text strong {
            margin-bottom: 0.25rem;
            color: var(--dark-color);
            font-weight: 600;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: var(--border-radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white-color);
            transition: var(--transition);
            font-size: 1rem;
        }

        .social-link:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            color: var(--white-color);
        }

        .contact-form {
            background-color: var(--white-color);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-light);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--gray-light);
            border-radius: var(--border-radius);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background-color: var(--light-color);
        }

        .form-control:focus {
            border-color: var(--primary-light);
            outline: none;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .form-button {
            width: 100%;
            padding: 1rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .form-button i {
            margin-left: 0.5rem;
        }

        .map {
            height: 450px;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            border: 5px solid var(--white-color);
            position: relative;
            z-index: 1;
        }

        .map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            padding: 5rem 0 0;
            position: relative;
            margin-top: auto;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-about {
            grid-column: span 1;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
            color: var(--white-color);
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-light);
            border-radius: var(--border-radius-full);
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            color: var(--gray-light);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .footer-links ul li a:hover {
            color: var(--primary-light);
            padding-left: 5px;
        }

        .footer-links ul li a i {
            margin-right: 0.5rem;
            font-size: 0.75rem;
        }

        .footer-contact ul li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .footer-contact-icon {
            margin-right: 0.75rem;
            color: var(--primary-light);
        }

        .newsletter-form {
            display: flex;
            margin-top: 1.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.875rem 1rem;
            border: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
        }

        .newsletter-button {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            padding: 0 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .newsletter-button:hover {
            background-color: var(--primary-dark);
        }

        .footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 1.5rem 0;
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-light);
        }

        /* Botão Voltar ao Topo */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: var(--border-radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            color: var(--white-color);
        }

        /* WhatsApp Flutuante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: var(--white-color);
            border-radius: var(--border-radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            font-size: 1.5rem;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            color: var(--white-color);
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-info {
                padding-right: 0;
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .portfolio-filters {
                flex-wrap: wrap;
                gap: 0.5rem;
            }

            .portfolio-filter {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .carousel-container {
                height: 300px;
                margin: 1rem;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .carousel-nav.prev {
                left: 10px;
            }

            .carousel-nav.next {
                right: 10px;
            }

            .nav-list {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-slider {
                grid-template-columns: 1fr;
            }

            .map {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .carousel-container {
                height: 250px;
            }

            .testimonial-item {
                padding: 2rem 1.5rem;
            }

            .contact-form {
                padding: 2rem 1.5rem;
            }
        }
    .style1 {color: #00FF00}
    </style>
