:root {
    --gold: #c9a227;
    --gold-light: #d4af37;
    --gold-dark: #a88620;
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --white: #ffffff;
    --white-off: #f5f5f0;
    --gray: #888888;
    --gray-light: #cccccc;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 10px 40px rgba(0,0,0,0.3);
    --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    background: var(--gold);
    color: var(--black);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 24px;
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 8px 24px;
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* Section Styles */
.section-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

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

.section-header.center {
    text-align: center;
}

/* Sobre Section */
.sobre {
    padding: 120px 0;
    background: var(--black-light);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-images {
    position: relative;
}

.sobre-img-main {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.sobre-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.sobre-img-main:hover img {
    transform: scale(1.05);
}

.sobre-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.sobre-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    border: 4px solid var(--black-light);
    box-shadow: var(--shadow);
}

.sobre-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-content {
    padding-left: 20px;
}

.sobre-text {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.sobre-text strong {
    color: var(--white);
    font-weight: 400;
}

.sobre-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold);
    font-weight: 600;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Galeria Section */
.galeria {
    padding: 120px 0;
    background: var(--black);
}

.carousel-container {
    position: relative;
    padding: 0 60px;
}

.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.carousel-item:hover .carousel-caption {
    transform: translateY(0);
    opacity: 1;
}

.carousel-caption h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 4px;
}

.carousel-caption p {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* Ambientes Section */
.ambientes {
    padding: 120px 0;
    background: var(--black-light);
}

.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 16px;
}

.ambiente-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.ambiente-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ambiente-card:hover img {
    transform: scale(1.1);
}

.ambiente-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.ambiente-card:hover .ambiente-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.ambiente-overlay h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 4px;
}

.ambiente-overlay p {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ambiente-large {
    grid-column: span 2;
    grid-row: span 1;
}

/* Destaque Section */
.destaque {
    position: relative;
    padding: 160px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.destaque-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.destaque-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destaque-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.destaque-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.destaque-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
}

.destaque-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
}

.destaque-content h2 em {
    font-style: italic;
    color: var(--gold);
}

.destaque-content p {
    font-size: 18px;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Avaliações Section */
.avaliacoes {
    padding: 120px 0;
    background: var(--black);
}

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

.avaliacao-card {
    background: var(--black-lighter);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 4px;
    padding: 40px;
    transition: var(--transition);
}

.avaliacao-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.avaliacao-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.avaliacao-text {
    font-size: 15px;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.avaliacao-author strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
}

.avaliacao-author span {
    font-size: 12px;
    color: var(--gray);
}

/* Contato Section */
.contato {
    padding: 120px 0;
    background: var(--black-light);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-desc {
    color: var(--gray-light);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contato-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contato-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contato-text {
    display: flex;
    flex-direction: column;
}

.contato-text strong {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contato-text span {
    font-size: 15px;
    color: var(--gray-light);
    font-weight: 300;
}

.contato-text .fechado {
    color: #c96666;
    font-size: 13px;
    margin-top: 2px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.contato-mapa {
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.6) contrast(1.1);
    transition: var(--transition);
}

.contato-mapa:hover iframe {
    filter: grayscale(0.3) contrast(1.1);
}

/* Avaliações Google Section */
.avaliacoes-google {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.avaliacoes-google-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.avaliacoes-google-text {
    max-width: 450px;
}

.avaliacoes-google-desc {
    color: var(--gray-light);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}

.avaliacoes-google-img {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: var(--shadow);
}

.avaliacoes-google-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .avaliacoes-google-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .avaliacoes-google-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Status Aberto/Fechado */
.status-bar {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-10px);
    animation: statusSlideIn 0.6s ease-out 1.5s forwards;
}

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

.status-bar.open .status-dot {
    background: #25d366;
    box-shadow: 0 0 8px #25d366;
}

.status-bar.closed .status-dot {
    background: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
}

.status-bar.open {
    color: #25d366;
}

.status-bar.closed {
    color: #e74c3c;
}

/* Link de telefone - mobile only */
.tel-mobile {
    display: none;
}

@media (max-width: 768px) {
    .tel-mobile {
        display: inline;
        color: var(--gold);
        text-decoration: none;
        border-bottom: 1px solid rgba(201, 162, 39, 0.3);
        padding-bottom: 2px;
        transition: var(--transition);
    }
    .tel-mobile:hover {
        border-bottom-color: var(--gold);
    }
    .tel-desktop {
        display: none;
    }
}

/* Footer */
.footer {
    background: var(--black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
    max-width: 350px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 300;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
    font-weight: 300;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-lighter);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .sobre-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sobre-img-accent {
        display: none;
    }

    .ambientes-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .ambiente-large {
        grid-column: span 1;
    }

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

    .carousel-item {
        flex: 0 0 calc(50% - 12px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .ambientes-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .ambiente-card {
        height: 300px;
    }

    .ambiente-large {
        grid-column: span 1;
    }

    .carousel-item {
        flex: 0 0 85%;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 12px;
    }

    .contato-mapa {
        height: 350px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
