
:root {
    --color-primary: #121217;      
    --color-secondary: #1C1C24;    
    --color-accent: #D4AF37;       
    --color-accent-hover: #C5A880; 
    --color-accent-light: #F4EAD4; 
    --color-accent-glow: rgba(212, 175, 55, 0.15);
    --color-text-dark: #121217;
    --color-text-muted: #6C6C7A;
    --color-text-light: #FFFFFF;
    --color-bg-light: #E7DBCA;     
    --color-bg-white: #F3ECE0;     
    --color-bg-dark: #0F0F14;
    --color-border: #DCD0C0;       
    --color-success: #2E7D32;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
    --container-width: 1200px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.06);
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.bg-light {
    background-color: var(--color-bg-light);
}
.bg-light-gradient {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-light) 100%);
}
.grid {
    display: grid;
    gap: 32px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-equal { grid-template-columns: 1fr 1fr; }
@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2-equal { grid-template-columns: 1fr; }
    .grid-3 > *:last-child:nth-child(odd) {
        grid-column: span 2;
        justify-self: center;
        width: 100%;
        max-width: calc(50% - 16px);
    }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .grid-3 > *:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
    }
    .section { padding: 70px 0; }
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.section-title.text-left {
    text-align: left;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 300;
}
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}
.card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.dark-card {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
    border-color: rgba(255, 255, 255, 0.05);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}
.btn-header {
    white-space: nowrap;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}
.btn-block {
    display: flex;
    width: 100%;
}
.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 4px 14px 0 rgba(214, 175, 55, 0.3);
}
.btn-primary:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 6px 20px 0 rgba(214, 175, 55, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}
.btn-outline:hover {
    background-color: var(--color-text-dark);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}
.btn-light {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}
.btn-light:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background-color: rgba(243, 236, 224, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}
.header.scrolled {
    padding: 4px 0;
    box-shadow: var(--shadow-sm);
    background-color: rgba(243, 236, 224, 0.95);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 115px;
}
.header.scrolled .header-container {
    height: 80px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-primary);
}
.logo-img-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.header-container .logo-img-wrapper {
    margin-right: 48px;
}
.header-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.header.scrolled .header-logo-img {
    height: 70px;
}
.logo-accent {
    color: var(--color-accent);
}
.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-fast);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 32px;
    flex-shrink: 0;
}
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}
body.dark-theme .mobile-nav-toggle {
    color: var(--color-text-dark) !important;
}
@media (max-width: 1080px) {
    .navbar, .btn-header {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .header-container .logo-img-wrapper {
        margin-right: 0;
    }
    .header-actions {
        margin-left: 16px;
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .header-container {
        height: 90px;
    }
    .header.scrolled .header-container {
        height: 70px;
    }
    .header-logo-img {
        height: 70px;
    }
    .header.scrolled .header-logo-img {
        height: 55px;
    }
    .header-actions {
        margin-left: 12px;
        gap: 10px;
    }
    .header-socials {
        display: none !important;
    }
}
@media (max-width: 380px) {
    .header-actions {
        gap: 8px;
    }
    .header-socials {
        gap: 6px !important;
    }
}
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 236, 224, 0.85) 0%, rgba(225, 212, 194, 0.85) 100%);
    background-size: 200% 200%;
    animation: drawerBgAnimation 10s ease infinite;
    backdrop-filter: blur(15px);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    padding: 32px 20px;
    transition: var(--transition-smooth);
}
@keyframes drawerBgAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.mobile-drawer.open {
    right: 0;
}
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.drawer-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}
.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: auto;
}
.drawer-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
}
.drawer-link:hover {
    color: var(--color-accent);
    padding-left: 8px;
}
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 95;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}
.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F3ECE0 0%, #DFD2BE 100%);
    color: var(--color-text-dark);
    padding-top: 115px;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}
