/* =========================================
   Casa Guará Park - Premium Landing Page
   ========================================= */

/* === CSS Variables === */
:root {
    /* Colors */
    --gold: #C9A227;
    --gold-light: #E8D48B;
    --gold-dark: #9A7B1A;
    --dark: #0D0D0D;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #252525;
    --light: #FAFAFA;
    --light-secondary: #F5F5F5;
    --gray: #888888;
    --gray-light: #CCCCCC;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-secondary) 100%);
    --gradient-dark-reverse: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

.gold {
    color: var(--gold);
}

/* === Navigation === */
.navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light) !important;
}

.brand-text {
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--light) !important;
    font-weight: 400;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold) !important;
    background: rgba(201, 162, 39, 0.1);
}

.nav-link.btn-contact {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    font-weight: 500;
    padding: 10px 24px !important;
}

.nav-link.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* === Hero Section === */
.hero-section {
    min-height: 100vh;
    background: url('../img/img-header.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(13, 13, 13, 0.95) 0%,
            rgba(13, 13, 13, 0.85) 40%,
            rgba(13, 13, 13, 0.4) 70%,
            rgba(13, 13, 13, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--light);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--light);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.feature-badge:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
}

.feature-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--gold);
    font-size: 2rem;
}

/* === Buttons === */
.btn {
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--light);
}

.btn-outline-light:hover {
    background: var(--light);
    color: var(--dark);
    border-color: var(--light);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* === Section Styles === */
.section-padding {
    padding: var(--section-padding);
}

.bg-dark-gradient {
    background: var(--gradient-dark);
}

.bg-light-gradient {
    background: linear-gradient(180deg, var(--light) 0%, var(--light-secondary) 100%);
}

.section-header {
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === Feature Cards (Destaques) === */
.feature-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--dark);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* === About Section === */
.about-content {
    padding-right: 40px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 4px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
}

.image-placeholder {
    background: var(--dark-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: var(--gray);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 0.85rem;
}

.image-placeholder.main-image {
    grid-column: span 2;
    min-height: 250px;
}

/* === Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
}

.gallery-item.large {
    grid-column: span 2;
}

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

.gallery-placeholder {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    min-height: 200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.gallery-item.large .gallery-placeholder {
    min-height: 300px;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.gallery-placeholder span {
    font-size: 0.9rem;
}

/* === Video Section === */
.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-radius: var(--radius-lg);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: 16px;
    color: var(--gold);
    opacity: 0.8;
}

/* === Lazer Section === */
.lazer-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.lazer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.lazer-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
}

.lazer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.lazer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lazer-content li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 0.95rem;
}

.lazer-content li i {
    color: var(--gold);
    margin-top: 3px;
}

/* === Instalações Section === */
.install-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.install-card h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-card h3 i {
    color: var(--gold);
}

.install-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.install-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-secondary);
    color: var(--dark-secondary);
    font-size: 0.95rem;
}

.install-list li:last-child {
    border-bottom: none;
}

.install-list li i {
    font-size: 1.1rem;
}

/* === Location Section === */
.location-info {
    padding: 20px 0;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list li i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 4px;
}

.location-list li strong {
    display: block;
    color: var(--light);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.location-list li span {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === FAQ Section === */
.accordion-item {
    background: var(--light);
    border: 1px solid var(--light-secondary);
    border-radius: var(--radius-md) !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 24px;
    background: var(--light);
    color: var(--dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--light);
    color: var(--gold);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A227'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--gray);
    line-height: 1.7;
}

/* === Platform Links === */
.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    text-align: center;
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--dark);
    color: var(--light);
}

.platform-link i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.platform-link span {
    font-weight: 500;
}

/* === Contact Section === */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.person-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-avatar i {
    font-size: 2.5rem;
    color: var(--dark);
}

.person-info h3 {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.person-info span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
}

/* === Footer === */
.footer {
    background: var(--dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--light);
    display: block;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

/* === WhatsApp Float Button === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: var(--transition-medium);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* === Responsive === */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark);
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--radius-md);
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .gallery-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .about-stats {
        justify-content: center;
    }

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

    .lazer-card {
        flex-direction: column;
        text-align: center;
    }

    .lazer-icon {
        margin: 0 auto;
    }

    .lazer-content li {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 575px) {
    .feature-card {
        padding: 30px 20px;
    }

    .install-card {
        padding: 24px 20px;
    }

    .contact-card {
        padding: 30px 24px;
    }
}