/* Basic Reset & Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-color: #fb8b04; /* Dark Teal */
    --secondary-color: #080504; /* Peach */
    --accent-color: #bc640a; /* Golden Yellow */
    --dark-color: #080504; /* Dark Gray */
    --light-color: #f8f8f8; /* Off-White */
    --text-color: #333; /* Darker Gray for text */
    --light-text-color: #7e3804;
    --white: #ffffff;
    --black: #080504;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xxs: 0.25rem; /* 4px */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 2rem;     /* 32px */
    --spacing-lg: 3rem;     /* 48px */
    --spacing-xl: 4rem;     /* 64px */
    --spacing-xxl: 6rem;    /* 96px */

    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;

    /* Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    gap: var(--spacing-xxs);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1rem;
}

.btn-small {
    padding: var(--spacing-xxs) var(--spacing-sm);
    font-size: 0.8rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-text-color);
    line-height: 1.7;
}

.highlight {
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: var(--spacing-xs) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--spacing-sm);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo-img {
    height: 50px; /* Adjust as needed */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: var(--spacing-xs) 0;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition-normal);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows interaction with elements behind particles */
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.hero-buttons .btn {
    border-color: var(--white);
}

.hero-buttons .btn-outline {
    color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xxs);
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(10px) rotate(45deg);
    }
    60% {
        transform: translateY(5px) rotate(45deg);
    }
}

/* About Section */
.about {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    align-items: center;
    justify-content: center;
}

.about-image {
    flex: 1 1 400px;
    position: relative;
    padding: var(--spacing-md);
}

.about-image .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.about-image .image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.7;
    animation: rotateScale 10s infinite alternate ease-in-out;
}

@keyframes rotateScale {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.05); }
}

.about-text {
    flex: 2 1 500px;
}

.about-story h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.about-story .story-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
}

.about-story p {
    color: var(--light-text-color);
    margin-bottom: var(--spacing-sm);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xxs);
    color: var(--dark-color);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin: 0;
}

/* Services Section */
.services {
    padding: var(--spacing-xxl) 0;
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.services .section-title,
.services .section-subtitle,
.services .section-description {
    color: var(--white);
}

.services .highlight {
    color: var(--secondary-color);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-elements .floating-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.floating-elements .floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.floating-elements .floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation-delay: 5s;
}
.floating-elements .floating-element:nth-child(3) {
    width: 120px;
    height: 120px;
    bottom: 5%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(20px) translateX(10px) rotate(5deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: var(--spacing-xxs) var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    color: var(--light-text-color);
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.service-features {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xxs);
    color: var(--text-color);
    font-size: 0.9rem;
}

.service-features li .fas {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.service-hover {
    margin-top: var(--spacing-md);
}

/* Destinations Section */
.destinations {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.destinations-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-sm);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.destination-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

.destination-content {
    padding: var(--spacing-md);
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.destination-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark-color);
}

.destination-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xxs);
    color: var(--accent-color);
    font-size: 0.9rem;
}

.destination-rating span {
    color: var(--light-text-color);
    font-weight: 500;
}

.destination-description {
    font-size: 0.95rem;
    color: var(--light-text-color);
    margin-bottom: var(--spacing-md);
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.feature-tag {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding: var(--spacing-xxs) var(--spacing-xs);
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials .highlight {
    color: var(--dark-color);
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.testimonials-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%239C92AC" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zm0 60v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM0 34v-4h-2v4H0v2h4v4h2v-4h4v-2H0zm0-30V0h-2v4H0v2h4v4h2V6h4V4H0zm0 60v-4h-2v4H0v2h4v4h2v-4h4v-2H0zM24 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zm0 60v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM48 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zm0 60v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    background-size: 60px 60px;
    opacity: 0.1;
    animation: panPattern 60s linear infinite;
}

@keyframes panPattern {
    from { background-position: 0 0; }
    to { background-position: 600px 600px; }
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 350px; /* Adjust based on content */
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--dark-color);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: static;
    pointer-events: all;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.testimonial-text {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.testimonial-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-color);
    margin-top: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.author-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--dark-color);
}

.author-info span {
    display: block;
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin-bottom: var(--spacing-xxs);
}

.author-rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.testimonial-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.testimonials-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background-color: var(--secondary-color);
    width: 12px;
    height: 12px;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--dark-color);
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: var(--spacing-xxs);
}