.hero-glow-1, .hero-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
    mix-blend-mode: screen;
}
body.dark-theme .hero-glow-1, 
body.dark-theme .hero-glow-2 {
    opacity: 0.25;
}
.hero-glow-1 {
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background-color: var(--color-accent);
    animation: floatGlow1 25s infinite ease-in-out alternate;
}
.hero-glow-2 {
    bottom: 20%;
    right: 20%;
    width: 500px;
    height: 500px;
    background-color: var(--color-accent-hover);
    animation: floatGlow2 30s infinite ease-in-out alternate;
}
@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 80px) scale(1.2); }
    100% { transform: translate(-50px, 150px) scale(0.9); }
}
@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-120px, -60px) scale(0.8); }
    100% { transform: translate(80px, -150px) scale(1.1); }
}
.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.particle {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(8px);
    animation: rise 15s infinite linear;
}
.particle:nth-child(1) { left: 10%; width: 40px; height: 40px; animation-duration: 18s; animation-delay: 0s; opacity: 0.08; }
.particle:nth-child(2) { left: 25%; width: 20px; height: 20px; animation-duration: 12s; animation-delay: 2s; opacity: 0.12; }
.particle:nth-child(3) { left: 40%; width: 60px; height: 60px; animation-duration: 22s; animation-delay: 4s; opacity: 0.05; }
.particle:nth-child(4) { left: 55%; width: 30px; height: 30px; animation-duration: 15s; animation-delay: 1s; opacity: 0.1; }
.particle:nth-child(5) { left: 70%; width: 50px; height: 50px; animation-duration: 20s; animation-delay: 6s; opacity: 0.07; }
.particle:nth-child(6) { left: 85%; width: 25px; height: 25px; animation-duration: 14s; animation-delay: 3s; opacity: 0.11; }
.particle:nth-child(7) { left: 15%; width: 35px; height: 35px; animation-duration: 16s; animation-delay: 8s; opacity: 0.09; }
.particle:nth-child(8) { left: 45%; width: 15px; height: 15px; animation-duration: 11s; animation-delay: 5s; opacity: 0.15; }
.particle:nth-child(9) { left: 65%; width: 45px; height: 45px; animation-duration: 19s; animation-delay: 7s; opacity: 0.06; }
.particle:nth-child(10) { left: 90%; width: 55px; height: 55px; animation-duration: 24s; animation-delay: 2s; opacity: 0.05; }
@keyframes rise {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: inherit;
    }
    90% {
        opacity: inherit;
    }
    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}
.section-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}
.section-bg-particles .particle {
    position: absolute;
    bottom: -60px;
    background-color: var(--color-accent);
    border-radius: 50%;
    filter: blur(10px);
    animation: rise 25s infinite linear; 
}
.section-bg-particles .particle:nth-child(1) { left: 5%; width: 45px; height: 45px; animation-duration: 28s; animation-delay: 0s; opacity: 0.015; }
.section-bg-particles .particle:nth-child(2) { left: 20%; width: 25px; height: 25px; animation-duration: 20s; animation-delay: 4s; opacity: 0.025; }
.section-bg-particles .particle:nth-child(3) { left: 35%; width: 60px; height: 60px; animation-duration: 35s; animation-delay: 8s; opacity: 0.01; }
.section-bg-particles .particle:nth-child(4) { left: 50%; width: 30px; height: 30px; animation-duration: 24s; animation-delay: 2s; opacity: 0.02; }
.section-bg-particles .particle:nth-child(5) { left: 65%; width: 50px; height: 50px; animation-duration: 32s; animation-delay: 10s; opacity: 0.015; }
.section-bg-particles .particle:nth-child(6) { left: 80%; width: 20px; height: 20px; animation-duration: 18s; animation-delay: 6s; opacity: 0.03; }
.section-bg-particles .particle:nth-child(7) { left: 92%; width: 40px; height: 40px; animation-duration: 26s; animation-delay: 12s; opacity: 0.02; }
.section-bg-particles ~ .container {
    position: relative;
    z-index: 2;
}
.hero-container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 800px;
}
.hero-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 24px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}
.hero-scroll-down i {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .hero-scroll-down { display: none !important; }
}
.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}
.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.animate-slide-up-delay {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.animate-slide-up-delay-2 {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.stats {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 60px 0;
    border-bottom: 2px solid rgba(214, 175, 55, 0.2);
}
.stat-card {
    text-align: center;
    padding: 20px;
}
.stat-icon {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 16px;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
}
.service-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.service-card:hover .service-img {
    transform: scale(1.08);
}
.service-icon-badge {
    position: absolute;
    bottom: -24px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--color-bg-white);
}
.service-body {
    padding: 40px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.service-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}
.service-features {
    list-style: none;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-features li {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features i {
    color: var(--color-success);
}
.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}
.gallery-tab-btn {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1080px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    animation: filterAnimation 0.5s ease-out forwards;
}
@keyframes filterAnimation {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
.gallery-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 20, 0.95) 0%, rgba(15, 15, 20, 0.4) 60%, rgba(15, 15, 20, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.gallery-img-box:hover .gallery-overlay {
    opacity: 1;
}
.gallery-img-box:hover .gallery-img {
    transform: scale(1.06);
}
.gallery-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
}
.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-top: 4px;
}
.cta-instagram {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--color-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-instagram::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}
.cta-instagram-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.cta-instagram-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.cta-instagram-content p {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 32px;
}
.btn-instagram-brand {
    background-color: #E1306C !important;
    color: #ffffff !important;
    border-color: #E1306C !important;
    box-shadow: 0 4px 14px rgba(225, 48, 108, 0.4) !important;
}
.btn-instagram-brand:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    background-repeat: no-repeat !important;
    background-size: 101% 101% !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5) !important;
    transform: translateY(-2px);
}
.calculator-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .calculator-layout { grid-template-columns: 1fr; }
}
.calculator-form-wrapper {
    padding: 40px;
}
@media (max-width: 600px) {
    .calculator-form-wrapper { padding: 24px; }
}
.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .form-group-row { grid-template-columns: 1fr; gap: 12px; }
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--color-primary);
}
.form-group .section-label,
.form-subsection-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    margin-top: 10px;
    color: #8C6F12; 
    border-bottom: 1px solid rgba(140, 111, 18, 0.2);
    padding-bottom: 8px;
    width: 100%;
}
.form-subsection-header {
    width: 100%;
    margin-top: 24px;
    margin-bottom: 12px;
}
.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon i {
    position: absolute;
    left: 14px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}
