* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
}

/* HEADER */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #d63384;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

nav a.active,
nav a:hover {
    color: #d63384;
}

/* HERO */

.hero {
    margin: 40px;
    border-radius: 30px;
    padding: 120px 40px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #e64980, #6f42c1);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
}

.hero h2 {
    margin-top: 20px;
    font-weight: 500;
}

.hero p {
    max-width: 600px;
    margin: 20px auto;
}

.btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: white;
    color: #6f42c1;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* VALUES */

.values {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 80px 0;
}

.circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e64980, #6f42c1);
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.value {
    text-align: center;
}

/* PAGE HEADER */

.page-header {
    text-align: center;
    padding: 100px 20px 60px;
}

.page-header h1 {
    font-size: 48px;
    color: #b83280;
}

/* PORTFOLIO */

.portfolio-grid {
    padding: 60px;
}

.empty-state {
    background: white;
    padding: 100px;
    border-radius: 20px;
    text-align: center;
}

/* CONTACT */

.contact-container {
    display: flex;
    gap: 40px;
    padding: 60px;
}

.contact-form,
.contact-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

textarea {
    height: 120px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .values {
        flex-direction: column;
        gap: 40px;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 42px;
    }
}
/* FOOTER */

.footer {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    margin-top: 80px;
}

.footer h3 {
    color: #d63384;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.footer p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer small {
    font-size: 12px;
    color: #777;
}
/* ===== PORTFOLIO GRID ===== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 60px;
}

.gallery-item {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
.wbros-link {
    text-decoration: none;
    color: inherit;
}

.wbros-link:hover {
    color: #d63384;
}
.footer-link a {
    text-decoration: none;
    color: #6b7280; /* cinza suave */
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-link a:hover {
    color: #d63384; /* rosa do tema */
}
