/* Estilos Globais */
:root {
    --light-color: #FFFFFF;
    --dark-color: #0A0515;
    --gradient: linear-gradient(135deg, #1E1033 0%, #2D1A4A 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.8rem;
}

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

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

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

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

/* Botões */
.cta-button, .submit-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.cta-button:hover, .submit-button:hover {
    background-color: #d12836;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/market_frame_3d_logo.png');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 300px;
    margin: 0 auto;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Serviços Section */
.services {
    background-color: var(--dark-color);
}

.service-package {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
}

.service-image {
    max-width: 600px;
    margin-bottom: 2rem;
}

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

.service-item {
    background: rgba(30, 16, 51, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

/* Diferenciais Section */
.diferenciais {
    background: var(--gradient);
}

.diferenciais-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diferenciais-image {
    max-width: 500px;
    margin-bottom: 3rem;
}

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

.diferencial-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Cases Section */
.cases {
    background-color: var(--dark-color);
}

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

.case-item {
    background: rgba(30, 16, 51, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-content {
    margin-top: 1rem;
}

.case-detail {
    margin-bottom: 1rem;
}

.case-detail h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.cases-mockups {
    max-width: 800px;
    margin: 0 auto;
}

/* Processo Section */
.processo {
    background: var(--gradient);
}

.processo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.processo-image {
    max-width: 800px;
    margin-bottom: 3rem;
}

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

.processo-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.processo-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Dispositivos Section */
.dispositivos {
    background-color: var(--dark-color);
    padding: 3rem 0;
}

.dispositivos-content {
    text-align: center;
}

.dispositivos-image {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    background: var(--gradient);
    padding: 5rem 0;
}

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

.oferta {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.oferta ul {
    list-style-position: inside;
    margin-bottom: 1rem;
    text-align: left;
    padding-left: 1rem;
}

.oferta li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-form input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.limited {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    padding: 2rem 0;
    text-align: center;
}

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

/* Animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.logo, .service-image, .diferencial-image, .processo-image {
    animation: float 6s ease-in-out infinite;
}

/* Media Queries */
@media (min-width: 768px) {
    .service-package {
        flex-direction: row;
        text-align: left;
        gap: 3rem;
    }
    
    .diferenciais-content {
        flex-direction: row;
        gap: 3rem;
    }
    
    .diferenciais-image {
        margin-bottom: 0;
    }
    
    .processo-content {
        flex-direction: row;
        gap: 3rem;
    }
    
    .processo-image {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .service-image, .diferencial-image, .processo-image {
        max-width: 100%;
    }
}
