/* Nossos Serviços - Estilos Redesenhados */

* {
    font-family: 'Inter', sans-serif;
}

[data-lucide] {
    display: inline-block;
}

/* ===== SERVICE CARD STYLES ===== */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f3460 0%, #1e40af 100%);
}

.service-card:hover {
    border-color: #0f3460;
    box-shadow: 0 12px 24px rgba(15, 52, 96, 0.15);
    transform: translateY(-4px);
}

/* Service Header */
.service-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0f3460 0%, #1e40af 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f3460;
    line-height: 1.3;
    margin: 0;
}

/* Service Toggle Button */
.service-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #0f3460 0%, #1e40af 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.service-toggle:hover {
    box-shadow: 0 8px 16px rgba(15, 52, 96, 0.3);
    transform: scale(1.02);
}

.service-toggle span {
    flex: 1;
    text-align: left;
}

.accordion-icon {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    margin-top: 16px;
}

.accordion-content.open {
    max-height: 800px;
    transition: max-height 0.4s ease-in;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.service-list li i {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }

    .service-header {
        gap: 12px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-toggle {
        font-size: 13px;
        padding: 10px 12px;
    }
}
/* =========================================
   HEADER MOBILE - Menu Hambúrguer
   ========================================= */

/* Container do Header */
header {
    background-color: #ffffff;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.header-logo-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Menu Desktop */
.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-left: auto;
}

.header-nav a {
    color: #0f3460;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-nav a:hover {
    color: #1e40af;
}

/* Botão Hambúrguer (escondido no desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 51;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn .bar {
    width: 24px;
    height: 2.5px;
    background-color: #0f3460;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animação do hambúrguer quando ativo */
.mobile-menu-btn.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 35;
}

.mobile-menu-overlay.active {
    display: block;
}

/* =========================================
   DESKTOP (min-width: 768px)
   ========================================= */

@media (min-width: 768px) {
    .header-nav {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* =========================================
   MOBILE (max-width: 767px)
   ========================================= */

@media (max-width: 767px) {
    .header-content {
        height: 50px;
        padding: 0 16px;
    }

    .header-logo {
        height: 36px;
    }

    /* Mostra o hambúrguer */
    .mobile-menu-btn {
        display: flex;
    }

    /* Menu escondido por padrão */
    .header-nav {
        display: none;
        position: fixed;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 400px;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        gap: 0;
        z-index: 40;
        overflow: visible;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        max-height: calc(100vh - 70px);
    }

    /* Menu visível quando ativo */
    .header-nav.active {
        display: flex;
    }

    /* Estilo dos links no mobile */
    .header-nav a {
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
        color: #0f3460;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
    }

    .header-nav a:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .header-nav a:last-child {
        border-bottom: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .header-nav a:hover,
    .header-nav a:active {
        background-color: #f3f4f6;
        color: #1e40af;
    }
}