.input-with-icon input,
.input-with-icon select {
    width: 100%;
    padding: 11px 16px 11px 42px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    outline: none;
    background-color: var(--color-bg-white);
    transition: var(--transition-fast);
    appearance: none;
}
.input-with-icon select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236C6C7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
}
.input-with-icon input:focus,
.input-with-icon select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.guests-badge {
    background-color: var(--color-accent-light);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 50px;
}
.slider-container {
    position: relative;
    padding-bottom: 20px;
}
.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: var(--color-border);
    outline: none;
    appearance: none;
}
.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-accent);
    cursor: pointer;
    border: 3px solid var(--color-bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background: var(--color-accent-hover);
}
.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 8px;
}
.menu-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.services-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 1080px) {
    .services-checkbox-grid,
    .menu-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .services-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .menu-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .checkbox-card-content {
        padding: 10px 12px !important;
        grid-template-areas: "icon title" !important;
    }
    .chk-icon {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
    }
    .chk-title {
        font-size: 0.82rem !important;
        margin-bottom: 0 !important;
        line-height: 1.25 !important;
    }
    .chk-desc {
        display: none !important; 
    }
}
.checkbox-card {
    position: relative;
    cursor: pointer;
    display: flex;
    height: 100%;
}
.checkbox-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.checkbox-card-content {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 
        "icon title"
        "icon desc";
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
    padding: 12px 16px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    width: 100%;
    height: 100%;
}
.chk-icon {
    grid-area: icon;
    font-size: 1.30rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.chk-title {
    grid-area: title;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 0;
    line-height: 1.25;
}
.chk-desc {
    grid-area: desc;
    font-size: 0.72rem;
    color: var(--color-text-muted);
    line-height: 1.25;
}
.checkbox-card input:checked + .checkbox-card-content {
    border-color: var(--color-accent);
    background-color: var(--color-bg-white);
    box-shadow: 0 4px 12px 0 rgba(214, 175, 55, 0.1);
}
.checkbox-card input:checked + .checkbox-card-content .chk-icon {
    color: var(--color-accent);
}
.calculator-results-wrapper {
    padding: 40px;
    position: sticky;
    top: 110px;
}
@media (max-width: 992px) {
    .calculator-results-wrapper { position: static; }
}
.results-heading {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.results-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}
.results-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    opacity: 0.9;
}
.summary-row span:last-child {
    font-weight: 600;
    color: var(--color-accent-hover);
}
.total-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}
.total-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    display: block;
    margin-bottom: 8px;
}
.total-value {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
}
.total-disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    line-height: 1.4;
}
.results-perks-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 16px;
}
.perks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.perks-list li {
    font-size: 0.85rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 10px;
}
.perks-list i {
    color: var(--color-accent);
}
.testimonial-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}
.stars {
    color: var(--color-accent);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}
