/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== UTILIDADES ===== */
.highlight {
    color: #000000;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.loader-logo {
    animation: float 3s ease-in-out infinite;
}

.loader-logo img {
    height: 80px;
    width: auto;
    filter: brightness(0);
}

.loader-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.loader-text .sub {
    font-size: 14px;
    letter-spacing: 4px;
    opacity: 0.7;
    margin-left: 5px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #000000;
}

.logo-sub {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #666666;
}

/* Menu Desktop */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #666666;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000000;
}

.nav-number {
    font-size: 12px;
    color: #999999;
    font-weight: 400;
}

.cta-nav {
    background-color: #000000;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 6px;
    margin-left: 10px;
}

.cta-nav:hover {
    background-color: #333333;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-line {
    width: 25px;
    height: 2px;
    background-color: #000000;
    transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-container {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 18px;
}

.mobile-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0);
}

.mobile-close {
    background: none;
    border: none;
    color: #666666;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-close:hover {
    color: #000000;
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #666666;
    font-size: 18px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    color: #000000;
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-link i {
    width: 24px;
    text-align: center;
}

.cta-mobile {
    background-color: #000000;
    color: #ffffff !important;
    margin-top: 20px;
}

.mobile-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666666;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #000000;
}

.contact-link i {
    width: 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.subtitle-line {
    width: 40px;
    height: 1px;
    background-color: #000000;
}

.hero-subtitle span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666666;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 70%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000000;
    animation: floatElement 20s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.element-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatElement {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-15px, 15px) rotate(180deg); }
    75% { transform: translate(10px, 10px) rotate(270deg); }
}

.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.main-logo img {
    height: 300px;
    width: auto;
    filter: brightness(0);
}

/* ===== SECTIONS GERAIS ===== */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    margin-bottom: 30px;
}

.section-label span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #666666;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.8;
}

/* ===== SOBRE ===== */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-text h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000000;
}

.sobre-text p {
    font-size: 17px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature i {
    color: #000000;
    font-size: 20px;
    margin-top: 3px;
}

.feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
}

.feature p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.sobre-image {
    position: relative;
}

.image-container {
    width: 100%;
    height: 400px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
}

/* ===== SERVIÇOS ===== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.servico-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.servico-icon {
    font-size: 40px;
    color: #000000;
}

.servico-number {
    font-size: 32px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.servico-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.servico-description {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.servico-features {
    list-style: none;
    margin-bottom: 30px;
}

.servico-features li {
    padding: 8px 0;
    color: #666666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.servico-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.servico-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price {
    font-weight: 600;
    color: #000000;
    font-size: 15px;
}

.servico-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.servico-link:hover {
    color: #666666;
}

/* ===== PORTFÓLIO ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.portfolio-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.portfolio-image {
    height: 200px;
    background-color: rgba(0, 0, 0, 0.05);
    position: relative;
}

.image-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.portfolio-content p {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.portfolio-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.portfolio-tech span {
    padding: 6px 16px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
}

.portfolio-result {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.result-item {
    text-align: center;
}

.result-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.result-item span {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-cta {
    text-align: center;
}

/* ===== PROCESSO ===== */
.processo-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.processo-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}

.processo-step {
    position: relative;
    margin-bottom: 60px;
    width: calc(50% - 40px);
}

.processo-step:nth-child(odd) {
    margin-left: auto;
}

.step-number {
    position: absolute;
    top: 0;
    right: -60px;
    width: 40px;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    z-index: 2;
}

.processo-step:nth-child(odd) .step-number {
    right: auto;
    left: -60px;
}

.step-content {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.step-content p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-details {
    list-style: none;
    margin-top: 20px;
}

.step-details li {
    padding: 8px 0;
    color: #666666;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.step-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 20px;
    line-height: 1;
}

/* ===== CONTATO ===== */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contato-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-icon {
    font-size: 32px;
    color: #000000;
}

.info-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.info-content p {
    color: #666666;
    margin-bottom: 5px;
    font-size: 16px;
}

.info-content small {
    color: #999999;
    font-size: 13px;
}

/* Formulário */
.contato-form {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background-color: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #f8f8f8;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-text .logo-name {
    font-size: 20px;
}

.footer-logo-text .logo-sub {
    font-size: 11px;
}

.footer-description {
    color: #666666;
    line-height: 1.8;
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
}

.link-group a {
    color: #666666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #000000;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-social h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #000000;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.newsletter {
    margin-top: 20px;
}

.newsletter p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #333333;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #000000;
}

.newsletter-form button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #333333;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #666666;
    font-size: 14px;
}

.copyright strong {
    color: #000000;
    font-weight: 600;
}

.copyright i {
    color: #ff4757;
    margin: 0 5px;
}

.footer-extra {
    display: flex;
    gap: 30px;
}

.footer-extra a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-extra a:hover {
    color: #000000;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 60px;
    color: #000000;
    margin-bottom: 25px;
}

.modal-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.modal-text {
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
}

.modal-text strong {
    color: #000000;
}

.modal-btn {
    min-width: 150px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .hero-visual {
        width: 50%;
        opacity: 0.05;
    }
    
    .sobre-content,
    .contato-content {
        gap: 60px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .sobre-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sobre-image {
        order: -1;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .processo-timeline::before {
        left: 40px;
    }
    
    .processo-step {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
    
    .step-number {
        left: -60px !important;
        right: auto !important;
    }
    
    .form-row,
    .form-actions {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .servico-card,
    .portfolio-content,
    .step-content,
    .contato-form {
        padding: 30px 20px;
    }
    
    .mobile-container {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
}