        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy-blue: #1a365d;
            --deep-blue: #d69e2e;
            --gold: #d69e2e;
            --light-gold: #f6e05e;
            --cream: #fffbeb;
            --white: #ffffff;
            --gray-light: #f7fafc;
            --gray-dark: #4a5568;
            --text-dark: #2d3748;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
        }

        /* Header */
        header {
            background: rgba(26, 54, 93, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(26, 54, 93, 0.98);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--light-gold);
            text-decoration: none;
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

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

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section with Slider */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide:nth-child(1) {
             background-image: url('https://rnautica.com.br/struct/galeria/foto1.jpg');
            /* background: linear-gradient(rgba(26, 54, 93, 0.6), rgba(44, 82, 130, 0.4)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="water1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23065f46;stop-opacity:1" /><stop offset="50%" style="stop-color:%232563eb;stop-opacity:1" /><stop offset="100%" style="stop-color:%231e40af;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23water1)" width="1200" height="800"/><path fill="%23ffffff" fill-opacity="0.15" d="M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z"><animate attributeName="d" dur="8s" repeatCount="indefinite" values="M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z;M0,420 Q300,380 600,420 T1200,380 L1200,800 L0,800 Z;M0,400 Q300,350 600,400 T1200,400 L1200,800 L0,800 Z"/></path></svg>') center/cover; */
            
        }

        .hero-slide:nth-child(2) {
             background-image: url('https://rnautica.com.br/struct/galeria/foto2.jpg');
            /* background: linear-gradient(rgba(26, 54, 93, 0.6), rgba(44, 82, 130, 0.4)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="sunset" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23fbbf24;stop-opacity:1" /><stop offset="50%" style="stop-color:%23f59e0b;stop-opacity:1" /><stop offset="100%" style="stop-color:%23dc2626;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23sunset)" width="1200" height="800"/><circle cx="900" cy="200" r="80" fill="%23fef3c7" opacity="0.8"/><path fill="%23ffffff" fill-opacity="0.1" d="M0,500 Q400,450 800,500 T1200,480 L1200,800 L0,800 Z"/></svg>') center/cover; */
        }

        .hero-slide:nth-child(3) {
             background-image: url('https://rnautica.com.br/struct/galeria/foto9.jpg');
            /* background: linear-gradient(rgba(26, 54, 93, 0.6), rgba(44, 82, 130, 0.4)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="ocean" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2306b6d4;stop-opacity:1" /><stop offset="50%" style="stop-color:%230284c7;stop-opacity:1" /><stop offset="100%" style="stop-color:%231e40af;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23ocean)" width="1200" height="800"/><path fill="%23ffffff" fill-opacity="0.2" d="M0,300 Q200,250 400,300 Q600,350 800,300 Q1000,250 1200,300 L1200,800 L0,800 Z"><animate attributeName="d" dur="6s" repeatCount="indefinite" values="M0,300 Q200,250 400,300 Q600,350 800,300 Q1000,250 1200,300 L1200,800 L0,800 Z;M0,320 Q200,270 400,320 Q600,370 800,320 Q1000,270 1200,320 L1200,800 L0,800 Z;M0,300 Q200,250 400,300 Q600,350 800,300 Q1000,250 1200,300 L1200,800 L0,800 Z"/></path></svg>') center/cover; */
        }

        /* .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
			font-family: 'Parisienne', serif;
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
            color: #cebd88;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            color: var(--cream);
            animation: fadeInUp 1s ease-out 0.3s both;
			
        } */


        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
            text-align: center;
            color: white;
            background-color: rgba(10, 10, 10, 0.35); /* Cor de fundo mais sutil */
            border-radius: 12px;
            
            /* Efeito de vidro fosco */
            -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);

            /* Borda sutil opcional */
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-content h1 {
            font-family: 'Parisienne', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.1rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;
            color: #cebd88;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 2.1rem;
            color: var(--cream);
            animation: fadeInUp 1s ease-out 0.3s both;
        }


        .cta-button {
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            color: var(--navy-blue);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(214, 158, 46, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(214, 158, 46, 0.4);
        }



        /* Ocultar botões WhatsApp e Instagram em smartphones */
        @media screen and (max-width: 768px) {
            .whatsapp-button,
            .instagram-button {
                display: none !important;
            }
        }

        /* Alternativa mais específica para tablets menores */
        @media screen and (max-width: 480px) {
            .whatsapp-button,
            .instagram-button {
                display: none !important;
            }
        }

        /* Botão WhatsApp */
        .whatsapp-button {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #ffffff;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .whatsapp-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        }

        /* Botão Instagram */
        .instagram-button {
            background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
            color: #ffffff;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .instagram-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
        }

        /* Animação fadeInUp (caso não tenha no seu CSS) */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Slider Controls */
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .slider-dot.active {
            background: var(--light-gold);
            border-color: var(--gold);
            transform: scale(1.2);
        }

        .slider-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.3);
            padding: 1rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 3;
            user-select: none;
        }

        .slider-arrows:hover {
            background: rgba(0, 0, 0, 0.6);
            color: var(--light-gold);
        }

        .prev-arrow {
            left: 30px;
        }

        .next-arrow {
            right: 30px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Content */
        main {
            margin-top: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 3rem;
            font-weight: 600;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease-out;		
            margin-bottom: 1rem;
            color: var(--navy-blue);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--gray-dark);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* About Section */
        .about-section {
            background: var(--cream);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--navy-blue);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-image {
            /* height: 400px; */
            /* background: linear-gradient(45deg, var(--deep-blue), var(--navy-blue)); */
            /* border-radius: 15px; */
            display: flex;
            /* align-items: center; */
            /* justify-content: center; */
            /* font-size: 6rem; */
            /* color: var(--light-gold); */
            /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
        }

        .about-image img {
            max-width: 100%;
            height: auto;
            display: block; /* Remove espaços extras abaixo da imagem */
        }        

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            /* background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue)); */
            background: transparent;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-gold);
            font-size: 3rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item::after {
            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;
        }

        .gallery-item:hover::after {
            left: 100%;
        }

        /* Gallery Modal */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
        }

        .gallery-modal-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-slides-container {
            position: relative;
            width: 90%;
            max-width: 800px;
            height: 70vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0,0,0,0.5);
        }

        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: auto;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            /* background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue)); */
            background: transparent;
            font-size: 8rem;
            color: var(--light-gold);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-slide.active {
            opacity: 1;
        }

        .gallery-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 2001;
            transition: color 0.3s;
        }

        .gallery-close:hover {
            color: var(--gold);
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            padding: 1rem;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 2001;
            user-select: none;
        }

        .gallery-nav:hover {
            background: rgba(0, 0, 0, 0.8);
            color: var(--gold);
        }

        .gallery-prev {
            left: 20px;
        }

        .gallery-next {
            right: 20px;
        }

        .gallery-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 2001;
        }

        .gallery-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .gallery-dot.active {
            background: var(--gold);
            border-color: var(--light-gold);
            transform: scale(1.3);
        }

        /* Boats Grid */
        .boats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .boat-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }

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

        .boat-image {
            height: 250px;
            background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-gold);
            font-size: 4rem;
            position: relative;
        }

        .boat-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--gold);
            color: var(--navy-blue);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .boat-details {
            padding: 2rem;
        }

        .boat-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--navy-blue);
        }

        .boat-type {
            color: var(--gray-dark);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .boat-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            color: var(--gray-dark);
        }

        .boat-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            text-align: center;
            margin-top: 1.5rem;
        }

        .price-period {
            font-size: 0.9rem;
            color: var(--gray-dark);
            font-weight: 400;
        }

        /* Plans Section */
        .plans-section {
            background: var(--gray-light);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .plan-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .plan-card.featured {
            border-color: var(--gold);
            transform: scale(1.05);
            background: linear-gradient(135deg, var(--cream), white);
        }

        .plan-card.featured::before {
            content: "MAIS POPULAR";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            color: var(--navy-blue);
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(214, 158, 46, 0.3);
        }

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }

        .plan-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--navy-blue);
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.5rem;
        }

        .plan-features {
            list-style: none;
            margin: 2.5rem 0;
            text-align: left;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 1rem;
        }

        .plan-features li:before {
            content: "⚓ ";
            color: var(--gold);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 54, 93, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: white;
            margin: 3% auto;
            padding: 3rem;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }

        .close {
            color: var(--gray-dark);
            float: right;
            font-size: 32px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close:hover {
            color: var(--navy-blue);
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--navy-blue);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(214, 158, 46, 0.1);
        }

        /* Footer */
        footer {
            background: var(--navy-blue);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            color: var(--light-gold);
            margin-bottom: 1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            margin-top: 2rem;
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed !important;
            bottom: 30px !important;
            right: 30px !important;
            width: 65px !important;
            height: 65px !important;
            background: linear-gradient(135deg, #25d366, #128c7e) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
            z-index: 9999 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            text-decoration: none !important;
            animation: whatsappPulse 2s infinite !important;
            border: 3px solid white !important;
        }

        .whatsapp-float:hover {
            transform: scale(1.15) !important;
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5) !important;
        }

        /* .whatsapp-float::before {
            content: "" !important;
            font-size: 32px !important;
            animation: bounce 1s ease-in-out infinite alternate !important;
        } */
        .whatsapp-float::before {
            content: "" !important; /* Mantenha o content vazio para o pseudo-elemento ser renderizado */
            background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/whatsapp.svg') !important;
            background-size: contain !important; /* Garante que a imagem se ajuste ao tamanho do elemento */
            background-repeat: no-repeat !important; /* Evita a repetição da imagem */
            width: 32px !important; /* Defina o tamanho do seu ícone */
            height: 32px !important; /* Defina o tamanho do seu ícone */
            display: inline-block !important; /* Permite que o elemento tenha dimensões */
            animation: bounce 1s ease-in-out infinite alternate !important;
        }

        .whatsapp-tooltip {
            position: absolute !important;
            right: 80px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: var(--navy-blue) !important;
            color: white !important;
            padding: 10px 16px !important;
            border-radius: 25px !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            white-space: nowrap !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
            border: 2px solid var(--gold) !important;
        }

        .whatsapp-tooltip::after {
            content: '' !important;
            position: absolute !important;
            right: -8px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            width: 0 !important;
            height: 0 !important;
            border-left: 8px solid var(--navy-blue) !important;
            border-top: 8px solid transparent !important;
            border-bottom: 8px solid transparent !important;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1 !important;
            visibility: visible !important;
        }

        @keyframes whatsappPulse {
            0% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.15);
            }
            100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            }
        }

        @keyframes bounce {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-3px);
            }
        }

        /* Instagram Button */
        .instagram-float {
            position: fixed !important;
            bottom: 110px !important; /* Posicionado acima do WhatsApp */
            right: 18px !important;
            width: 65px !important;
            height: 65px !important;
            background: linear-gradient(135deg, #E1306C, #C13584, #833AB4) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4) !important;
            z-index: 9999 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            text-decoration: none !important;
            animation: instagramPulse 2s infinite !important;
            border: 3px solid white !important;
        }

        .instagram-float:hover {
            transform: scale(1.15) !important;
            box-shadow: 0 15px 40px rgba(225, 48, 108, 0.5) !important;
        }

        .instagram-float::before {
            content: "" !important;
            background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v9/icons/instagram.svg') !important;
            background-size: contain !important;
            background-repeat: no-repeat !important;
            width: 32px !important;
            height: 32px !important;
            display: inline-block !important;
            animation: bounce 1s ease-in-out infinite alternate !important;
        }

        .instagram-tooltip {
            position: absolute !important;
            right: 80px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            background: var(--navy-blue) !important;
            color: white !important;
            padding: 10px 16px !important;
            border-radius: 25px !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            white-space: nowrap !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
            border: 2px solid var(--gold) !important;
        }

        .instagram-tooltip::after {
            content: '' !important;
            position: absolute !important;
            right: -8px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            width: 0 !important;
            height: 0 !important;
            border-left: 8px solid var(--navy-blue) !important;
            border-top: 8px solid transparent !important;
            border-bottom: 8px solid transparent !important;
        }

        .instagram-float:hover .instagram-tooltip {
            opacity: 1 !important;
            visibility: visible !important;
        }

        @keyframes instagramPulse {
            0% {
                box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
            }
            50% {
                box-shadow: 0 10px 30px rgba(225, 48, 108, 0.6), 0 0 0 15px rgba(225, 48, 108, 0.15);
            }
            100% {
                box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
            }
        }

        /* Animação bounce (compartilhada com WhatsApp) */
        @keyframes bounce {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-3px);
            }
        }






        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: linear-gradient(135deg, var(--navy-blue), var(--deep-blue));
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 3rem;
                transform: translateX(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s ease;
                z-index: 1000;
            }

            .nav-links.active {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links li {
                transform: translateX(-50px);
                opacity: 0;
                transition: all 0.3s ease;
            }

            .nav-links.active li {
                transform: translateX(0);
                opacity: 1;
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
            .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

            .nav-links a {
                font-size: 1.5rem;
                font-weight: 600;
                padding: 1rem 2rem;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background: rgba(255, 255, 255, 0.1);
                color: var(--light-gold);
                transform: scale(1.05);
            }

            .hero-content h1 {
                font-size: 2.0rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .boats-grid {
                grid-template-columns: 1fr;
            }

            .plans-grid {
                grid-template-columns: 1fr;
            }

            .plan-card.featured {
                transform: none;
                margin-top: 1rem;
            }

            .section {
                padding: 3rem 0;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .slider-arrows {
                display: none;
            }

            .gallery-nav {
                font-size: 2rem;
                padding: 0.8rem;
            }

            .gallery-prev {
                left: 10px;
            }

            .gallery-next {
                right: 10px;
            }

            .modal-content {
                margin: 5% auto;
                padding: 2rem;
                width: 95%;
            }

            .whatsapp-float {
                bottom: 20px !important;
                right: 20px !important;
                width: 60px !important;
                height: 60px !important;
            }
            
            .whatsapp-float::before {
                font-size: 28px !important;
            }
            
            .whatsapp-tooltip {
                display: none !important;
            }
        }

        /* Tablet responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .container {
                padding: 0 1.5rem;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }

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

            .plans-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* INICIO SC CARD */

        
        .SC_section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .SC_section-title {
            text-align: center;
            color: var(--navy-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .SC_section-subtitle {
            text-align: center;
            color: #b8c5d1;
            font-size: 1.1rem;
            margin-bottom: 50px;
            color: var(--navy-blue);

        }

        .SC_boats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .SC_boat-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .SC_boat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .SC_gallery-container {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .SC_gallery-main {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .SC_gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .SC_gallery-image.SC_active {
            opacity: 1;
        }

        .SC_gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color:white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .SC_gallery-nav:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .SC_gallery-prev {
            left: 15px;
        }

        .SC_gallery-next {
            right: 15px;
        }

        .SC_gallery-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .SC_gallery-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .SC_gallery-dot.SC_active {
            background: #fff;
            transform: scale(1.2);
        }

        .SC_boat-badge {
            position: absolute;
            top: 15px;
            right: 15px;
             background:rgba(0, 0, 0, 0.5);
            /* background: linear-gradient(45deg, #ff6b6b, #ff8e53); */
            color: #1a365d;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }

        .SC_boat-badge.SC_exclusive {
            background: linear-gradient(45deg, #667eea, #764ba2);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .SC_boat-info {
            padding: 25px;
            color: #1a365d;
        }

        .SC_boat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .SC_boat-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            /* background: linear-gradient(135deg, #fff, #b8c5d1); */
            background: linear-gradient(174deg, #d69e2e, #1a365d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .SC_boat-type {
            color: #d69e2e;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .SC_boat-price {
            text-align: right;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .SC_price-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #d69e2e;
            text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
        }

        .SC_price-period {
            color: #d69e2e;
            font-size: 0.9rem;
        }

        .SC_boat-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .SC_spec-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 15px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .SC_spec-label {
            color: #d69e2e;
            font-size: 0.8rem;
            margin-bottom: 2px;
        }

        .SC_spec-value {
            color: #1a365d;
            font-weight: 600;
        }

        .SC_boat-features {
            margin-bottom: 20px;
        }

        .SC_features-title {
            color: #1a365d;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .SC_features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .SC_feature-tag {
            background: linear-gradient(135deg, var(--cream), white);
            color: var(--navy-blue);
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid var(--deep-blue);
        }

        .SC_boat-description {
            color: #b8c5d1;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .SC_book-button {
            width: 100%;
            background: linear-gradient(135deg, #d69e2e, #f6e05e);
            color: #1a365d;
            border: none;
            padding: 15px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
        }

        .SC_book-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4);
            background: linear-gradient(135deg, #f6e05e, #0891b2);
        }

        @media (max-width: 768px) {
            .SC_boats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .SC_section-title {
                font-size: 2rem;
            }
            
            .SC_gallery-container {
                height: 250px;
            }
        }

        /* FIM do SC CARD*/