.client-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}
.client-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.client-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}
.contact-info-block {
    padding-right: 40px;
}
@media (max-width: 992px) {
    .contact-info-block { padding-right: 0; margin-bottom: 40px; }
}
.contact-intro-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}
.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-accent);
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}
.contact-link:hover {
    color: var(--color-accent);
    text-decoration: underline;
}
.social-channels {
    display: flex;
    gap: 12px;
}
.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    transition: var(--transition-fast);
}
.social-icon-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}
.social-icon-btn.whatsapp-color {
    color: #25D366 !important;
    border-color: rgba(37, 211, 102, 0.4) !important;
    background-color: rgba(37, 211, 102, 0.08) !important;
}
.social-icon-btn.whatsapp-color:hover {
    background-color: #25D366 !important;
    color: #ffffff !important;
    border-color: #25D366 !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}
.social-icon-btn.instagram-color {
    color: #E1306C !important;
    border-color: rgba(225, 48, 108, 0.4) !important;
    background-color: rgba(225, 48, 108, 0.08) !important;
}
.social-icon-btn.instagram-color:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3) !important;
}
.header-socials {
    display: flex;
    gap: 8px;
    align-items: center;
}
.header-social-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
}
@media (max-width: 1080px) {
    .header-socials {
        display: none;
    }
}
.map-wrapper {
    height: 450px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.footer-brand .logo {
    color: var(--color-text-light);
    display: inline-block;
    margin-bottom: 20px;
}
.footer-about {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
}
.footer-links-group h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 24px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
@media (max-width: 600px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}
.creator-name {
    color: var(--color-accent-hover);
    font-weight: 600;
}
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 80;
    transition: var(--transition-smooth);
}
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 0;
    position: absolute;
    z-index: 1;
    right: 75px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity 0.3s;
}
.floating-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
@media (max-width: 600px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
.menu-contents {
    padding: 40px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
}
.menu-pane {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}
.menu-pane.active {
    display: block;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
@media (max-width: 1080px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    .menu-contents {
        padding: 24px;
    }
}
.menu-column h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--color-accent-light);
    padding-bottom: 12px;
}
.menu-column h4 i {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}
.menu-column:hover h4 i {
    transform: scale(1.18);
}
.menu-column h4 i.fa-leaf {
    color: #2ecc71 !important; 
    animation: leafSway 3s ease-in-out infinite;
    transform-origin: bottom left;
}
@keyframes leafSway {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.1); }
}
.menu-column h4 i.fa-utensils,
.menu-column h4 i.fa-fire,
.menu-column h4 i.fa-bowl-food,
.menu-column h4 i.fa-hotdog {
    color: #ff5722 !important; 
    animation: fireFlicker 1.8s ease-in-out infinite;
}
@keyframes fireFlicker {
    0%, 100% { 
        transform: scale(1) translateY(0); 
        text-shadow: 0 0 2px rgba(255, 87, 34, 0.4);
    }
    50% { 
        transform: scale(1.12) translateY(-2px); 
        color: #ff9800 !important; 
        text-shadow: 0 0 8px rgba(255, 152, 0, 0.8), 0 0 12px rgba(255, 87, 34, 0.6);
    }
}
.menu-column h4 i.fa-mug-hot,
.menu-column h4 i.fa-glass-water {
    color: #3498db !important; 
    animation: cupSteam 2.5s ease-in-out infinite;
}
@keyframes cupSteam {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}
.menu-column h4 i.fa-cookie-bite,
.menu-column h4 i.fa-cookie,
.menu-column h4 i.fa-cheese {
    color: #f1c40f !important; 
    animation: bounceSnack 3s ease-in-out infinite;
}
@keyframes bounceSnack {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(8deg); }
}
.menu-column h4 i.fa-cake-candles,
.menu-column h4 i.fa-ice-cream,
.menu-column h4 i.fa-burger,
.menu-column h4 i.fa-plate-wheat,
.menu-column h4 i.fa-plus {
    color: #e91e63 !important; 
    animation: sweetPulse 2.2s ease-in-out infinite;
}
@keyframes sweetPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1) rotate(-5deg); filter: brightness(1.15); }
}
.menu-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.menu-column li {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
    font-weight: 500;
    transition: transform 0.2s ease, color 0.2s ease;
}
.menu-column li:hover {
    transform: translateX(4px);
    color: var(--color-accent) !important;
}
.menu-column li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 1.3rem;
    top: -2px;
    transition: transform 0.2s ease, color 0.2s ease;
}
.menu-column li:hover::before {
    transform: scale(1.4);
    color: var(--color-accent);
}
.menu-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
}
.menu-tab-btn {
    background-color: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    letter-spacing: 0.5px;
}
.menu-tab-btn:hover {
    background-color: var(--color-accent-light);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}