.contact-details span {
    font-size: 0.9rem;
    color: var(--light-text-color);
}

.contact-social h4 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
    transition: var(--transition-normal);
}

.social-link .fab, .social-link .fas {
    font-size: 1.2rem;
}

.social-link.whatsapp {
    background-color: #e6683c;
    color: var(--white);
}

.social-link.whatsapp:hover {
    background-color: #f09433;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link.instagram:hover {
    opacity: 0.9;
}

.social-link.email {
    background-color: var(--primary-color);
    color: var(--white);
}

.social-link.email:hover {
    background-color: var(--dark-color);
}

.contact-form-wrapper {
    flex: 2 1 600px;
    background-color: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form .form-row {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.contact-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-xs);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: var(--border-radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(44, 111, 102, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding-top: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-sm);
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
}

.footer-social a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    flex: 2 1 600px; /* Allow links to take more space */
    justify-content: space-around;
}

.footer-column {
    flex: 1 1 180px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-column ul li .fas, .footer-column ul li .fab {
    margin-right: var(--spacing-xs);
    color: var(--primary-color);
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    flex: 1 1 auto;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    flex: 0 0 auto;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgba(44, 111, 102, 0.1); /* Lighter primary color */
    transform: skewY(-2deg);
    transform-origin: bottom right;
    z-index: 0;
}

.decoration-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: pulse 10s infinite ease-in-out;
}

.decoration-element:nth-child(1) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation-delay: 0s;
}

.decoration-element:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: 20%;
    animation-delay: 3s;
}

.decoration-element:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: -70px;
    right: -20px;
    animation-delay: 6s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.05; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background-color: #f09433;
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    gap: var(--spacing-xs);
}

