.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 40%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.page-header h1 span {
    color: var(--accent);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.page-header .btn {
    animation: fadeInUp 1s ease 0.4s both;
}

.page-content {
    padding: 80px 0;
    background: var(--secondary);
    position: relative;
    z-index: 1;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.main-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--text-light);
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 30px 0;
}

.service-list li {
    padding: 15px 20px;
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
    border-left: 3px solid var(--accent);
}

.service-list li strong {
    color: var(--text-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--accent) 0%, #ffb366 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-box .btn {
    background: var(--primary);
    color: var(--text-light);
}

.cta-box .btn:hover {
    background: var(--secondary);
}

.sidebar-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.sidebar-box h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: 12px 0;
    color: var(--text-muted);
}

.price-table td:last-child {
    text-align: right;
    color: var(--accent);
    font-weight: 600;
}

.note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.brands span {
    padding: 8px 15px;
    background: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content h2 {
        font-size: 1.5rem;
    }
}

/* Galeria */
.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    background: var(--secondary);
    cursor: pointer;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-size: 0.9rem;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img,
.lightbox video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: default;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
}
