:root {
    --primary-color: #0093E9;
    --primary-gradient: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
    --secondary-color: #00d2ff;
    --accent-color: #ff6b6b;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #edf2f7;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 40px rgba(0, 147, 233, 0.1);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

/* Scroll Animation Styles */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

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

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

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.top-header {
    background-color: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color); /* Fallback */
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: var(--bg-light);
}

.lang-btn img, .lang-dropdown img {
    border-radius: 50% !important;
    width: 22px !important;
    height: 22px !important;
    object-fit: cover !important;
    display: inline-block !important;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border-radius: 12px !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    min-width: 180px !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 9999 !important;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.lang-dropdown a:hover {
    background: var(--bg-light);
}

.divider {
    width: 1px;
    height: 20px;
    background-color: var(--border-color);
}

.whatsapp-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-weight: 700;
    transition: var(--transition-fast);
}

.whatsapp-contact:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.cart-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Nav */
.main-nav {
    background-color: var(--bg-white);
    padding: 15px 0;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.main-nav a.active {
    color: var(--text-dark);
    font-weight: 600;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    transition: opacity 0.8s ease-in-out, transform 10s ease-out;
    image-rendering: -webkit-optimize-contrast; /* Melhora nitidez no PC */
    filter: saturate(1.1) contrast(1.05); /* Cores mais vibrantes */
}

.hero-bg-1 {
    background-image: url('images/praia_dos_carneiros_bg.jpg');
    animation: slowZoom 20s infinite alternate;
}

.hero-bg-2 {
    background-image: url('images/ilha_santo_aleixo.jpg');
    z-index: -2;
    animation: fadeInOutZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

@keyframes fadeInOutZoom {
    0%, 35% { opacity: 0; transform: scale(1.15); }
    65%, 100% { opacity: 1; transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.magic-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: rotateMagic 30s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotateMagic {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--bg-white);
    margin-bottom: 50px;
    padding: 0 20px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    opacity: 0.9;
}

/* Search Section */
.search-section {
    position: relative;
    z-index: 2;
    padding: 0;
    background: transparent;
    transform: translateY(30px);
}

.search-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    padding: 8px 8px 8px 30px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-premium);
    gap: 15px;
    transition: var(--transition-fast);
}

.search-bar:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 147, 233, 0.25);
}

.search-input, .destination-input {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.icon-blue {
    color: var(--primary-color);
    font-size: 20px;
}

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

.input-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.input-group input, .input-group select {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    width: 100%;
    background: transparent;
    cursor: pointer;
}

.divider-vertical {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

.btn-location {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
    transition: var(--transition);
}

.btn-location:hover {
    color: var(--primary-color);
}

.btn-search {
    background: var(--primary-gradient);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14px 35px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 147, 233, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 147, 233, 0.4);
}

/* Features */
.features {
    padding: 20px 0 40px;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}

.feature-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Activities */
.activities {
    padding: 20px 0 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.activity-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.activity-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    z-index: 1;
}

.next-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.date-label {
    font-size: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.date-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-features {
    margin-bottom: 20px;
    flex: 1;
}

.card-features li {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.card-features li i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.card-price {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Splash Screen Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    text-align: center;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-content h2 {
    font-size: 24px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #ffb800;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.user-info strong {
    display: block;
    color: var(--text-dark);
}

.user-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Footer */
.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 20px;
}

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

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a0aec0;
    margin-bottom: 25px;
    max-width: 300px;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a0aec0;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
}

/* Responsive Extra */
@media (max-width: 768px) {
    .testimonial-grid, .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: var(--transition-fast);
}

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

/* Social Sidebar */
.social-sidebar {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10001 !important; /* Acima de quase tudo */
}

.social-sidebar a {
    width: 120px;
    height: 30px;
    background: #ffffff !important;
    color: #0093E9 !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    transition: var(--transition-fast);
    border: 1px solid #0093E9 !important;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    text-decoration: none;
    margin-bottom: 5px;
}

.social-sidebar a i {
    min-width: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.insta-tag {
    font-size: 11px;
    font-weight: 700;
    margin-left: 5px;
    opacity: 1;
    transform: translateX(0);
}

.social-sidebar a.wa-contract {
    background: #25D366 !important;
    color: #ffffff !important;
    border: 1px solid #128C7E !important;
    width: 130px !important;
    margin-bottom: 10px;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.social-sidebar a.wa-contract i,
.social-sidebar a.wa-contract span {
    color: #ffffff !important;
}

.social-sidebar a.wa-contract:hover {
    background: #128C7E !important;
    transform: scale(1.05) translateX(5px);
}

.social-sidebar a.insta-color {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #ffffff !important;
    border: none !important;
}

.social-sidebar a.highlight {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(214, 36, 159, 0.6) !important;
    animation: pulseHighlight 2s infinite;
}

@keyframes pulseHighlight {
    0% { transform: scale(1.05); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1.05); }
}

/* Destaque Maneiro Section com Neon */
.activity-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
    padding: 20px 0 !important;
}

.activity-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 300px !important;
}
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-gallery, .btn-hire {
    flex: 1;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-gallery {
    background: #f0f4f8;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

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

.btn-hire {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-hire:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}
/* Neon Badge Effect for Official Seller */
.badge-neon {
    background: #ff0080 !important;
    color: #fff !important;
    text-shadow: 0 0 5px #fff, 0 0 10px #ff0080, 0 0 20px #ff0080 !important;
    box-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080 !important;
    animation: neon-pulse 1.5s infinite alternate !important;
    font-weight: 800 !important;
    border: 1px solid #fff !important;
}

@keyframes neon-pulse {
    from {
        box-shadow: 0 0 10px #ff0080, 0 0 20px #ff0080;
        transform: scale(1);
    }
    to {
        box-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
        transform: scale(1.05);
    }
}

.activity-card:hover {
    transform: translateY(-20px) scale(1.05) !important;
    /* Luz de Neon Azul */
    box-shadow: 0 0 15px rgba(0, 147, 233, 0.3), 
                0 0 30px rgba(0, 147, 233, 0.2), 
                0 0 45px rgba(0, 147, 233, 0.1) !important;
    border: 2px solid var(--primary-color) !important;
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FF512F, #DD2476) !important;
    color: white !important;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(221, 36, 118, 0.4);
    animation: pulseBadge 2s infinite;
    z-index: 2;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(221, 36, 118, 0); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(221, 36, 118, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(221, 36, 118, 0); }
}

