/*
Theme Name: Egar Participações
Version: 1.0
*/

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

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.main-navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Desktop Menu */
.nav-desktop {
    display: none;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-desktop li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop li a:hover {
    color: #c9a961;
}

/* Mobile Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #c9a961;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.nav-mobile {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(201, 169, 97, 0.3);
    list-style: none;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: right 0.3s;
    overflow-y: auto;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile li a {
    display: block;
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
    background: rgba(201, 169, 97, 0.05);
    transition: all 0.3s;
}

.nav-mobile li a:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.5);
    color: #c9a961;
}

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #0a0a0a url('img/background.png') center/cover no-repeat;
    padding: 6rem 1.5rem 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.5) 0%, 
        rgba(10, 10, 10, 0.7) 50%, 
        rgba(10, 10, 10, 0.9) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.6) 70%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: #c9a961;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5),
                 0 4px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* ===== SECTIONS ===== */
.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: #c9a961;
    margin-bottom: 3rem;
}

/* ===== SOBRE ===== */
.sobre-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
}

.sobre-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sobre-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sobre-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
}

.sobre-card:hover {
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
}

.sobre-card h3 {
    color: #c9a961;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.sobre-card p {
    line-height: 1.8;
    color: #e0e0e0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
}

.info-card h4 {
    color: #c9a961;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.info-card p {
    color: #fff;
    font-size: 1rem;
}

/* ===== SERVIÇOS ===== */
.servicos-section {
    padding: 4rem 1.5rem;
    background: #0a0a0a;
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.servico-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.servico-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.1);
}

.servico-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #c9a961;
    transition: transform 0.3s;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1);
}

.servico-card h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1rem;
}

.servico-detalhes {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s;
    text-align: left;
}

.servico-card.expanded .servico-detalhes {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1.5rem;
}

.servico-detalhes p {
    color: #c9a961;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.servico-detalhes ul {
    list-style: none;
    padding: 0;
}

.servico-detalhes li {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.servico-detalhes li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c9a961;
}

/* ===== CONTATO ===== */
.contato-section {
    padding: 4rem 1.5rem;
    background: #0a0a0a;
}

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

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

.contato-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
    transition: all 0.3s;
}

.contato-item:hover {
    border-color: rgba(201, 169, 97, 0.5);
    transform: translateY(-3px);
}

.contato-icon {
    width: 40px;
    height: 40px;
    color: #c9a961;
    flex-shrink: 0;
}

.contato-item h3 {
    color: #c9a961;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contato-item p {
    color: #e0e0e0;
    line-height: 1.6;
}

.contato-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contato-item a:hover {
    color: #c9a961;
}

.contato-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
}

.contato-cta p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #000;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-top: 2px solid rgba(201, 169, 97, 0.3);
}

.copyright {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.developer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #c9a961;
}

.developer-credit a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #c9a961;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s;
}

.developer-credit a:hover {
    color: #c9a961;
    border-bottom-color: #fff;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }

    .nav-desktop {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 12px;
    }

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

    .section-title {
        font-size: 2.2rem;
    }

    .sobre-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

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

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .hero-section {
        background-attachment: fixed;
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 16px;
    }

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

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 8px;
    }

    .sobre-section,
    .servicos-section,
    .contato-section {
        padding: 6rem 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .servico-card {
        padding: 3rem 2rem;
    }

    .servico-icon {
        width: 80px;
        height: 80px;
    }

    .servico-card h3 {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
}