.whatsapp-btn:hover {
    background-color: #1DA851;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.whatsapp-btn .fab {
    font-size: 1.5rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg); /* Positioning on the left side */
    background-color: var(--primary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md) 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-item {
        text-align: center;
        padding: var(--spacing-xs) 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .hamburger {
        display: flex;
    }

    .nav-actions .btn {
        display: none; /* Hide Plan Travel button on small screens */
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-buttons .btn {
        width: 80%;
        margin: 0 auto;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        padding: 0; /* Remove padding for image on smaller screens */
    }

    .about-image img {
        height: 300px;
    }

    .about-text {
        width: 100%;
        text-align: center;
    }

    .about-story h3 {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--spacing-md);
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .testimonials-slider {
        padding: var(--spacing-md);
    }

    .testimonial-text p {
        font-size: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: var(--spacing-md);
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-brand {
        width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
    }

    .footer-column {
        flex: 1 1 100%; /* Make columns stack */
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .whatsapp-float, .back-to-top {
        bottom: var(--spacing-md);
        right: var(--spacing-md);
        left: unset; /* Reset left positioning */
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .destination-header h3 {
        font-size: 1.1rem;
    }

    .destination-price {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-xs);
    }

    .contact-icon {
        margin-bottom: var(--spacing-xs);
    }

    .contact-social .social-links {
        justify-content: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .whatsapp-btn {
        font-size: 0.9rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .whatsapp-btn .fab {
        font-size: 1.2rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    text-align: center; /* Centraliza o texto */
    max-width: 800px; /* Largura máxima */
    margin: 0 auto; /* Centraliza o container */
}

.logo-img-hero {
    max-width: 250px; /* Largura máxima da logo */
    height: auto; /* Mantém a proporção */
    margin-bottom: 30px; /* Espaço abaixo da logo */
    border-radius: 15px; /* Cantos arredondados */
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3); /* Sombra estilo tech */
    transition: all 0.4s ease; /* Transição suave */
    border: 3px solid var(--primary-orange); /* Borda laranja */
    transform: perspective(1000px) rotateX(-10deg); /* Efeito 3D sutil */
    display: block; /* Garante centralização */
    margin-left: auto; /* Centraliza */
    margin-right: auto; /* Centraliza */
}

.logo-img-hero:hover {
    transform: scale(1.05) rotate(2deg); /* Efeito hover */
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.5); /* Sombra aumentada */
}

/* Versão responsiva */
@media (max-width: 768px) {
    .logo-img-hero {
        max-width: 200px; /* Tamanho menor em telas menores */
        margin-bottom: 20px;
    }

    .hero-text {
        padding: 0 15px; /* Padding para dispositivos móveis */
    }
}
/* About Section - Redesigned */
.about {
    padding: 120px 0;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient();
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.5;
    }
}

.about .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.about .section-title {
    color: var(--light-text-color);
    font-size: 3rem;
    margin-bottom: 20px;
}

.about .section-title .highlight {
    color: var(--primary-color);
}

.about .section-description {
    color: var(--accent-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-showcase {
    position: relative;
    z-index: 2;
}

.image-spotlight {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.spotlight-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
    z-index: 1;
}

.spotlight-ring::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spotlight-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 139, 4, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.image-container {
    position: relative;
    z-index: 3;
}

.image-frame {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(8, 5, 4, 0.4);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    padding: 8px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s ease;
}

.image-frame:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(251, 139, 4, 0.3) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.founders-badge {
    background: rgba(248, 248, 248, 0.95);
    padding: 15px 25px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(8, 5, 4, 0.3);
    border: 2px solid var(--primary-color);
}

.founders-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.founders-badge span {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(248, 248, 248, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(8, 5, 4, 0.3);
    border: 2px solid var(--primary-color);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-icon:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 0;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 25%;
    right: 0;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    bottom: 25%;
    left: 0;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 25%;
    left: 0;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(248, 248, 248, 0.95);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(8, 5, 4, 0.3);
    border: 2px solid rgba(251, 139, 4, 0.2);
        transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 139, 4, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(8, 5, 4, 0.4);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: rgba(248, 248, 248, 0.95);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(8, 5, 4, 0.4);
    border: 2px solid rgba(251, 139, 4, 0.3);
    backdrop-filter: blur(20px);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(251, 139, 4, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-content h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--light-text-color);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    min-width: 180px;
    transition: all 0.4s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 139, 4, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about .section-title {
        font-size: 2.5rem;
    }
    
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .spotlight-ring {
        width: 400px;
        height: 400px;
    }
    
    .spotlight-glow {
        width: 500px;
        height: 500px;
    }
    
    .image-frame {
        width: 300px;
        height: 300px;
    }
    
    .floating-elements {
        width: 400px;
        height: 400px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about .section-title {
        font-size: 2rem;
    }
    
    .about .section-description {
        font-size: 1.1rem;
    }
    
    .stats-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .spotlight-ring {
        width: 320px;
        height: 320px;
    }
    
    .spotlight-glow {
        width: 400px;
        height: 400px;
    }
    
    .image-frame {
        width: 250px;
        height: 250px;
    }
    
    .floating-elements {
        width: 320px;
        height: 320px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-icon i {
        font-size: 1rem;
    }
    
    .cta-content {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 0;
    }
    
    .about .section-header {
        margin-bottom: 50px;
    }
    
    .about .section-title {
        font-size: 1.8rem;
    }
    
    .spotlight-ring {
        width: 280px;
        height: 280px;
    }
    
    .spotlight-glow {
        width: 350px;
        height: 350px;
    }
    
    .image-frame {
        width: 200px;
        height: 200px;
        border-width: 3px;
        padding: 5px;
    }
    
    .floating-elements {
        width: 280px;
        height: 280px;
    }
    
    .floating-icon {
        width: 35px;
        height: 35px;
        border-width: 1px;
    }
    
    .floating-icon i {
        font-size: 0.9rem;
    }
    
    .founders-badge {
        padding: 10px 15px;
    }
    
    .founders-badge span {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        opacity: 0.5;
    }
    
    .shape-1 {
        width: 120px;
        height: 120px;
    }
    
    .shape-2 {
        width: 100px;
        height: 100px;
    }
    
    .shape-3 {
        width: 80px;
        height: 80px;
    }
    
    .shape-4 {
        width: 90px;
        height: 90px;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animações quando a seção entra em vista */
.about.animate .section-header {
    animation: fadeInUp 0.8s ease-out;
}

.about.animate .image-frame {
    animation: fadeInScale 1s ease-out 0.3s both;
}

.about.animate .stat-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.about.animate .stat-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.about.animate .stat-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.9s both;
}

.about.animate .stat-card:nth-child(4) {
    animation: fadeInUp 0.6s ease-out 1.1s both;
}

.about.animate .cta-content {
    animation: fadeInUp 0.8s ease-out 1.3s both;
}


/* Airlines Partners Section - Adjusted Colors */
.airlines-partners {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color));
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.airlines-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 139, 4, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(188, 100, 10, 0.3) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.airlines-partners .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.airlines-partners .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
}

.airlines-partners .section-title {
    color: var(--accent-color);
}

.airlines-partners .section-title .highlight {
    color: var(--primary-color);
}

.airlines-partners .section-description {
    color: var(--accent-color);
}

.airlines-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.airlines-stack {
    position: relative;
    height: 500px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.airline-card {
    position: absolute;
    width: 350px;
    height: 220px;
    background: linear-gradient(145deg, var(--white), var(--light-color));
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(8, 5, 4, 0.3);
    cursor: pointer;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center center;
    border: 2px solid rgba(251, 139, 4, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.airline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(251, 139, 4, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.airline-card:hover::before {
    transform: translateX(100%);
}

/* Card Positioning - mantém as mesmas posições */
.airline-card[data-index="0"] {
    z-index: 6;
    transform: translateX(0) translateY(0) rotateY(0deg) rotateX(0deg);
    opacity: 1;
}

.airline-card[data-index="1"] {
    z-index: 5;
    transform: translateX(15px) translateY(20px) rotateY(5deg) rotateX(2deg);
    opacity: 0.9;
}

.airline-card[data-index="2"] {
    z-index: 4;
    transform: translateX(30px) translateY(40px) rotateY(10deg) rotateX(4deg);
    opacity: 0.8;
}

.airline-card[data-index="3"] {
    z-index: 3;
    transform: translateX(45px) translateY(60px) rotateY(15deg) rotateX(6deg);
    opacity: 0.7;
}

.airline-card[data-index="4"] {
    z-index: 2;
    transform: translateX(60px) translateY(80px) rotateY(20deg) rotateX(8deg);
    opacity: 0.6;
}

.airline-card[data-index="5"] {
    z-index: 1;
    transform: translateX(75px) translateY(100px) rotateY(25deg) rotateX(10deg);
    opacity: 0.5;
}

/* Active card highlight */
.airline-card.active {
    box-shadow: 0 20px 60px rgba(251, 139, 4, 0.4);
    border-color: var(--primary-color);
}

.card-content {
    padding: 35px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.card-content img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(50%);
    transition: all 0.4s ease;
}

.airline-card.active .card-content img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}

.airline-card.active .card-content h3 {
    color: var(--accent-color);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.route-count {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(251, 139, 4, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(251, 139, 4, 0.2);
}

.rating {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.airlines-info {
    background: rgba(248, 248, 248, 0.98);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(8, 5, 4, 0.3);
    border: 1px solid rgba(251, 139, 4, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    min-height: 500px;
}

.airline-detail {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 120px;
}

.airline-detail.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.airline-detail h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.airline-detail p {
    color: var(--light-text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.airline-detail ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.airline-detail ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(251, 139, 4, 0.1);
}

.airline-detail ul li:last-child {
    border-bottom: none;
}

.airline-detail ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.scroll-progress {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(251, 139, 4, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
    transition: width 0.6s ease;
    width: 16.66%;
}

.progress-text {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
    min-width: 40px;
}

.navigation-hint {
    position: absolute;
    bottom: 10px;
    left: 40px;
    right: 40px;
    text-align: center;
}

.navigation-hint p {
    color: var(--light-text-color);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.navigation-hint i {
    margin-right: 8px;
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease;
    color: var(--white);
}

.scroll-indicator.show {
    opacity: 1;
}

.indicator-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.indicator-arrow {
    animation: bounce 2s infinite;
}

.indicator-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Card exit animations */
.airline-card.exit-left {
    transform: translateX(-500px) translateY(-100px) rotateY(-45deg) rotateZ(-15deg) !important;
    opacity: 0 !important;
    z-index: 0 !important;
}

.airline-card.exit-right {
    transform: translateX(500px) translateY(-100px) rotateY(45deg) rotateZ(15deg) !important;
    opacity: 0 !important;
    z-index: 0 !important;
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
    .airlines-container {
        grid-template-columns: 1fr;
        gap: 0;
        position: relative;
    }
    
    .airlines-info {
        position: relative;
        margin-top: 0;
        padding-top: 80px; /* Espaço para o selo */
    }
    
    .airlines-stack {
        position: absolute;
        top: -40px;
        right: 20px;
        height: 120px;
        width: 200px;
        z-index: 10;
        perspective: 800px;
    }
    
    .airline-card {
        width: 180px;
        height: 100px;
        position: absolute;
        top: 0;
        right: 0;
    }
    
    /* Posicionamento das cartas como selo */
    .airline-card[data-index="0"] {
        z-index: 6;
        transform: translateX(0) translateY(0) rotateY(0deg) rotateZ(-5deg);
        opacity: 1;
    }

    .airline-card[data-index="1"] {
        z-index: 5;
        transform: translateX(5px) translateY(3px) rotateY(2deg) rotateZ(-3deg);
        opacity: 0.9;
    }

    .airline-card[data-index="2"] {
        z-index: 4;
        transform: translateX(10px) translateY(6px) rotateY(4deg) rotateZ(-1deg);
        opacity: 0.8;
    }

    .airline-card[data-index="3"] {
        z-index: 3;
        transform: translateX(15px) translateY(9px) rotateY(6deg) rotateZ(1deg);
        opacity: 0.7;
    }

    .airline-card[data-index="4"] {
        z-index: 2;
        transform: translateX(20px) translateY(12px) rotateY(8deg) rotateZ(3deg);
        opacity: 0.6;
    }

    .airline-card[data-index="5"] {
        z-index: 1;
        transform: translateX(25px) translateY(15px) rotateY(10deg) rotateZ(5deg);
        opacity: 0.5;
    }
    
    /* Selo ativo com destaque */
    .airline-card.active {
        box-shadow: 0 10px 30px rgba(251, 139, 4, 0.6);
        border: 3px solid var(--primary-color);
        transform: translateX(-5px) translateY(-5px) rotateY(0deg) rotateZ(-8deg) scale(1.05) !important;
    }
}

@media (max-width: 768px) {
    .airlines-partners {
        padding: 60px 0;
    }
    
    .airlines-container {
        position: relative;
    }
    
    .airlines-info {
        padding: 100px 20px 30px 20px;
        margin: 0 10px;
        border-radius: 20px;
    }
    
    .airlines-stack {
        position: absolute;
        top: -30px;
        right: 15px;
        height: 90px;
        width: 150px;
        z-index: 10;
    }
    
    .airline-card {
        width: 140px;
        height: 80px;
        border-radius: 15px;
    }
    
    /* Posicionamento mobile - selo menor */
    .airline-card[data-index="0"] {
        transform: translateX(0) translateY(0) rotateZ(-8deg);
        opacity: 1;
    }

    .airline-card[data-index="1"] {
        transform: translateX(3px) translateY(2px) rotateZ(-6deg);
        opacity: 0.9;
    }

    .airline-card[data-index="2"] {
        transform: translateX(6px) translateY(4px) rotateZ(-4deg);
        opacity: 0.8;
    }

    .airline-card[data-index="3"] {
        transform: translateX(9px) translateY(6px) rotateZ(-2deg);
        opacity: 0.7;
    }

    .airline-card[data-index="4"] {
        transform: translateX(12px) translateY(8px) rotateZ(0deg);
        opacity: 0.6;
    }

    .airline-card[data-index="5"] {
        transform: translateX(15px) translateY(10px) rotateZ(2deg);
        opacity: 0.5;
    }
    
    .airline-card.active {
        transform: translateX(-3px) translateY(-3px) rotateZ(-10deg) scale(1.1) !important;
        box-shadow: 0 8px 25px rgba(251, 139, 4, 0.7);
    }
    
    .card-content {
        padding: 15px 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 8px;
    }
    
    .card-content img {
        width: 40px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .card-info {
        flex: 1;
        min-width: 0;
    }
    
    .card-content h3 {
        font-size: 0.8rem;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .card-content p {
        display: none; /* Oculta descrição no selo mobile */
    }
    
    .card-details {
        display: none; /* Oculta detalhes no selo mobile */
    }
    
    .airline-detail h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .airline-detail p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .airline-detail ul li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .scroll-progress {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .navigation-hint {
        bottom: 5px;
        left: 20px;
        right: 20px;
    }
    
    .navigation-hint p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .airlines-info {
        padding: 90px 15px 25px 15px;
        margin: 0 5px;
    }
    
    .airlines-stack {
        top: -25px;
        right: 10px;
        height: 70px;
        width: 120px;
    }
    
    .airline-card {
        width: 110px;
        height: 60px;
        border-radius: 12px;
    }
    
    /* Posicionamento mobile pequeno */
    .airline-card[data-index="0"] {
        transform: translateX(0) translateY(0) rotateZ(-10deg);
    }

    .airline-card[data-index="1"] {
        transform: translateX(2px) translateY(1px) rotateZ(-8deg);
    }

    .airline-card[data-index="2"] {
        transform: translateX(4px) translateY(2px) rotateZ(-6deg);
    }

    .airline-card[data-index="3"] {
        transform: translateX(6px) translateY(3px) rotateZ(-4deg);
    }

    .airline-card[data-index="4"] {
        transform: translateX(8px) translateY(4px) rotateZ(-2deg);
    }

    .airline-card[data-index="5"] {
        transform: translateX(10px) translateY(5px) rotateZ(0deg);
    }
    
    .airline-card.active {
        transform: translateX(-2px) translateY(-2px) rotateZ(-12deg) scale(1.15) !important;
    }
    
    .card-content {
        padding: 8px 6px;
        gap: 5px;
    }
    
    .card-content img {
        width: 30px;
        height: 15px;
    }
    
    .card-content h3 {
        font-size: 0.7rem;
    }
    
    .airline-detail h3 {
        font-size: 1.2rem;
    }
    
    .airline-detail p {
        font-size: 0.9rem;
    }
    
    .airline-detail ul li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .airline-detail ul li i {
        font-size: 0.9rem;
        width: 16px;
    }
}

/* Animações específicas para o selo */
@media (max-width: 1200px) {
    .airline-card.exit-left {
        transform: translateX(-200px) translateY(-50px) rotateZ(-45deg) scale(0.5) !important;
        opacity: 0 !important;
    }
    
    .airline-card.exit-right {
        transform: translateX(200px) translateY(-50px) rotateZ(45deg) scale(0.5) !important;
        opacity: 0 !important;
    }
    
    /* Efeito de selo colado */
    .airline-card::after {
        content: '';
        position: absolute;
        bottom: -5px;
        right: -5px;
        width: 15px;
        height: 15px;
        background: radial-gradient(circle, rgba(251, 139, 4, 0.3) 0%, transparent 70%);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(8, 5, 4, 0.3);
    }
    
    .airline-card.active::after {
        background: radial-gradient(circle, rgba(251, 139, 4, 0.6) 0%, transparent 70%);
        box-shadow: 0 3px 12px rgba(251, 139, 4, 0.4);
    }
}

/* Ajuste do layout da informação para acomodar o selo */
@media (max-width: 1200px) {
    .airline-detail {
        padding-top: 20px;
    }
    
    .airline-detail.active {
        animation: slideInFromSeal 0.6s ease-out;
    }
    
    @keyframes slideInFromSeal {
        from {
            opacity: 0;
            transform: translateX(50px) translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }
    }
}

/* Indicador visual de que é um selo interativo */
@media (max-width: 1200px) {
    .airlines-stack::before {
        content: '';
        position: absolute;
        top: -10px;
        right: -10px;
        left: -10px;
        bottom: -10px;
        border: 2px dashed rgba(251, 139, 4, 0.3);
        border-radius: 15px;
        animation: sealPulse 3s ease-in-out infinite;
    }
    
    @keyframes sealPulse {
        0%, 100% { 
            opacity: 0.3;
            transform: scale(1);
        }
        50% { 
            opacity: 0.6;
            transform: scale(1.02);
        }
    }
}
/* Image Container - Enhanced and Centered */
.image-spotlight {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    min-height: 600px;
}

.spotlight-ring {
    position: absolute;
    width: 700px;
    height: 700px;
    border: 4px solid rgba(251, 139, 4, 0.4);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
    z-index: 1;
}

.spotlight-ring::before {
    content: '\f207';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -15px;
    right: 30%;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    
}

.spotlight-ring::after {
    content: '\f072'; /* Font Awesome plane icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -28px;
    right: 30%;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: white;
    transition: all 0.3s ease;
}

.image-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-inner-frame {
    position: relative;
    width: 650px;
    height: 650px;
    overflow: hidden;
    background: linear-gradient(95deg, var(--primary-color), var(--accent-color));
    padding: 10px;
    transition: all 0.6s ease;
}

.image-inner-frame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 6px rgba(251, 139, 4, 0.5),
        0 40px 100px rgba(8, 5, 4, 0.6),
        inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.6s ease;
    filter: brightness(1.05) contrast(1.1);
}

.image-inner-frame:hover .main-image {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.15);
}

.decorative-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(251, 139, 4, 0.4);
    border-radius: 50%;
    animation: rotateBorder 20s linear infinite reverse;
}

.decorative-border-2 {
    position: absolute;
    top: -35px;
    left: -35px;
    right: -35px;
    bottom: -35px;
    border: 1px solid rgba(188, 100, 10, 0.3);
    border-radius: 50%;
    animation: rotateBorder 25s linear infinite;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(251, 139, 4, 0.2) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.image-inner-frame:hover .image-overlay {
    opacity: 1;
}

.founders-badge {
    background: rgba(248, 248, 248, 0.98);
    padding: 20px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(8, 5, 4, 0.4);
    border: 3px solid var(--primary-color);
    backdrop-filter: blur(10px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-overlay:hover .founders-badge {
    transform: scale(1);
}

.founders-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: crownGlow 2s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(251, 139, 4, 0.5); }
    50% { text-shadow: 0 0 15px rgba(251, 139, 4, 0.8); }
}

.founders-badge span {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(248, 248, 248, 0.98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(8, 5, 4, 0.3);
    border: 3px solid var(--primary-color);
    animation: floatIcon 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.floating-icon:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

/* Posicionamento dos ícones flutuantes */
.floating-icon:nth-child(1) {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 15%;
    right: -40px;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 15%;
    right: -40px;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

.floating-icon:nth-child(5) {
    bottom: 15%;
    left: -40px;
    animation-delay: 4s;
}

.floating-icon:nth-child(6) {
    top: 15%;
    left: -40px;
    animation-delay: 5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) scale(1);
        box-shadow: 0 15px 40px rgba(8, 5, 4, 0.3);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        box-shadow: 0 25px 50px rgba(8, 5, 4, 0.4);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .spotlight-ring {
        width: 600px;
        height: 600px;
    }
    
    .spotlight-glow {
        width: 700px;
        height: 700px;
    }
    
    .image-frame {
        width: 420px;
        height: 420px;
    }
    
    .image-inner-frame {
        width: 380px;
        height: 380px;
    }
    
    .floating-elements {
        width: 600px;
        height: 600px;
    }
    
    .floating-icon {
        width: 70px;
        height: 70px;
    }
    
    .floating-icon i {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .image-spotlight {
        min-height: 500px;
        margin-bottom: 60px;
    }
    
    .spotlight-ring {
        width: 450px;
        height: 450px;
        border-width: 3px;
    }
    
    .spotlight-glow {
        width: 550px;
        height: 550px;
    }
    
    .image-frame {
        width: 350px;
        height: 350px;
    }
    
    .image-inner-frame {
        width: 320px;
        height: 320px;
        border-width: 5px;
        padding: 8px;
    }
    
    .floating-elements {
        width: 450px;
        height: 450px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .floating-icon i {
        font-size: 1.4rem;
    }
    
    .founders-badge {
        padding: 15px 20px;
    }
    
    .founders-badge i {
        font-size: 1.2rem;
    }
    
    .founders-badge span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .image-spotlight {
        min-height: 400px;
        margin-bottom: 50px;
    }
    
    .spotlight-ring {
        width: 350px;
        height: 350px;
        border-width: 2px;
    }
    
    .spotlight-glow {
        width: 450px;
        height: 450px;
    }
    
    .image-frame {
        width: 280px;
        height: 280px;
    }
    
    .image-inner-frame {
        width: 260px;
        height: 260px;
        border-width: 4px;
        padding: 6px;
    }
    
    .decorative-border {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
    
    .decorative-border-2 {
        top: -25px;
        left: -25px;
        right: -25px;
        bottom: -25px;
    }
    
    .floating-elements {
        width: 350px;
        height: 350px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .floating-icon i {
        font-size: 1.2rem;
    }
    
    .floating-icon:nth-child(1) {
        top: -25px;
    }
    
    .floating-icon:nth-child(2) {
        right: -25px;
    }
    
    .floating-icon:nth-child(3) {
        right: -25px;
    }
    
    .floating-icon:nth-child(4) {
        bottom: -25px;
    }
    
    .floating-icon:nth-child(5) {
        left: -25px;
    }
    
    .floating-icon:nth-child(6) {
        left: -25px;
    }
    
      .founders-badge {
        padding: 12px 18px;
        border-radius: 25px;
        gap: 8px;
        border-width: 2px;
    }
    
    .founders-badge i {
        font-size: 1rem;
    }
    
    .founders-badge span {
        font-size: 0.9rem;
    }
    
    .spotlight-ring::before {
        width: 20px;
        height: 20px;
        top: -10px;
    }
    
    .spotlight-ring::after {
        width: 15px;
        height: 15px;
        bottom: -8px;
    }
}



/* Efeitos especiais para destacar ainda mais a imagem */
.image-inner-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--primary-color));
    border-radius: 50%;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.01);
    }
}

/* Partículas flutuantes ao redor da imagem */
.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(251, 139, 4, 0.8), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(188, 100, 10, 0.6), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(251, 139, 4, 0.5), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(188, 100, 10, 0.7), transparent);
    background-repeat: no-repeat;
    background-size: 600px 600px;
    animation: sparkle 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Efeito de reflexo na imagem */
.main-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Melhorar a centralização em todos os dispositivos */
.about-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.image-spotlight {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Adicionar um indicador visual de que a imagem é interativa */
.image-inner-frame {
    cursor: pointer;
    position: relative;
}

.image-inner-frame::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(251, 139, 4, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1;
}

.image-inner-frame:hover::after {
    width: 100%;
    height: 100%;
}

/* Animação de entrada mais suave */
.image-container {
    animation: imageEntrance 1.2s ease-out;
}

@keyframes imageEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Efeito de pulsação sutil na imagem */
.main-image {
    animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

/* Melhorar a visibilidade dos ícones flutuantes */
.floating-icon {
    transition: all 0.4s ease;
}

.floating-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 50px rgba(8, 5, 4, 0.4);
    border-color: var(--accent-color);
}

/* Adicionar um efeito de trail aos ícones */
.floating-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(251, 139, 4, 0.1), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-icon:hover::before {
    opacity: 1;
    animation: iconTrail 0.6s ease-out;
}

@keyframes iconTrail {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Estilos para a estrutura específica da imagem */
.image-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-inner-frame {
    position: relative;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(251, 139, 4, 0.4);
    box-shadow: 
        0 0 0 1px rgba(251, 139, 4, 0.2),
        0 15px 40px rgba(8, 5, 4, 0.3);
    padding: 3px;
    transition: all 0.4s ease;
    cursor: pointer;
    background: linear-gradient(45deg, rgba(251, 139, 4, 0.1), rgba(188, 100, 10, 0.1));
}

.image-inner-frame:hover {
    transform: scale(1.02);
    border-color: rgba(251, 139, 4, 0.6);
    box-shadow: 
        0 0 0 2px rgba(251, 139, 4, 0.4),
        0 20px 50px rgba(8, 5, 4, 0.4);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
}

.main-image:hover {
    transform: scale(1.03);
    filter: brightness(1.08) contrast(1.1);
}

/* Ícone de zoom que aparece no hover */
.image-inner-frame::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(3px);
}

.image-inner-frame:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

/* Modal - apenas imagem em tela cheia */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

.image-modal.active {
    display: flex !important;
    opacity: 1 !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    z-index: 100000;
    transform: scale(0.8);
    transition: all 0.4s ease;
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal.active .modal-content {
    transform: scale(1) !important;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--accent-color);
    border: 2px solid rgba(251, 139, 4, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 100001;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(90deg);
    border-color: var(--primary-color);
}

.modal-image-fullscreen {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(251, 139, 4, 0.3);
    transition: transform 0.3s ease;
    animation: imageZoomIn 0.4s ease-out;
}

.modal-image-fullscreen:hover {
    transform: scale(1.01);
}

@keyframes imageZoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .image-inner-frame {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .image-inner-frame {
        width: 320px;
        height: 320px;
        border-width: 2px;
        padding: 2px;
    }
    
    .image-inner-frame::after {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .modal-close {
        top: -50px;
        right: 0px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .modal-image-fullscreen {
        max-width: 95vw;
        max-height: 85vh;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .image-inner-frame {
        width: 280px;
        height: 280px;
        border-width: 1px;
        padding: 2px;
    }
    
    .image-inner-frame::after {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .modal-close {
        top: -40px;
        right: 0px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .modal-image-fullscreen {
        max-width: 98vw;
        max-height: 80vh;
        border-radius: 10px;
    }
}

body.modal-open {
    overflow: hidden !important;
}






