/* Variáveis de Cores */
:root {
    --primary-color: #34495e;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --background-color: #ecf0f1;
    --text-color: #2c3e50;
    --text-secondary-color: #7f8c8d;
    --white: #ffffff;
    --font-size-base: 1rem;
    --font-size-large: 1.2rem;
    --font-size-small: 0.9rem;
    --spacing-base: 1rem;
    --spacing-large: 2rem;
    --spacing-small: 0.5rem;
    --header-height: 120px;
}

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem); /* Fonte flexível */
}

html {
    scroll-behavior: smooth;
}

/* Tipografia de Cabeçalhos */
h1 {
    font-size: 2rem;
    margin: 1rem 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Container Padrão */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 2vw, 1rem); /* Adiciona padding flexível */
}

/* Cabeçalho Empresarial */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    height: clamp(90px, 18vw, 110px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
    height: 80px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    max-width: 1400px;
    padding: 0 20px;
    gap: 30px;
}

/* Área de espaçamento à direita para balancear */
.nav-spacer {
    width: clamp(180px, 18vw, 240px);
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(180px, 18vw, 240px);
    height: clamp(75px, 15vw, 100px);
    transition: transform 0.2s ease;
    padding: 8px;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

/* Logo ajustada quando header está em scroll */
header.scrolled .logo {
    width: clamp(140px, 15vw, 180px);
    height: clamp(60px, 12vw, 75px);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.2s ease;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25)) brightness(1.15) contrast(1.2) saturate(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    max-width: 600px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 126, 95, 0.08);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(255, 126, 95, 0.12);
    font-weight: 600;
}

/* Toggle Menu (Hamburger Simples) */
.nav-toggle {
    display: none;
    position: absolute;
    left: -9999px;
}