.menu-tab-btn.active {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    font-weight: 700;
}
.menu-flex {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.menu-text-content {
    flex: 1.8;
}
.menu-img-wrapper {
    flex: 1.2;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    min-height: 320px;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.menu-pane-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-img-wrapper:hover .menu-pane-img {
    transform: scale(1.04);
}
.menu-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1200px) {
    .menu-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 992px) {
    .menu-flex {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .menu-text-content,
    .menu-img-wrapper {
        flex: none;
        width: 100%;
    }
    .menu-img-wrapper {
        height: 250px;
        min-height: auto;
    }
}
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}
.form-perks-note {
    background-color: var(--color-accent-light);
    border-left: 4px solid var(--color-accent);
    padding: 18px 24px;
    border-radius: var(--border-radius-sm);
    margin: 25px 0;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    line-height: 1.5;
}
.form-perks-note p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.form-perks-note i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}
@media (max-width: 600px) {
    .contact-form-container {
        padding: 24px;
    }
}
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-dark);
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    flex-shrink: 0;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-size: 1rem;
}
.theme-toggle-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: rotate(15deg) scale(1.05);
}
body {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.card, .header, .footer-dark, .navbar, .nav-link, .service-card, .testimonial-card, .contact-form-container, .menu-contents, .menu-tab-btn, .gallery-tab-btn, .mobile-drawer {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.quemsomos-section {
    background-color: var(--color-bg-white);
}
.about-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
    width: 100%;
}
.about-image-main {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}
.about-image-secondary {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-image-main:hover .about-img,
.about-image-secondary:hover .about-img {
    transform: scale(1.03);
}
.about-img-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(18, 18, 23, 0.75);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 4;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-intro {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.about-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}
.about-highlight-box {
    padding: 30px;
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    box-shadow: var(--shadow-sm);
}
.about-highlight-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}
.about-highlight-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 14px;
}
.about-highlight-box p:last-child {
    margin-bottom: 0;
}
.about-spaces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.about-space-card {
    padding: 20px;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-sm);
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.dark-theme .about-space-card {
    background-color: #1C1C24;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-space-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
body.dark-theme .about-space-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.about-space-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}
.about-space-card h4 i {
    font-size: 1.1rem;
}
.about-space-card p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin: 0;
}
.about-integration-note {
    margin-top: 15px;
    padding: 12px 16px;
    background-color: rgba(212, 175, 55, 0.06);
    border-left: 3px solid var(--color-accent);
    border-radius: var(--border-radius-sm);
}
.about-integration-note p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.about-integration-note p i {
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .about-spaces-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
@media (max-width: 992px) {
    .about-images-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    .about-image-main,
    .about-image-secondary {
        width: 100%;
        height: 300px;
    }
}
body.dark-theme {
    --color-text-dark: #F4EAD4;
    --color-text-muted: #A0A0B0;
    --color-bg-light: #121217;
    --color-bg-white: #1C1C24;
    --color-bg-dark: #0A0A0D;
    --color-border: #2D2D3A;
}
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6,
body.dark-theme .logo,
body.dark-theme .section-title,
body.dark-theme .service-title,
body.dark-theme .client-name,
body.dark-theme .drawer-link,
body.dark-theme .mobile-drawer .logo {
    color: var(--color-text-dark) !important;
}
body.dark-theme .nav-link {
    color: var(--color-text-dark);
}
body.dark-theme .nav-link:hover,
body.dark-theme .nav-link.active {
    color: var(--color-accent);
}
body.dark-theme .header {
    background-color: rgba(18, 18, 23, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
body.dark-theme .header.scrolled {
    background-color: rgba(18, 18, 23, 0.95);
}
body.dark-theme .mobile-drawer {
    background: linear-gradient(135deg, rgba(28, 28, 36, 0.85) 0%, rgba(18, 18, 24, 0.85) 100%);
    background-size: 200% 200%;
    animation: drawerBgAnimation 10s ease infinite;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}
body.dark-theme .drawer-close {
    color: var(--color-text-dark);
}
body.dark-theme .stat-card {
    background-color: #1C1C24;
    border: 1px solid #2D2D3A;
}
body.dark-theme .stat-num {
    color: var(--color-text-dark);
}
body.dark-theme .service-card {
    background-color: #1C1C24;
    border-color: #2D2D3A;
}
body.dark-theme .testimonial-card {
    background-color: #1C1C24;
    border-color: #2D2D3A;
}
body.dark-theme .menu-contents {
    background-color: #1C1C24;
    border-color: #2D2D3A;
}
body.dark-theme .menu-column li {
    color: var(--color-text-dark);
}
body.dark-theme .contact-form-container {
    background-color: #1C1C24;
    border-color: #2D2D3A;
}
body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background-color: #121217;
    border-color: #2D2D3A;
    color: var(--color-text-dark);
}
body.dark-theme .form-group label {
    color: var(--color-text-dark);
}
body.dark-theme .form-group .section-label,
body.dark-theme .form-subsection-title {
    color: var(--color-accent) !important;
    border-bottom-color: rgba(212, 175, 55, 0.25);
}
body.dark-theme .checkbox-card {
    background-color: #121217;
    border-color: #2D2D3A;
}
body.dark-theme .checkbox-card-content span {
    color: var(--color-text-dark);
}
body.dark-theme .input-with-icon i {
    color: var(--color-accent);
}
body.dark-theme .form-perks-note {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--color-text-dark);
}
body.dark-theme .gallery-tab-btn {
    background-color: #121217;
    border-color: #2D2D3A;
    color: var(--color-text-dark);
}
body.dark-theme .gallery-tab-btn:hover,
body.dark-theme .gallery-tab-btn.active {
    background-color: var(--color-accent);
    color: #121217;
    border-color: var(--color-accent);
}
body.dark-theme .hero {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-light) 100%);
}
body.dark-theme .about-highlight-box {
    background-color: #121217;
    border-color: var(--color-accent);
}
body.dark-theme .about-desc,
body.dark-theme .about-highlight-box p {
    color: var(--color-text-dark);
}
.modal-privacy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-privacy.open {
    opacity: 1;
    pointer-events: auto;
}
.modal-privacy-content {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    padding: 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}
body.dark-theme .modal-privacy-content {
    background-color: #1C1C24;
    border-color: #2D2D3A;
}
.modal-privacy-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.modal-privacy-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
body.dark-theme .modal-privacy-close:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.modal-privacy h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    margin-top: 0;
    padding-right: 30px;
}
.modal-privacy-body {
    overflow-y: auto;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    padding-right: 12px;
    text-align: left;
}
.modal-privacy-body h4 {
    font-size: 1.05rem;
    color: var(--color-accent);
    margin-top: 20px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}
