/* Estilos Globais */
:root {
    --color-dark: #191919;
    --color-black: #121212;
    --color-white: #ffffff;
    --color-light-gray: #e6e9e8;
    --color-light-blue: #e7eaec;
    --color-accent: #8b949e;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    font-feature-settings: "ss01", "ss02", "cv01", "cv02";
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

section {
    padding: 6rem 0;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 66px;
    width: auto;
    object-fit: contain;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.9rem;
    opacity: 0.9;
    position: relative;
}

.header-nav a:hover {
    opacity: 1;
}

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.dropdown > a:hover {
    background: #2a2a2a;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    background: #121212;
    backdrop-filter: blur(10px);
    border: 1px solid #2a2a2a;
    border-radius: 0.75rem;
    padding: 0.5rem;
    visibility: hidden;
    transform-origin: top center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #121212;
    border-left: 1px solid #2a2a2a;
    border-top: 1px solid #2a2a2a;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #2a2a2a;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item-title {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.dropdown-item-description {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.4;
}

.dropdown-menu a:hover .dropdown-item-title {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-actions a {
    cursor: pointer;
    display: inline-block;
}

.btn-login {
    font-size: 0.9rem;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.btn-login:hover {
    opacity: 1;
}

.btn-demo {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-demo:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 40rem;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-video {
    margin-top: 4rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background-color: var(--color-dark);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Removendo estilos não utilizados do botão play */
.play-button,
.play-icon,
.video-playing {
    display: none;
}

/* Clients Section */
.clients {
    text-align: center;
    background-color: var(--color-dark);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 0 2rem;
}

.client-logo {
    height: 2rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.client-logo:hover {
    opacity: 1;
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.link-with-arrow::after {
    content: '›';
    margin-left: 0.25rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.link-with-arrow:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

.link-with-arrow:hover::after {
    transform: translateX(5px);
}

/* Platform Section */
.platform {
    text-align: center;
    padding: 6rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    margin-top: 5rem;
}

.feature-card {
    display: flex;
    background-color: var(--color-dark);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, opacity 0.5s ease;
    min-height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 20%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0) 100%);
}

.feature-card.reversed {
    flex-direction: row-reverse;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-content {
    flex: 1;
    padding: 5rem 4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--color-dark);
    padding: 0;
}

.feature-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-label {
    display: inline-block;
    margin-bottom: 1rem;
    opacity: 0.7;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8abb0;
}

.feature-card h3 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.document-preview, .integrations-box, .table-preview, .workflow-preview, .dashboard-preview {
    width: 85%;
    height: 85%;
    background-color: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover .document-preview,
.feature-card:hover .integrations-box,
.feature-card:hover .table-preview,
.feature-card:hover .workflow-preview,
.feature-card:hover .dashboard-preview {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    flex-direction: column;
    background-color: #f6f8f9;
    padding: 0;
    overflow: hidden;
}

.dashboard-widget {
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    background-color: #1a1a1a;
    color: white;
    padding: 1.5rem;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
}

.dashboard-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.price-metric {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eeeeee;
}

.price-metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #555;
    font-size: 1rem;
}

.metric-value {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Unlock AI Section */
.unlock-ai {
    text-align: center;
    background-color: var(--color-dark);
    padding: 8rem 0;
    position: relative;
}

.unlock-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

.benefits {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    margin-top: 5rem;
}

.benefit-card {
    flex: 1;
    text-align: left;
    transition: transform 0.5s ease, opacity 0.5s ease, background-color 0.3s ease;
    padding: 3rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover, .benefit-card.highlight {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.benefit-card p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonial Section */
.testimonial {
    padding: 6rem 0;
    background-color: var(--color-light-blue);
    color: var(--color-black);
}

.testimonial-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    transition: transform 0.5s ease, opacity 0.5s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image img {
    border-radius: 0.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    flex: 1;
}

blockquote {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.author-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: var(--color-light-blue);
    color: var(--color-black);
    padding: 6rem 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    margin-top: 1.5rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo a {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: inline-block;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsividade */
@media (max-width: 1200px) {
    .feature-content {
        padding: 4rem 3rem;
        max-width: none;
    }
    
    .feature-card h3 {
        font-size: 2.25rem;
    }
}

@media (max-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .feature-card, .feature-card.reversed {
        flex-direction: column;
        min-height: auto;
    }
    
    .feature-content {
        padding: 3rem 2rem;
        max-width: 100%;
    }
    
    .feature-image {
        min-height: 400px;
    }
    
    .benefits {
        flex-direction: column;
    }
    
    .testimonial-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero {
        padding-top: 7rem;
    }
    
    .subtitle {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .client-logos {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .client-logo {
        height: 1.5rem;
        width: 25%;
        object-fit: contain;
        margin-bottom: 1rem;
    }
    
    .feature-grid {
        gap: 4rem;
        margin-top: 3rem;
    }
    
    .feature-card {
        border-radius: 0.5rem;
    }
    
    .feature-content {
        padding: 2rem 1.5rem;
    }
    
    .feature-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .feature-image {
        min-height: 300px;
        padding: 1rem;
    }
    
    .document-preview, .integrations-box, .table-preview, .workflow-preview, .dashboard-preview {
        width: 95%;
        height: 90%;
    }
    
    .unlock-ai {
        padding: 4rem 0;
    }
    
    .benefits {
        margin-top: 3rem;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial {
        padding: 4rem 0;
    }
    
    .testimonial-container {
        gap: 2.5rem;
    }
    
    blockquote {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
    
    /* Melhorar experiência de toque */
    .btn-primary, .btn-demo, .link-with-arrow {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
    
    .workflow-item {
        padding: 1.25rem 0.75rem;
    }
    
    /* Melhorar tabelas em dispositivos pequenos */
    .table-cell {
        padding: 0.85rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .header-logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .client-logo {
        width: 33.33%;
    }
    
    .feature-grid {
        gap: 3.5rem;
    }
    
    .feature-content {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-image {
        min-height: 250px;
    }
    
    .benefit-card {
        padding: 1.75rem 1.25rem;
    }
    
    blockquote {
        font-size: 1.25rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Melhorar a usabilidade do toque em telas muito pequenas */
    .btn-primary, .btn-demo {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Layout da tabela em telas muito pequenas */
    .table-preview {
        font-size: 0.75rem;
    }
    
    .table-cell {
        padding: 0.75rem 0.5rem;
    }
    
    /* Workflow em telas muito pequenas */
    .workflow-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Styles - para melhorar interações em dispositivos touch */
@media (hover: none) {
    .btn-primary:active, .btn-demo:active {
        transform: scale(0.98);
    }
    
    .feature-card:active .document-preview,
    .feature-card:active .integrations-box,
    .feature-card:active .table-preview,
    .feature-card:active .workflow-preview,
    .feature-card:active .dashboard-preview {
        transform: translateY(-3px);
    }
    
    .benefit-card:active {
        transform: translateY(-5px);
    }
    
    .workflow-item:active {
        transform: translateY(-2px);
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-black);
    z-index: 100;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
    cursor: pointer;
}

.mobile-menu .btn-demo {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    cursor: pointer;
}

.mobile-menu .btn-login {
    cursor: pointer;
}

/* Document Content */
.document-content {
    padding: 2rem;
    color: var(--color-black);
    font-size: 0.85rem;
    opacity: 0.8;
}

.document-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--color-black);
    font-size: 0.85rem;
}

.integration-item {
    color: var(--color-black);
    padding: 1rem;
    border-radius: 0.25rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Table Preview */
.table-preview {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: #f0f0f0;
    padding: 1rem;
    font-size: 0.85rem;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
    background-color: #e0e0e0;
    margin-bottom: 1px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
    background-color: var(--color-white);
}

.table-cell {
    padding: 0.75rem 1rem;
    color: var(--color-black);
}

.table-header .table-cell {
    font-weight: 500;
    background-color: #f5f5f5;
}

/* Workflow Preview */
.workflow-preview {
    padding: 1rem;
    position: relative;
}

.workflow-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    color: var(--color-black);
}

.workflow-item {
    background-color: var(--color-white);
    border-radius: 0.25rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.workflow-icon {
    font-size: 1.5rem;
}

.workflow-text {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Product Page Styles */
.product-hero {
    padding-top: 10rem;
    padding-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-hero h1 {
    font-size: 4rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.product-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.product-demo {
    margin-top: 5rem;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.product-demo-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    background-color: var(--color-dark);
    aspect-ratio: 16 / 9;
}

.video-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-accent);
    cursor: pointer;
}

.video-label svg {
    width: 20px;
    height: 20px;
}

.product-features {
    margin-top: 6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--color-dark);
}

/* Estilo sofisticado para cards de produto */
.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.product-feature-card {
    background-color: rgba(25, 25, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

.product-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: rgba(35, 35, 35, 0.5);
}

.product-feature-icon {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    display: inline-block;
}

.product-feature-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--color-white);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.product-feature-card:hover .product-feature-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.product-feature-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.product-feature-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Adicionando uma seção para casos de uso */
.use-cases {
    padding: 6rem 0;
    background-color: var(--color-black);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.use-case-card {
    background-color: var(--color-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.use-case-image {
    height: 200px;
    background-color: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.use-case-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.use-case-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.use-case-link {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }
    
    .product-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 1000px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        padding: 1rem 1.5rem;
    }
}

a[role="button"] {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
} 