:root {
    --primary: #E94E0C;
    --primary-hover: #d1450a;
    --black: #000000;
    --dark-gray: #0A0A0A;
    --white: #FFFFFF;
    --gray-light: #f9fafb;
    --gray-text: #4b5563;
    --font-sans: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body {
    font-family: var(--font-sans);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden !important;
    position: relative;;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.primary-color { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.text-left { text-align: left; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--primary-hover);
    transform: translateX(5px);
}

/* Sessão 1: Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
}

.tag-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin-bottom: 40px;
    line-height: 28px;
}

/* Sessão 2: Iceberg */
.iceberg-section {
    position: relative;
    padding: 96px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../img/secbg-01.png');
    background-size: cover;
    background-position: center;
}

.iceberg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
}

.iceberg-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}

.iceberg-content {
    width: 100%;
    max-width: 500px;
}

.iceberg-subtitle {
    color: #ffffff;
    max-width: 400px;
    font-size: 26px;
    margin: 0 auto;
    padding-top: 20px;
    font-weight: 600;
    text-align: center;
}

.glass-card-text {
    background: #e94e0c21;
    backdrop-filter: blur(20px);
    border: 1px solid #e94e0c21;
    border-radius: 100px;
    padding: 20px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    height: auto;
}

.glass-card {
    background: #e94e0c21;
    backdrop-filter: blur(20px);
    border: 1px solid #e94e0c21;
    border-radius: 24px;
    padding: 40px;
    margin-top: 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-number {
    background-color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.card-items {
    list-style: none;
    text-align: center;
    flex: 1;
}

.card-items li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 24px;
}

/* Sessão 3: Serviços */
.services-section {
    position: relative;
    padding: 96px 0;
    background: url('../img/secbg-02.png');
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: rgba(233, 78, 12, 0.5);
    transform: translateY(-5px);
}

.service-icon {
    background: rgba(233, 78, 12, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.service-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.stat-badge {
    background: rgba(233, 78, 12, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Sessão 4: Especialistas */
.specialists-section {
    padding: 96px 0;
    background-color: var(--white);
    color: var(--black);
}

.specialists-container {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.specialists-left {
    flex: 0 0 38%;
}

.specialists-right {
    flex: 1;
}

.specialist-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.specialist-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.specialist-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(233, 78, 12, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.specialist-card-content {
    flex: 1;
}

.specialist-card-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.specialist-card-content p {
    font-size: 14px;
    color: #666;
}

.specialist-card-check {
    color: var(--primary);
    opacity: 0.6;
    flex-shrink: 0;
}

/* Sessão 5: Estrutura */
.structure-section {
    padding: 96px 0;
    background-color: #1C1B1D;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 64px;
}

.structure-badge {
    background: rgba(233, 78, 12, 0.1);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.structure-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    gap: 12px;
}
.structure-item-bt {
    padding: 10px;
    display: flex;
    gap: 12px;
}

/* Sessão 6: FAQ */
.faq-section {
    padding: 96px 0;
    background-color: var(--white);
    color: var(--black);
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-trigger {
    font-family: var(--font-sans);
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
}

.faq-trigger:hover {
    background: #f9fafb;
}

.faq-content {
    font-family: var(--font-sans);
    padding: 0 24px 24px;
    color: var(--gray-text);
    display: none;
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
}

.faq-item.active .faq-content {
    display: block;
}

/* Sessão 7: Logo Cloud */
.logo-cloud {
    padding: 80px 0;
    background-color: var(--white);
    padding-bottom: 150px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.logo-item img {
    max-width: 120px;
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Sessão 8: Footer CTA */
.footer-cta {
    background-color: #1C1B1D;
    padding: 0;
    position: relative;
    overflow: visible;
    z-index: 10;
}

.footer-cta .flex-row {
    display: flex;
    align-items: stretch;
    gap: 64px;
}

.man-image-container {
    flex: 1;
    z-index: 20;
    line-height: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.man-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    filter: drop-shadow(0 -10px 30px rgba(0,0,0,0.2));
    margin-top: -200px;
}

.footer-cta-content {
    flex: 1.2;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(233, 78, 12, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer */
footer {
    padding: 32px 0;
    background-color: var(--black);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* Mobile Helpers */
.desktop-only {
    display: block;
}

.specialists-grid-mobile {
    display: none;
}

.iceberg-line {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .logo-container {
  margin-left: 0 !important;
  margin-right: auto;
  text-align: left;
}
    .logo-container img {
    max-width:148px ;
    margin-bottom: 100px;
    
}
.logo-container-footer img {
    max-width:138px ;
}
    .man-image-container {
        display: none !important;
    }
    .specialists-container {
    display: inline-block !important;
}
.specialists-left {
    flex: 1 !important;
}

.specialists-right {
    flex: 1 !important;
}

    .specialists-grid-mobile {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .specialist-card-mobile {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
        background: #fff;
        border: 1px solid #f3f4f6;
        border-radius: 16px;
        position: relative;
    }

    .specialist-card-mobile .specialist-card-icon {
        width: 40px;
        height: 40px;
        background: rgba(233, 78, 12, 0.05);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
    }

    .specialist-card-mobile .specialist-card-content h4 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .specialist-card-mobile .specialist-card-content p {
        font-size: 14px;
        color: #666;
        line-height: 1.4;
    }

    .specialist-card-mobile .specialist-card-check {
        position: absolute;
        top: 24px;
        right: 24px;
        color: var(--primary);
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        background: url('../img/hero_mb.png') !important;
        min-height: auto;
        padding-bottom: 60px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }

    .hero-content {
        padding-top: 40px;
        align-items: center;
        text-align: center;
    }

    .logo-container {
        margin-bottom: 40px;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .tags {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .tag-badge {
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .iceberg-section {
        padding: 60px 0;
        min-height: auto;
    }

    .iceberg-content {
        max-width: 100%;
    }

    .iceberg-content h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .glass-card-text {
        border-radius: 100px;
        padding: 32px 24px;
    }

    .iceberg-line {
        display: block;
        width: 1px;
        height: 60px;
        background: linear-gradient(to bottom, var(--primary), transparent);
        margin: 24px auto;
        position: relative;
    }

    .iceberg-line::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
    }

    .iceberg-subtitle {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .glass-card {
        padding: 32px 20px;
        min-height: auto;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .service-card {
        padding: 24px;
    }

    .service-stats {
        justify-content: center;
    }

    .specialists-section {
        padding: 60px 0;
    }

    .specialists-section h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .structure-section {
        padding: 60px 0;
    }

    .structure-section h2 {
        font-size: 32px !important;
        line-height: 1.1 !important;
    }

    .structure-grid {
        grid-template-columns: 1fr;
    }

    .text-center-mobile {
        text-align: center;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 32px !important;
    }

    .faq-trigger {
        padding: 20px;
        font-size: 16px;
    }

    .footer-cta {
        padding: 60px 0 0;
    }

    .footer-cta .flex-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-cta-content {
        padding: 0 0 60px;
        order: 1;
    }

    .footer-cta-content h2 {
        font-size: 36px !important;
        line-height: 1.1 !important;
    }

    .man-image-container {
        order: 2;
        margin-top: 0;
        width: 100%;
    }

    .man-image {
        max-width: 100%;
        margin-top: 0;
    }

    .flex-row {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .flex-row-reverse, .flex-row {
        flex-direction: column;
        text-align: center;
    }
    .man-image-container {
        margin-top: -150px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
    }
    .hero-title, .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .iceberg-container {
        justify-content: center;
    }
    .logo-container {
        justify-content: center;
    }
     }