.modal-privacy-body p {
    margin-bottom: 12px;
}
.modal-privacy-body p:last-child {
    margin-bottom: 0;
}
.modal-privacy-body::-webkit-scrollbar {
    width: 6px;
}
.modal-privacy-body::-webkit-scrollbar-track {
    background: transparent;
}
.modal-privacy-body::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}
body.dark-theme .modal-privacy-body::-webkit-scrollbar-thumb {
    background: #2D2D3A;
}

/* ── Estilos movidos de inline para classes ─────────────────────────── */
.drawer-logo {
    height: 65px;
}
.drawer-header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}
.drawer-socials {
    justify-content: center;
    gap: 16px;
}
.footer-logo-link {
    margin-bottom: 20px;
    display: inline-flex;
}
.footer-logo {
    height: 80px;
}

/* ── Acessibilidade: Respeita preferência de menos animações ────────── */
/* Benefício duplo: acessibilidade + ganho de performance (sem blur     */
/* de 120px animado continuamente na GPU de quem prefere menos motion)  */
@media (prefers-reduced-motion: reduce) {
    /* Remove partículas decorativas e glows pesados */
    .particle,
    .section-bg-particles .particle {
        animation: none !important;
        opacity: 0 !important;
    }
    .hero-glow-1,
    .hero-glow-2 {
        animation: none !important;
        display: none; /* blur(120px) animado é pesado na GPU */
    }
    /* Garante que o conteúdo fique visível sem animação de entrada */
    .animate-fade-in,
    .animate-slide-up,
    .animate-slide-up-delay,
    .animate-slide-up-delay-2 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    /* Remove pulse do botão WhatsApp flutuante */
    .floating-whatsapp::before {
        animation: none !important;
        opacity: 0;
    }
    /* Remove animações decorativas dos ícones do cardápio */
    .menu-column h4 i {
        animation: none !important;
    }
    /* Mantém transições funcionais (drawer, tema) mas bem mais rápidas */
    * {
        transition-duration: 0.01ms !important;
    }
}

