
        :root {
            --primary-color: #2D3142;
            --secondary-color: #EF8354;
            --gradient-bg: linear-gradient(135deg, #2D3142 0%, #4F5D75 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Estilização da barra de rolagem */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 10px;
            border: 3px solid #f1f1f1;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #e67243;
        }

        /* Firefox */
        * {
            scrollbar-width: thin;
            scrollbar-color: var(--secondary-color) #f1f1f1;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--primary-color);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo img {
            height: auto;
            width: 150px;
        }

        .nav-list {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-list a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-list a:hover,
        .nav-list a.active {
            color: var(--secondary-color);
        }

        .cta-button {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #FF8A00;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-2px);
        }

        .hero {
            height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            color: white;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .hero-cta {
            display: inline-block;
            background: #FF8A00;
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 1024px) {
            .nav-list {
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-list {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }

        .services {
            padding: 100px 0;
            background: #fff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            aspect-ratio: 3/4;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            background: #fff;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .service-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-content {
            position: absolute;
            inset: 0;
            padding: 25px;
            background: linear-gradient(to bottom, 
                rgba(0,0,0,0) 0%,
                rgba(0,0,0,0.7) 50%,
                rgba(0,0,0,0.9) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .service-content h2 {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            line-height: 1.3;
        }

        .service-content p {
            color: rgba(255,255,255,0.9);
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .service-btn {
            display: inline-block;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            padding: 10px 20px;
            border: 2px solid white;
            border-radius: 50px;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
        }

        .service-btn:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .service-content {
                padding: 20px;
            }

            .service-content h2 {
                font-size: 1.3rem;
            }
        }

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

            .service-content {
                padding: 25px;
            }

            .service-content h2 {
                font-size: 1.4rem;
            }

            .service-content p {
                font-size: 0.95rem;
            }

            .service-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
        }

        .about-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-content {
            padding-right: 40px;
        }

        .about-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }

        .about-hashtag {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 30px;
            letter-spacing: 1px;
        }

        .about-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a4a4a;
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-top: 40px;
            padding: 16px 32px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .about-cta:hover {
            transform: translateX(10px);
            background: #000;
        }

        .about-cta svg {
            transition: transform 0.3s ease;
        }

        .about-cta:hover svg {
            transform: translateX(5px);
        }

        .about-image {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            aspect-ratio: 4/3;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 1024px) {
            .about-section {
                padding: 80px 0;
            }

            .about-title {
                font-size: 2.8rem;
            }

            .about-text p {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-content {
                padding-right: 0;
            }

            .about-title {
                font-size: 2.5rem;
            }

            .about-hashtag {
                font-size: 1.1rem;
            }
        }

        .calendar-section {
            padding: 120px 0;
            background: #fff;
            overflow: hidden;
        }

        .calendar-title {
            font-size: 3.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .calendar-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 60px;
        }

        .expedition-carousel {
            display: flex;
            gap: 30px;
            padding: 20px;
            margin: 0 0px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .expedition-carousel::-webkit-scrollbar {
            display: none;
        }

        .expedition-card {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 380px;
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            scroll-snap-align: start;
        }

        .expedition-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .expedition-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .expedition-card:hover img {
            transform: scale(1.05);
        }

        .expedition-content {
            padding: 30px;
        }

        .expedition-tag {
            display: inline-block;
            padding: 6px 12px;
            background: var(--secondary-color);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 30px;
            margin-bottom: 16px;
        }

        .expedition-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--primary-color);
        }

        .expedition-date {
            font-size: 1rem;
            color: #666;
            margin-bottom: 16px;
        }

        .expedition-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #4a4a4a;
            margin-bottom: 24px;
        }

        .expedition-btn {
            display: inline-block;
            padding: 12px 24px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .expedition-btn:hover {
            background: #000;
            transform: translateY(-2px);
        }

        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-btn {
            width: 48px;
            height: 48px;
            border: none;
            border-radius: 50%;
            background: #f8f9fa;
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: var(--primary-color);
            color: white;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ddd;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-color);
            width: 24px;
            border-radius: 4px;
        }

        @media (max-width: 1024px) {
            .expedition-card {
                flex: 0 0 calc(50% - 35px);
                min-width: 300px;
               
            }
        }

        @media (max-width: 768px) {
            .calendar-title {
                font-size: 2.5rem;
            }

            .expedition-card {
                flex: 0 0 calc(100% - 30px);
                min-width: 280px;
            }

            .expedition-content {
                padding: 20px;
            }
        }

        .video-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
            color: white;
        }

        .video-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, #999 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .video-subtitle {
            font-size: 1.2rem;
            color: #999;
        }

        .video-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .video-featured {
            position: relative;
        }

        .video-player {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: #000;
        }

        .video-player iframe {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-player:hover .video-overlay {
            opacity: 1;
        }

        .play-btn {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: rgba(255,255,255,0.3);
        }

        .video-featured h3 {
            font-size: 1.8rem;
            margin: 20px 0 10px;
        }

        .video-featured p {
            color: #999;
            font-size: 1.1rem;
        }

        .video-playlist {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .playlist-item {
            display: flex;
            gap: 15px;
            padding: 15px;
            border-radius: 15px;
            background: rgba(255,255,255,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .playlist-item:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(10px);
        }

        .thumbnail {
            position: relative;
            width: 180px;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 16/9;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            padding: 4px 8px;
            background: rgba(0,0,0,0.8);
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .video-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .video-info h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .video-info p {
            color: #999;
            font-size: 0.9rem;
        }

        .channel-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 40px;
            padding: 16px 32px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .channel-link:hover {
            background: #fff;
            color: var(--primary-color);
            transform: translateX(10px);
        }

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

            .video-title {
                font-size: 2.8rem;
            }

            .playlist-item {
                padding: 12px;
            }

            .thumbnail {
                width: 140px;
            }
        }

        @media (max-width: 768px) {
            .video-section {
                padding: 80px 0;
            }

            .video-title {
                font-size: 2.5rem;
            }

            .video-featured h3 {
                font-size: 1.5rem;
            }

            .playlist-item {
                flex-direction: column;
            }

            .thumbnail {
                width: 100%;
            }
        }

        .differentials {
            padding: 120px 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(248,249,250,0.97) 100%),
                        url('https://images.unsplash.com/photo-1558981806-ec527fa84c39?w=2000&q=80') center/cover fixed;
            position: relative;
            overflow: hidden;
        }

        .differentials-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .diff-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .diff-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .differentials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .differential-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 30px;
            background: rgba(255,255,255,0.9);
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .differential-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .diff-icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .diff-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .diff-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
        }

        @media (max-width: 1024px) {
            .differentials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .differentials {
                padding: 80px 0;
            }

            .diff-title {
                font-size: 2.5rem;
            }

            .differentials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        .faq-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #111 0%, #000 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .faq-tag {
            display: inline-block;
            padding: 8px 24px;
            background: var(--primary-color);
            color: white;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .faq-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, #ff6b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .faq-subtitle {
            font-size: 1.2rem;
            color: #999;
            max-width: 600px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-item {
            background: rgba(255,255,255,0.05);
            border-radius: 16px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255,255,255,0.08);
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px;
            border: none;
            background: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
        }

        .faq-icon {
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            display: none;
            padding: 0 24px 24px;
            color: #999;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        @media (max-width: 1024px) {
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 80px 0;
            }

            .faq-title {
                font-size: 2.5rem;
            }

            .faq-question {
                font-size: 1rem;
                padding: 20px;
            }
        }

        .newsletter {
            padding: 120px 0;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #fff 0%, #ff6b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .newsletter p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #ccc;
        }

        .newsletter-form {
            position: relative;
        }

        .input-group {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }

        .input-group input {
            flex: 1;
            padding: 16px 24px;
            border: none;
            border-radius: 50px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            backdrop-filter: blur(10px);
        }

        .input-group input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .input-group button {
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            background: var(--primary-color);
            color: white;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .input-group button:hover {
            background: #fff;
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer {
            background: linear-gradient(135deg, #ff6b00 0%, #8B4513 100%);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-position: bottom center;
            background-repeat: no-repeat;
            background-size: cover;
            opacity: 0.15;
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            height: auto;
            width: 200px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.9);
            margin: 20px 0;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-link {
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: #111;
            transform: translateY(-3px);
        }

        .footer-links h3,
        .footer-contact h3,
        .footer-whatsapp h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #111;
            transform: translateX(5px);
        }

        .footer-contact p {
            color: rgba(255,255,255,0.9);
            line-height: 1.6;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            margin-top: 16px;
            transition: all 0.3s ease;
        }

        .contact-link:hover {
            color: #111;
        }

        .qr-code {
            margin: 20px 0;
            border-radius: 12px;
            background: white;
            padding: 10px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #25D366;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p,
        .footer-credits {
            color: rgba(255,255,255,0.9);
        }

        .footer-credits:hover {
            color: #111;
        }

        @media (max-width: 768px) {
            .footer-bottom {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .newsletter {
                padding: 80px 0;
            }

            .newsletter h2 {
                font-size: 2.5rem;
            }

            .input-group {
                flex-direction: column;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        .instagram-feed {
            padding: 120px 0;
            background: #111;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .instagram-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .instagram-tag {
            display: inline-block;
            padding: 8px 24px;
            background: var(--primary-color);
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 50px;
            margin-bottom: 20px;
        }

        .instagram-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, #ff6b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .instagram-subtitle {
            font-size: 1.2rem;
            color: #999;
            max-width: 600px;
            margin: 0 auto;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1px;
            max-width: 1200px;
            margin: 0 auto;
            background: #222;
        }

        .instagram-item {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }

        .instagram-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .instagram-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .instagram-item:hover::after {
            opacity: 1;
        }

        .instagram-follow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
            padding: 16px 32px;
            background: #E1306C;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .instagram-follow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(225, 48, 108, 0.2);
        }

        .instagram-icon {
            transition: transform 0.3s ease;
        }

        .instagram-follow:hover .instagram-icon {
            transform: rotate(15deg);
        }

        @media (max-width: 1024px) {
            .instagram-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .instagram-feed {
                padding: 80px 0;
            }

            .instagram-title {
                font-size: 2.5rem;
            }

            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    