/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c9a961;
    --gold-light: #d4b875;
    --gold-dark: #b89751;
    --dark-color: #000000;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-color: #2b2b2b;
    --gray: #6b6b6b;
    --medium-gray: #4a4a4a;
    --transition: all 0.3s ease;

    /* Pride Colors */
    --pride-red: #e40303;
    --pride-orange: #ff8c00;
    --pride-yellow: #ffed00;
    --pride-green: #008026;
    --pride-blue: #24408e;
    --pride-purple: #732982;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Header e Navegação */
.header {
    background: linear-gradient(to right, #000000 0%, #1a1a1a 40%, #2b2b2b 70%, #3d3325 85%, #4a3d2a 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 102px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.2rem;
}

.whatsapp-link {
    background: #25D366;
    color: var(--white);
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.instagram-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.instagram-link:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 114px;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2b2b2b 100%);
    color: var(--white);
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.rainbow-bar {
    height: 4px;
    background: linear-gradient(to right,
        var(--pride-red),
        var(--pride-orange),
        var(--pride-yellow),
        var(--pride-green),
        var(--pride-blue),
        var(--pride-purple)
    );
    margin: 0 auto 2rem;
    width: 200px;
    border-radius: 2px;
}

.pride-emoji {
    font-size: 2.5rem;
    display: inline;
    margin: 0 0.5rem;
    vertical-align: middle;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Seções Gerais */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

/* Áreas de Atuação */
.areas {
    background: #1a1a1a;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.area-card {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #2b2b2b;
}

.area-card:hover {
    border: 1px solid #2b2b2b;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
    border-color: var(--secondary-color);
}

.area-card .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2b2b2b 0%, #000000 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.area-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: #b0b0b0;
    position: relative;
}

.area-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Diferenciais Section */
.diferenciais-section {
    background: #0a0a0a;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.diferencial-card {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 10px;
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dark-color);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.diferencial-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.diferencial-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Sobre */
.sobre {
    background: var(--dark-color);
    color: var(--white);
}

.sobre .section-title {
    color: var(--white);
}

.sobre .section-title::after {
    background: var(--secondary-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
    text-align: center;
}

.sobre-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(201, 169, 97, 0.3));
    transition: var(--transition);
}

.sobre-logo:hover {
    transform: scale(1.05);
}

.pride-flag {
    height: 6px;
    background: linear-gradient(to right,
        var(--pride-red),
        var(--pride-orange),
        var(--pride-yellow),
        var(--pride-green),
        var(--pride-blue),
        var(--pride-purple)
    );
    margin: 1.5rem auto 0;
    border-radius: 3px;
    max-width: 300px;
}

.sobre-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.subtitle-gold {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

.cta-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.cta-text {
    color: var(--secondary-color);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

/* Contato */
.contato {
    background: #1a1a1a;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #0a0a0a;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.2);
}

.info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #b0b0b0;
    margin-bottom: 0.3rem;
}

.link-gold {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.link-gold:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Formulário */
.contato-form {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #3a3a3a;
    background: #0d0d0d;
    color: var(--white);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(201, 169, 97, 0.2));
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #2b2b2b;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.3rem;
    border: 2px solid #3a3a3a;
    background: #0d0d0d;
    color: var(--white);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.oab-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 114px;
        flex-direction: column;
        background: linear-gradient(to bottom, #1a1a1a 0%, #000000 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-bottom: 2px solid var(--secondary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .social-links {
        display: none;
    }

    .hero {
        padding: 60px 0;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .pride-emoji {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .logo-img {
        height: 84px;
    }

    .sobre-logo {
        max-width: 250px;
    }

    .footer-logo {
        max-width: 180px;
        margin: 0 auto 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}

/* Botões Flutuantes */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 999;
}

.whatsapp-float,
.instagram-float {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: var(--transition);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    background: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    animation: pulse-instagram 2s infinite;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

@keyframes pulse-instagram {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(220, 39, 67, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(220, 39, 67, 0.6);
    }
}
