* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f59e0b;
    --accent: #14b8a6;
    --secondary: #1e293b;
    --foreground: #1a1a1a;
    --muted: #6b7280;
    --background: #ffffff;
    --radius: 0.75rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('dubai-hero.png');
    background-size: cover;
    background-position: center;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(15, 23, 42, 0.8), 
        rgba(15, 23, 42, 0.6), 
        rgba(15, 23, 42, 0.9)
    );
}

/* Top Banner */
.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 0.75rem 1.5rem;
}

.hero-banner p {
    color: white;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 5rem 1.5rem;
    margin-top: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeIn 0.8s ease-out;
}

/* Left Side - Text */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-text {
        gap: 1rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Reviews */
.hero-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .hero-reviews {
        flex-direction: column;
    }
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.5rem;
    height: 1.5rem;
    color: #d4a574;
}

.review-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* CTA Button */
.hero-cta {
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .hero-cta {
        padding-top: 1rem;
    }
}

.cta-button {
    /* PROPRIEDADES ADICIONADAS */
    text-decoration: none; 
    display: inline-block;
    text-align: center; 

    /* ... (Restante do seu CSS original) ... */
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.75rem 3rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(212, 165, 116, 0.6);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .trust-indicators {
        display: none;
        padding-top: 1rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--accent);
    border-radius: 50%;
}

/* Right Side - Guide Image */
.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    max-width: 28rem;
    width: 100%;
}

.guide-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}



.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212, 165, 116, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 0.5rem;
    pointer-events: none;
}


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
    }
    
    .hero-reviews {
        justify-content: flex-start;
    }
    
    .trust-indicators {
        justify-content: flex-start;
    }
    
    .hero-image-container {
        justify-content: flex-end;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}


/* Guide Preview Section */
.guide-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-image {
    position: relative;
}

.preview-image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(20, 184, 166, 0.2));
    border-radius: 1.5rem;
    filter: blur(40px);
    z-index: -1;
}

.preview-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.preview-image:hover img {
    transform: scale(1.05);
}

.section-label {
    color: #d19226;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.highlight-text {
    display: block;
    color: var(--primary);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.benefit-item:hover {
    color: var(--foreground);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.benefit-item:hover .check-icon {
    background: rgba(245, 158, 11, 0.2);
}

.btn-secondary {
    /* PROPRIEDADES ADICIONADAS */
    text-decoration: none;
    display: inline-block;
    text-align: center;

    /* PROPRIEDADES ORIGINAIS */
    background: var(--secondary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.section-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-title-center {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Chapters Section */
.chapters-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #4e7caa 0%, #d8bc31 100%);
}

.chapters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.chapter-card {
    padding: 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.chapter-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.chapter-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.chapter-card:hover .chapter-icon {
    background: rgba(245, 158, 11, 0.2);
}

.chapter-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.chapter-card h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.chapter-card:hover h3 {
    color: var(--primary);
}

/* Neighborhoods Section */
.neighborhoods-section {
    padding: 6rem 0;
    background: #ffffff;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.neighborhood-card {
    position: relative;
    height: 320px;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.neighborhood-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.4);
}

.neighborhood-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,41,59,0.7) 0%, rgba(30,41,59,0.9) 100%);
    transition: opacity 0.5s ease;
}

.neighborhood-card:hover .neighborhood-overlay {
    opacity: 0.95;
}

.neighborhood-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 10;
    color: white;
}

.neighborhood-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.neighborhood-card:hover .neighborhood-icon {
    transform: scale(1.1);
}

.neighborhood-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.neighborhood-card:hover h3 {
    color: var(--primary);
}

.neighborhood-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Author Section */
.author-section {
    padding: 6rem 0;
background: linear-gradient(180deg, #E6F9E6 0%, #1A237E 100%);}

.author-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.author-image {
    position: relative;
}

.author-image::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(20, 184, 166, 0.3));
    border-radius: 1.5rem;
    filter: blur(40px);
    z-index: -1;
}

.author-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.5s ease;
}

.author-image:hover img {
    transform: scale(1.05);
}

.author-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.author-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: #294baa;
    border: 2px solid var(--primary);
    border-radius: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: var(--primary);
    color: white;
}

.instagram-icon {
    font-size: 1.25rem;
}

.gallery-section {
    margin-top: 4rem;
}

.gallery-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.gallery-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-scroll:hover {
    animation-play-state: paused;
}



.gallery-scroll img {
    width: 288px;
    height: 384px;
    object-fit: cover;
    border-radius: 0.75rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.gallery-scroll img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    /* ADIÇÕES PARA O FUNDO DA IMAGEM */
    background-image: url('Dubai-Miracle-Garden.jpg');
    background-size: cover; /* Garante que a imagem cubra todo o rodapé */
    background-position: center center; /* Centraliza a imagem */
    
    /* GRADIENTE DE SOBREPOSIÇÃO (OPCIONAL, mas recomendado para contraste) */
    background-color: var(--secondary); /* Cor de fallback */
    background-blend-mode: multiply; /* Mistura a imagem com a cor de fundo (escurece) */
    
    /* PROPRIEDADES ORIGINAIS */
    color: white;
    padding: 5rem 0 2rem;
}

.footer-cta {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.footer-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    margin-top: 3rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .preview-grid,
    .author-grid {
        grid-template-columns: 1fr;
    }

    .neighborhoods-grid,
    .chapters-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hide scrollbar for gallery */
.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-scroll {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
