:root {
    --primary-color: #054467; /* Azul marinho */
    --secondary-color: #FF9E4D; /* Laranja */
    --dark-color: #000000;
    --light-color: #FFFFFF;
    --gray-color: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: 'Organo';
    src: url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Exo2';
    src: url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;700&display=swap');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Exo2', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 40px 0;
    text-align: center;
    position: relative;
}

header.with-background {
    background-image: url('images/header_background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

header.with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 68, 103, 0.7);
    z-index: 1;
}

header .logo-container, header h1, header .subtitle {
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    font-family: 'Organo', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Navigation */
.menu {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s, transform 0.3s;
    font-family: 'Organo', sans-serif;
    padding: 5px 10px;
    border-radius: 20px;
}

.menu a:hover {
    color: var(--light-color);
    background-color: rgba(5, 68, 103, 0.2);
    transform: translateY(-2px);
}

/* Category Sections */
.category-section {
    padding: 60px 0;
    text-align: center;
}

.category-section:nth-child(odd) {
    background-color: var(--light-color);
}

.category-section:nth-child(even) {
    background-color: var(--gray-color);
}

.category-header {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.category-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

.category-section h2 {
    font-family: 'Organo', sans-serif;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subcategory Sections */
.subcategory-section {
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.subcategory-section:hover {
    transform: translateY(-5px);
}

.subcategory-section:last-child {
    margin-bottom: 0;
}

.subcategory-header {
    margin-bottom: 25px;
    position: relative;
}

.subcategory-section h3 {
    font-family: 'Organo', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.subcategory-section h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px auto 0;
}

.price-info {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.4rem;
    margin-top: 5px;
    background-color: rgba(5, 68, 103, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.option-card {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    padding: 20px;
    border-radius: 10px;
    background-color: var(--light-color);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.option-description {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #555;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.logo-small {
    max-width: 120px;
}

.footer-info {
    flex: 2;
    min-width: 200px;
}

.footer-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    text-decoration: underline;
    color: #FFB77A;
}

.footer-note {
    flex: 1;
    min-width: 200px;
    font-style: italic;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--light-color);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-family: 'Organo', sans-serif;
    font-size: 1.2rem;
    color: var(--light-color);
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .option-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .menu ul {
        justify-content: flex-start;
        padding: 0 10px;
    }
    
    .menu li {
        margin: 0 10px;
    }
    
    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .gallery-item img {
        height: 350px;
    }
    
    .option-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-info, .footer-note {
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .subcategory-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-item img {
        height: 300px;
    }
    
    .subcategory-section {
        padding: 20px 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Category Navigation */
.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.category-nav-item {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-nav-item:hover,
.category-nav-item.active {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}
