﻿/* ==========================================================================
   CSS Variables & Design System
   ========================================================================== */
:root {
    /* Colors */
    --primary-dark: #0A0A0A;
    --secondary-dark: #1A1A1A;
    --accent-gold: #FFB600;
    --accent-gold-light: #FFC940;
    --accent-gold-dark: #CC9200;
    
    --text-dark: #333333;
    --text-light: #F8F9FA;
    --text-muted: #6C757D;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #121212;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

[data-elementor-type="wp-page"] {
    overflow: hidden !important;
}

[data-elementor-type="wp-post"] {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.bg-dark h2 {
    color: var(--text-light);
}

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

.text-white {
    color: var(--text-light) !important;
}

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

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.w-100 { width: 100%; }
.opacity-80 { opacity: 0.8; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}

.center-desc {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

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

.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: 1.5rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.mobile-dropdown.active {
    max-height: 400px;
    box-shadow: var(--shadow-md);
}

.mobile-link {
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
}

.mobile-link:last-child {
    border-bottom: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #151515 25%, #202020 50%, #111111 75%, #0A0A0A 100%);
    background-size: 400% 400%;
    animation: heroSkyAnimation 12s ease infinite;
    color: var(--text-light);
    padding-top: 80px;
    overflow: hidden;
}

@keyframes heroSkyAnimation {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Estrelas animadas no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 75%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 20% 80%, rgba(255,220,100,0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 30%, rgba(255,220,100,0.4) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 90%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 75% 55%, rgba(255,220,100,0.3) 0%, transparent 100%);
    animation: starsFloat 20s linear infinite;
    z-index: 0;
}

@keyframes starsFloat {
    0%   { transform: translateY(0px); opacity: 0.8; }
    50%  { transform: translateY(-15px); opacity: 1; }
    100% { transform: translateY(0px); opacity: 0.8; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.service-times {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.service-times i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
}

.value-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    transition: transform var(--transition-slow);
}

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

.pastor-quote {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    max-width: 250px;
    border-left: 4px solid var(--accent-gold);
}

.pastor-quote p {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.pastor-quote span {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
}

/* ==========================================================================
   Ministries Section
   ========================================================================== */
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ministry-card {
    background-color: var(--bg-white);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

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

.ministry-card:hover::before {
    transform: scaleX(1);
}

.ministry-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
    font-size: 1.5rem;
    transition: all var(--transition-normal);
}

.ministry-card:hover .icon-box {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.ministry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.ministry-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   Watch Online Section
   ========================================================================== */
.watch-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.watch-video {
    flex: 1;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.video-container img {
    transition: transform var(--transition-slow);
}

.video-container:hover img {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 2rem;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse-play 2s infinite;
    transition: all var(--transition-normal);
}

.video-container:hover .play-btn-overlay {
    background-color: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-play {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.watch-text {
    flex: 1;
}

.watch-features {
    margin-top: 1.5rem;
}

.watch-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.watch-features i {
    font-size: 1.2rem;
}

/* ==========================================================================
   Events Section
   ========================================================================== */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.event-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: left;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-radius: 8px;
    margin-right: 1.5rem;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 600;
    margin-top: 0.2rem;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.event-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================================================
   Connect / Prayer Section
   ========================================================================== */
.connect {
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.connect::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1445445290350-18a3b86e0b5b?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.connect-form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* ==========================================================================
   Give Section
   ========================================================================== */
.give-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.give-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.give-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    min-width: 250px;
    border-top: 4px solid var(--primary-dark);
}

.give-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-dark);
}

.give-card i {
    color: var(--accent-gold);
}

.give-card p {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   Visit / Info Section
   ========================================================================== */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-blocks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-block i {
    width: 50px;
    height: 50px;
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-block h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-block p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.visit-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: filter var(--transition-normal);
}

.gallery-grid img:hover {
    filter: brightness(0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    border-top: 5px solid var(--accent-gold);
}

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

.footer-brand h2 {
    color: var(--text-light);
}

.footer-brand i {
    color: var(--accent-gold);
}

.footer-brand p {
    opacity: 0.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

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

.footer h3 {
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

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

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

.slide-right {
    transform: translateX(-50px);
}

.slide-right.is-visible {
    transform: translateX(0);
}

.slide-left {
    transform: translateX(50px);
}

.slide-left.is-visible {
    transform: translateX(0);
}

.fade-up {
    transform: translateY(50px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-grid, .watch-flex, .connect-grid, .visit-grid {
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        background-color: var(--primary-dark);
        padding: 1rem 0;
    }
    
    .nav-links {
        display: none; /* Hide default nav */
    }
    
    .mobile-menu-toggle {
        display: block; /* Show hamburger */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-grid, .connect-grid, .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .watch-flex {
        flex-direction: column;
    }
    
    .connect::before {
        display: none;
    }
    
    .pastor-quote {
        bottom: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
        height: auto;
        padding: 1rem;
    }
    
    .event-action {
        margin-top: 1rem;
    }
    
    .watch-video {
        order: -1;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-form-wrapper {
        padding: 1.5rem;
    }
}