.nav-toggle-label {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    background: transparent;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.nav-toggle-label:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-toggle-label span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2c3e50;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

/* Animações do ícone do menu */
.nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Exibe o menu quando o toggle está marcado */
.nav-toggle:checked ~ .nav-menu {
    right: 0;
}

/* Menu mobile empresarial */
@media (max-width: 768px) {
    header {
        height: 70px;
        padding: 0 20px;
    }

    .nav-toggle-label {
        display: flex;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        padding: 25px 20px;
        box-shadow: -2px 0 16px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li {
        margin: 0 0 8px 0;
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 15px 18px;
        color: #2c3e50;
        font-weight: 500;
        font-size: 1rem;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: transparent;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu a:hover {
        color: var(--primary-color);
        background: rgba(255, 126, 95, 0.08);
        transform: translateX(4px);
    }

    .nav-menu a.active {
        color: var(--primary-color);
        background: rgba(255, 126, 95, 0.12);
        border-left: 3px solid var(--primary-color);
        transform: translateX(4px);
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    header {
        height: 65px;
        padding: 0 15px;
    }

    .nav-toggle-label {
        right: 15px;
    }

    .nav-menu {
        top: 65px;
        width: 260px;
        height: calc(100vh - 65px);
        padding: 20px 15px;
    }

    .nav-menu a {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .nav-menu li {
        margin: 0;
        width: auto;
    }

.nav-menu a {
    background: transparent;
    border: none;
    border-bottom: none;
    padding: 10px 18px;
    font-size: 0.95rem;
}
}

/* Seção Hero */
.hero {
    background-image: url('https://images.pexels.com/photos/9893729/pexels-photo-9893729.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-top: clamp(90px, 18vw, 110px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(44, 62, 80, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-base);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Fonte flexível */
    margin-bottom: 20px;
    font-family: 'Rubik', sans-serif;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Fonte flexível */
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

/* Seção Sobre Nós */
.about {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(52, 58, 64, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.about .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1 1 450px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.about-image img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about-content {
    flex: 1 1 500px;
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 8px 8px 0 0;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
    text-align: left;
    padding-left: 0;
}

.about-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 12px 24px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #27ae60;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .about .container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .about-image {
        flex: 1 1 100%;
        padding: 10px;
        order: 1;
    }

    .about-image img {
        max-width: 85%;
        border-radius: 15px;
    }

    .about-content {
        flex: 1 1 100%;
        padding: 30px 25px;
        margin: 0;
        order: 2;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content p {
        font-size: 1rem;
        padding-left: 15px;
        margin-bottom: 25px;
        text-align: left;
    }

    .about-content a {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }

    .about .container {
        padding: 0 15px;
        gap: 20px;
    }

    .about-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-left: 12px;
    }

    .about-image img {
        max-width: 90%;
        border-radius: 12px;
    }

    .about-content a {
        padding: 16px 25px;
        font-size: 1rem;
    }
}

/* Seção Serviços */
.services {
    background: #2c3e50;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-item i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: block;
    transition: all 0.3s ease;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.service-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade para Seção Serviços */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .service-item {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .service-item i {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .service-item h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .service-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 50px 0;
    }
    
    .services h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        padding: 0 15px;
        gap: 25px;
    }
    
    .service-item {
        padding: 35px 20px;
        border-radius: 15px;
    }
    
    .service-item i {
        font-size: 3rem;
        margin-bottom: 18px;
    }
    
    .service-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .service-item::after {
        width: 25px !important;
        height: 25px !important;
        top: 15px !important;
        right: 15px !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .service-item:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Seção Como Funciona */
.how-it-works {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(52, 58, 64, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

/* Linha conectora removida para melhor layout em grid */

.step {
    flex: 1 1 250px;
    max-width: 280px;
    background: #ffffff;
    padding: 50px 25px 35px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    z-index: 2;
    width: 100%;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.step span {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: var(--secondary-color);
    border: 2px solid white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 3;
}

.step h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsividade para Seção Como Funciona */
@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .step {
        flex: 1 1 100%;
        max-width: 350px;
        margin: 0;
        padding: 50px 25px 35px;
    }
    
    .step span {
        top: -20px;
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
        margin: 20px 0 12px;
    }
    
    .step p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 50px 0;
    }
    
    .how-it-works h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .steps {
        gap: 40px;
        padding: 0 15px;
    }
    
    .step {
        max-width: 300px;
        padding: 45px 20px 30px;
        border-radius: 15px;
    }
    
    .step span {
        top: -18px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
        border-width: 2px;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin: 18px 0 10px;
    }
    
    .step p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .step::after {
        bottom: 10px;
        right: 12px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .steps {
        gap: 30px;
    }
    
    .step {
        flex: 1 1 220px;
        max-width: 240px;
        padding: 55px 25px 35px;
    }
    
    .steps::before {
        left: 8%;
        right: 8%;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .steps {
        gap: 35px;
    }
    
    .step {
        flex: 1 1 230px;
        max-width: 250px;
    }
}

/* Seção de Orçamento */
.budget {
    padding: 100px 0;
    background: #2c3e50;
    position: relative;
    overflow: hidden;
}

.budget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.budget .container {
    position: relative;
    z-index: 2;
}

.budget h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: var(--white);
    font-weight: 700;
    text-align: center;
    position: relative;
}

.budget h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.budget-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 35px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    position: relative;
}

.budget-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 8px 8px 0 0;
}

.budget-form legend {
    position: absolute;
    top: -12px;
    left: 25px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.budget .form-group {
    margin-bottom: 25px;
    position: relative;
}

.budget .form-group label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.budget .form-group input,
.budget .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #2c3e50;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
}

.budget .form-group input:hover,
.budget .form-group textarea:hover {
    border-color: #ced4da;
}

.budget .form-group input::placeholder,
.budget .form-group textarea::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.budget .form-group input:focus,
.budget .form-group textarea:focus {
    border-color: var(--secondary-color);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    transform: translateY(-1px);
}

.budget .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.budget .form-group small {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 0.85rem;
    font-style: italic;
}

/* Validação removida para evitar campos vermelhos automaticamente */

.budget button[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
}

.budget button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #239954;
}

.budget button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Efeitos de loading no botão */
.budget button[type="submit"]:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Ícones nos campos */
.budget .form-group.with-icon {
    position: relative;
}

.budget .form-group.with-icon::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #6c757d;
    font-size: 1rem;
    z-index: 1;
}

.budget .form-group.with-icon input {
    padding-left: 45px;
}

/* Responsividade para Seção de Orçamento */
@media (max-width: 768px) {
    .budget {
        padding: 60px 0;
    }
    
    .budget h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .budget-form {
        margin: 0 20px;
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .budget-form legend {
        left: 20px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .budget .form-group {
        margin-bottom: 20px;
    }
    
    .budget .form-group label {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .budget .form-group input,
    .budget .form-group textarea {
        padding: 12px 15px;
        border-radius: 12px;
        font-size: 0.95rem;
    }
    
    .budget .form-group textarea {
        min-height: 100px;
    }
    
    .budget button[type="submit"] {
        padding: 15px 25px;
        font-size: 1.1rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .budget {
        padding: 50px 0;
    }
    
    .budget h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .budget-form {
        margin: 0 15px;
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .budget-form legend {
        left: 15px;
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .budget .form-group {
        margin-bottom: 18px;
    }
    
    .budget .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .budget .form-group input,
    .budget .form-group textarea {
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 0.9rem;
    }
    
    .budget .form-group textarea {
        min-height: 90px;
    }
    
    .budget button[type="submit"] {
        padding: 14px 20px;
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .budget .form-group small {
        font-size: 0.8rem;
    }
}

/* Seção Contato */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(52, 58, 64, 0.02) 0%, transparent 100%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact > .container > p {
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-info {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 8px 8px 0 0;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 1px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-info ul li:hover {
    background: white;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info ul li i {
    margin-right: 15px;
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    transition: all 0.3s ease;
}

.contact-info ul li i {
    background: var(--secondary-color);
    color: white;
}

.contact-info ul li:hover i {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-info ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info ul li:hover a {
    color: var(--primary-color);
}

.social-media {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.social-media h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.social-media a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-media a:nth-child(2) {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
}

.social-media a:nth-child(3) {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.social-media a i {
    font-size: 1.3rem;
    z-index: 2;
    position: relative;
}

.social-media a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.social-media a:hover::before {
    left: 100%;
}

.social-media a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
    border-radius: 20px 20px 0 0;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.map-container h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.map-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.map-embed {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-embed:hover {
    transform: scale(1.02);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 12px 25px rgba(0, 0, 0, 0.08);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .contact > .container > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-info,
    .map-container {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .contact-info h3,
    .map-container h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .contact-info ul li {
        padding: 12px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    .contact-info ul li i {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    .social-media {
        margin-top: 25px;
        padding-top: 20px;
        text-align: center;
    }
    
    .social-media a {
        width: 45px;
        height: 45px;
        margin: 0 8px;
    }
    
    .social-media a i {
        font-size: 1.2rem;
    }
    
    .map-embed {
        height: 300px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .contact > .container > p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .contact-details {
        gap: 25px;
        padding: 0 15px;
    }
    
    .contact-info,
    .map-container {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .contact-info h3,
    .map-container h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .contact-info ul li {
        padding: 10px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }
    
    .contact-info ul li i {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .social-media {
        margin-top: 20px;
        padding-top: 18px;
    }
    
    .social-media h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .social-media a {
        width: 42px;
        height: 42px;
        margin: 0 6px;
    }
    
    .social-media a i {
        font-size: 1.1rem;
    }
    
    .map-embed {
        height: 250px;
        border-radius: 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-details {
        gap: 40px;
    }
    
    .contact-info,
    .map-container {
        padding: 35px 30px;
    }
    
    .map-embed {
        height: 320px;
    }
}

/* Rodapé */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 1rem;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px; /* Largura e altura iguais */
    height: 60px; /* Largura e altura iguais */
    border-radius: 50%; /* Torna o botão circular */
    text-align: center;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s, transform 0.2s ease;
    text-decoration: none; /* Remove sublinhado */
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: scale(1.05); /* Efeito leve de aumento ao aparecer */
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: scale(1.1); /* Efeito de hover */
}

.back-to-top i {
    font-size: 1.5rem; /* Tamanho da seta */
}

/* Botão de WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none; /* Remove o sublinhado */
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Formulário de Contato */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--white); /* Fundo branco para destacar o formulário */
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave para dar profundidade */
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--text-secondary-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--background-color);
    color: var(--text-color);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color); /* Cor de destaque ao focar no campo */
    outline: none; /* Remove o outline padrão */
}

.form-group textarea {
    resize: vertical; /* Permite redimensionar apenas na vertical */
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }

    .contact-form button {
        padding: 12px;
        font-size: 1rem;
    }
}

/* =========================
   GALERIA DE PROJETOS - GRID RESPONSIVO
   ========================= */

.projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.projects p {
    text-align: center;
    color: var(--text-secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.projects-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Padding para dar espaço aos botões */
}

.carousel-container {
    position: relative;
    overflow: hidden; /* Controla o overflow dos cards */
    border-radius: 15px;
    height: 520px; /* Altura otimizada para 3 cards */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
    height: 100%;
    width: 100%; /* Largura normal - vamos mover apenas 1 card por vez */
}

/* Improved hover effects */
.project-card {
    flex: 0 0 calc(33.333% - 10px); /* 3 cards por tela, menos margem */
    padding: 0;
    margin: 0 10px 0 0; /* Margem apenas à direita */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 490px; /* Altura otimizada */
    transition: all 0.3s ease;
}

/* Remove margem direita do último card visível */
.project-card:nth-child(3n) {
    margin-right: 0;
}

/* Removido o efeito de hover que causava zoom
.project-card:hover {
    transform: translateY(-5px);
}
*/

.project-card .project-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px; /* Altura da imagem otimizada */
    margin-bottom: 15px; /* Apenas margem inferior */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

/* Removido efeito de hover/zoom na imagem
.project-card:hover .project-image {
    transform: scale(1.03);
}
*/

.project-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.project-tag {
    background: rgba(39, 174, 96, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
    flex: 1; /* Faz o card se expandir para preencher altura disponível */
    display: flex;
    flex-direction: column;
}

.project-card:hover .project-info {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
    flex: 1; /* Faz o texto se expandir */
}

.project-details {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto; /* Empurra os detalhes para o final do card */
}

.project-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.project-details i {
    font-size: 0.9rem;
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    opacity: 0.9;
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    opacity: 1;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
    border-color: var(--secondary-color);
}

.carousel-dot:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .projects-carousel {
        padding: 0 50px;
    }
    
    .carousel-container {
        height: 490px;
    }
    
    .carousel-track {
        width: 100%; /* Largura normal no tablet */
    }
    
    .project-card {
        flex: 0 0 calc(50% - 6px); /* 2 cards por tela no tablet */
        height: 460px;
        padding: 0;
        margin: 0 6px 0 0;
    }
    
    .project-card .project-image {
        height: 230px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }
    
    .projects h2 {
        font-size: 2rem;
    }
    
    .projects-carousel {
        padding: 0 40px;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .carousel-track {
        width: 100%; /* Largura normal no mobile */
    }
    
    .project-card {
        flex: 0 0 calc(100% - 4px); /* 1 card por tela no mobile */
        padding: 0;
        margin: 0 4px 0 0;
        height: 420px;
    }
    
    .project-card .project-image {
        height: 210px;
        margin-bottom: 12px;
    }
    
    .project-info {
        padding: 18px;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .project-details {
        gap: 10px;
    }
    
    .project-details span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        display: none;
    }
    
    .projects p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .project-card {
        height: 370px;
    }
    
    .carousel-container {
        height: 400px; /* Altura para telas pequenas */
    }
    
    .project-card .project-image {
        height: 180px;
    }
    
    .project-info {
        padding: 15px;
    }
    
    .project-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-title {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    background: white;
}

/* Lightbox Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.5);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Cursor pointer for clickable images */
.lightbox-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-trigger:hover {
    transform: scale(1.02);
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
        border-radius: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .lightbox-title {
        padding: 15px;
        font-size: 1rem;
    }
    
    #lightbox-image {
        max-height: 75vh;
    }
}

h2#orcamento-heading{
    text-align: center;
}

/* FORÇA LARGURA TOTAL - SOLUÇÃO MARGEM ESQUERDA */


/* FORÇA LARGURA TOTAL - SOLUÇÃO MELHORADA */
.projects-carousel {
    position: relative;
    width: 100vw;
    max-width: none;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    padding: 0 80px; /* Aumentei o padding para dar mais espaço */
    box-sizing: border-box;
}

.projects .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Ajuste de botões para o novo layout */
.carousel-btn {
    z-index: 1000;
    position: absolute;
    pointer-events: auto;
}

/* Força overflow controlado para mostrar botões */
.carousel-container {
    overflow: hidden;
    position: relative;
}

/* Adiciona indicador de loading para melhor UX */
.carousel-loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Melhora a performance em dispositivos móveis */
.carousel-track {
    backface-visibility: hidden;
    perspective: 1000px;
}
