/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #12b9d3;
    --primary-dark: #0ea5b8;
    --secondary: #64748b;
    --accent: #f59e0b;
    --background: #ffffff;
    --foreground: #0f172a;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.5rem;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    background: var(--background);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-img {
    width: 3rem;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: none;
}

.logo-title {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--foreground);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-align: right;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    z-index: 40;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile .btn {
    width: fit-content;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-instagram:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 4xl;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out;
    line-height: 1.1;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title-main {
    display: block;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(18, 185, 211, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
    animation: fadeIn 1s ease-out 0.2s both;
}

/* Sections */
.destinations, .about {
    padding: 5rem 0;
    margin: 0;
}

.destinations {
    background: var(--muted);
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.text-primary {
    color: var(--primary);
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-card {
    background: var(--background);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.destination-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.destination-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.destination-rating i {
    color: #fbbf24;
    fill: currentColor;
}

.destination-content {
    padding: 1.5rem;
}

.destination-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.destination-header i {
    color: var(--primary);
    width: 1rem;
    height: 1rem;
}

.destination-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.destination-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.destinations-cta {
    text-align: center;
}

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

.about-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    color: var(--primary);
}

.feature-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.feature-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 100%;
    display: block;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    max-height: 400px;
    display: block;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(59, 130, 246, 0.2), transparent);
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    background: var(--background);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    max-width: 200px;
    word-wrap: break-word;
    overflow: hidden;
}

.stat-1 {
    bottom: 1rem;
    left: 1rem;
    right: auto;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: var(--foreground);
    color: var(--background);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 2rem;
    height: auto;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-logo-text p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--background);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--primary);
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float i {
    width: 1.5rem;
    height: 1.5rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 4rem 0;
    background: var(--background);
}

.privacy-content {
    max-width: 4xl;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.privacy-intro {
    background: var(--muted);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.privacy-intro p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.privacy-text {
    color: var(--muted-foreground);
    line-height: 1.7;
}

.privacy-text p {
    margin-bottom: 1rem;
}

.privacy-text strong {
    color: var(--foreground);
    font-weight: 600;
}


/* Responsive Design */

/* Mobile First - Base styles for mobile */
.mobile-menu {
    display: none;
}

.nav-desktop {
    display: none;
}

.header-cta {
    display: none;
}

.logo-text {
    display: none;
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .destination-card {
        padding: 1rem;
    }
    
    .destination-card h3 {
        font-size: 1.125rem;
    }
    
    .floating-stat {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
        max-width: 150px;
        bottom: 0.5rem;
        left: 0.5rem;
        right: auto;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
    }
    
    .whatsapp-float i {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    /* About image adjustments for small mobile */
    .about-content {
        gap: 2rem;
    }
    
    .image-container img {
        height: 250px;
        max-height: 250px;
    }
    
    .image-overlay {
        height: 250px;
    }
    
    .about-description {
        font-size: 1rem;
    }
}

/* Mobile (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* About image adjustments for mobile */
    .about-content {
        gap: 2.5rem;
    }
    
    .image-container img {
        height: 300px;
        max-height: 300px;
    }
    
    .image-overlay {
        height: 300px;
    }
    
    .about-description {
        font-size: 1.05rem;
    }
    
    /* Floating stat adjustments for mobile */
    .floating-stat {
        max-width: 160px;
        bottom: 0.75rem;
        left: 0.75rem;
        right: auto;
        padding: 0.75rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Tablet (640px - 1023px) */
@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
    
    .nav-desktop {
        display: flex;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3.75rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text {
        font-size: 1.125rem;
    }
    
    /* About image adjustments for tablet */
    .image-container img {
        height: 350px;
        max-height: 350px;
    }
    
    .image-overlay {
        height: 350px;
    }
    
    /* Floating stat adjustments for tablet */
    .floating-stat {
        max-width: 180px;
        bottom: 1rem;
        left: 1rem;
        right: auto;
        padding: 1rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Desktop (1024px - 1279px) */
@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* About image adjustments for desktop */
    .image-container img {
        height: 400px;
        max-height: 400px;
    }
    
    .image-overlay {
        height: 400px;
    }
    
    /* Floating stat adjustments for desktop */
    .floating-stat {
        max-width: 200px;
        bottom: 1.5rem;
        left: 1.5rem;
        right: auto;
        padding: 1.25rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1.125rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-title {
        font-size: 4.5rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.25rem;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 5rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .destinations-grid {
        gap: 2rem;
    }
    
    .features-grid {
        gap: 2rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu.active {
    display: block;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
        line-height: 1.3;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .hero-image,
    .destination-card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Additional responsive improvements */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.3;
        padding: 0 0.25rem;
    }
    
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* About image adjustments for very small screens */
    .image-container img {
        height: 200px;
        max-height: 200px;
    }
    
    .image-overlay {
        height: 200px;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    /* Floating stat adjustments for very small screens */
    .floating-stat {
        max-width: 120px;
        bottom: 0.25rem;
        left: 0.25rem;
        right: auto;
        padding: 0.5rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.625rem;
    }
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.mobile-menu-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Improved text selection */
::selection {
    background-color: var(--primary);
    color: white;
}

/* Better image loading */
img {
    max-width: 100%;
    height: auto;
}
