@import url('https://db.onlinewebfonts.com/c/3cc05eb29887891767af19710a02106d?family=Cooper+Black');

/* 2. Define o @font-face para todos os formatos */
@font-face {
  font-family: 'Cooper Black';
  src: url('https://db.onlinewebfonts.com/t/3cc05eb29887891767af19710a02106d.eot');
  src:
    url('https://db.onlinewebfonts.com/t/3cc05eb29887891767af19710a02106d.eot?#iefix') format('embedded-opentype'),
    url('https://db.onlinewebfonts.com/t/3cc05eb29887891767af19710a02106d.woff2') format('woff2'),
    url('https://db.onlinewebfonts.com/t/3cc05eb29887891767af19710a02106d.woff') format('woff'),
    url('https://db.onlinewebfonts.com/t/3cc05eb29887891767af19710a02106d.ttf') format('truetype'),
    url('https://db.onlinewebfonts.com/t/3cc05eb29887891767af19710a02106d.svg#Cooper Black') format('svg');
  font-weight: normal;
  font-style: normal;
} 

:root {
            --gold: #004A7F;
            --wine: #5BC5ED;
            --neutral-light: #F7F5F2;
            --neutral-medium: #E6E2DB;
            --neutral-dark: #222222;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Inter', sans-serif;
            --transition: all 0.3s ease;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
            --radius: 4px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-sans);
            color: var(--neutral-dark);
            background-color: var(--neutral-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--font-serif);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            position: relative;
            display: inline-block;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: var(--gold);
            color: white;
            border: none;
            border-radius: var(--radius);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--wine);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
        }
        
        .btn-secondary:hover {
            background-color: var(--gold);
            color: white;
        }
        
        /* Header styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(225, 225, 225, 0.8);  
            backdrop-filter: blur(12px);      
            -webkit-backdrop-filter: blur(12px); 
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        header.scrolled {
            padding: 0.5rem 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo span {
            font-family: 'Cooper Black', sans-serif;
            font-size: 2.5rem;        
            font-weight: 700;     
            letter-spacing: 0.02em;  
            color: var(--gold);         
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            color: var(--neutral-dark);
            font-weight: 600;
            position: relative;
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
           .nav-menu .active{
            color: #004A7F;
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--neutral-dark);
        }
        
        /* Gallery Hero Section */
        .gallery-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner_gale.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 80px;
        }
        
        .gallery-hero h1 {
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .gallery-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            color: var(--neutral-medium);
        }
        
        /* Gallery Content */
        .gallery-content {
            padding: 5rem 0;
        }
        
        .gallery-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .gallery-filter {
            padding: 0.7rem 1.5rem;
            background: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .gallery-filter:hover, .gallery-filter.active {
            background: var(--gold);
            color: white;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 300px;
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease, filter 0.3s ease;
        }
        
        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }
        
        .gallery-item-caption {
            color: white;
            text-align: center;
            padding: 1rem;
        }
        
        .gallery-item-caption h3 {
            color: white;
            margin-bottom: 0.5rem;
        }
        
        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-slow);
        }
        
        .lightbox.active {
            opacity: 1;
            visibility: visible;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-content img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: var(--radius);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-caption {
            color: white;
            text-align: center;
            margin-top: 1rem;
            font-size: 1.1rem;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .lightbox-close:hover {
            color: var(--gold);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 2rem;
        }
        
        .lightbox-prev, .lightbox-next {
            color: white;
            background: rgba(0, 0, 0, 0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }
        
        .lightbox-prev:hover, .lightbox-next:hover {
            background: var(--gold);
        }
        
        /* Footer */
        footer {
            background-color: var(--neutral-dark);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 1rem;
            filter: brightness(0) invert(1);
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--neutral-medium);
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--gold);
            transform: translateY(-3px);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: none;
            border-radius: var(--radius) 0 0 var(--radius);
            font-family: var(--font-sans);
        }
        
        .newsletter-btn {
            background-color: var(--gold);
            color: white;
            border: none;
            padding: 0 1rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .newsletter-btn:hover {
            background-color: var(--wine);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--neutral-medium);
            font-size: 0.9rem;
        }
        
        /* WhatsApp floating button */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
        }
        
        .whatsapp-float i {
            font-size: 1.8rem;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Mobile Menu Styling */
        .mobile-menu-container {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background: linear-gradient(135deg, var(--neutral-light) 0%, white 100%);
            z-index: 1001;
            padding: 5rem 2rem 2rem;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .mobile-menu-container.active {
            right: 0;
        }
        
        .mobile-menu {
            list-style: none;
            margin-top: 2rem;
        }
        
        .mobile-menu li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-menu a {
            color: var(--neutral-dark);
            font-weight: 600;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .mobile-menu a:hover {
            background-color: rgba(0, 74, 127, 0.1);
            color: var(--gold);
            transform: translateX(5px);
        }
        
        .mobile-menu a i {
            width: 24px;
            text-align: center;
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-social {
            margin-top: auto;
            padding-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0 1rem;
            }
                    
            .nav-menu {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .gallery-hero {
                padding: 150px 0 80px;
            }
            
            .gallery-content {
                padding: 3rem 0;
            }
            
            .container {
                padding: 0 1.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 250px;
            }
            
            .lightbox-prev, .lightbox-next {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .lightbox-close {
                top: -30px;
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .logo span {
                font-size: 24px;
            }
            
            .gallery-hero h1 {
                font-size: 2rem;
            }
            
            .gallery-hero p {
                font-size: 1.1rem;
            }
            
            .gallery-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .gallery-filter {
                width: 100%;
                max-width: 200px;
            }
            
            .mobile-menu-container {
                width: 85%;
            }
            
            .whatsapp-float {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 50px;
                height: 50px;
            }
            
            .whatsapp-float i {
                font-size: 1.5rem;
            }
        }