/* DESIGN SYSTEM & DEFINIÇÕES GERAIS */
:root {
    --primary: #c28d5f; /* Tom de madeira nobre quente */
    --primary-hover: #a97548;
    --primary-light: #f6efe9;
    --dark-bg-1: #121212; /* Preto chumbo suave */
    --dark-bg-2: #1e1e1e; /* Cinza grafite escuro */
    --light-bg-1: #fbf9f5; /* Creme claro quente */
    --light-bg-2: #f4f0e6; /* Creme médio */
    --text-dark: #222222;
    --text-muted: #666666;
    --text-light: #f5f5f5;
    --text-muted-light: #bbbbbb;
    --whatsapp: #25d366;
    --whatsapp-hover: #20ba5a;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Tipografia */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg-1);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* UTILITÁRIOS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--dark-bg-1);
    color: var(--text-light);
}

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

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

/* Tags de Seção */
.section-tag {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-tag.tag-light {
    color: var(--primary);
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-title.text-white {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* BOTÕES PREMIUM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 141, 95, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    gap: 10px;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.icon-svg {
    width: 20px;
    height: 20px;
}

/* HEADER GLASSMORPHISM */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 24px 0;
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled .logo {
    color: var(--white);
}

.header.scrolled .nav-link {
    color: var(--white);
}

.header.scrolled .nav-link.active,
.header.scrolled .nav-link:hover {
    color: var(--white);
}

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

.logo {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
}

.logo-accent {
    color: var(--white);
}

.logo-sub {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: -4px;
    color: var(--white);
}

.header.scrolled .logo-sub {
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Ajuda na legibilidade */
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .hamburger-bar {
    background-color: var(--white);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.9) 30%, rgba(18, 18, 18, 0.4) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(194, 141, 95, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary-light);
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    color: var(--white);
    background-color: rgba(194, 141, 95, 0.28);
    border: 1px solid rgba(194, 141, 95, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.highlight-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
}

.highlight-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* SEÇÃO SOBRE A EMPRESA */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.sobre-img-container {
    position: relative;
}

.sobre-img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(194, 141, 95, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-number {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-title);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 4px;
}

.sobre-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.sobre-text {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-bullet {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-bullet h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-bullet p {
    font-size: 14px;
    color: var(--text-muted);
}

/* SEÇÃO SERVIÇOS */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--dark-bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 40px 32px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: var(--card-shadow-hover);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--text-dark);
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
    transition: var(--transition);
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted-light);
    transition: var(--transition);
    line-height: 1.6;
}

/* SEÇÃO DIFERENCIAIS */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.diferencial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 6px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.dif-num {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 16px;
    line-height: 1;
    transition: var(--transition);
}

.diferencial-card:hover .dif-num {
    color: var(--primary);
}

.diferencial-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.diferencial-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* MARCAS TRABALHADAS */
.marcas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.marca-card {
    background-color: var(--dark-bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: 6px;
    text-align: center;
    transition: var(--transition);
}

.marca-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.marca-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.marca-card p {
    font-size: 14px;
    color: var(--text-muted-light);
}

/* COMO FUNCIONA O ATENDIMENTO */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    z-index: 1;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-num {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    top: 15px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(194, 141, 95, 0.3);
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-num {
    left: -20px;
}

.timeline-item:hover .timeline-num {
    transform: scale(1.15);
    background-color: var(--primary-hover);
}

.timeline-content {
    padding: 24px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: 6px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--card-shadow-hover);
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* GALERIA DE SERVIÇOS */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.galeria-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-title {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: var(--transition);
}

.galeria-view {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    transform: translateY(10px);
    transition: var(--transition);
}

.galeria-item:hover .galeria-title,
.galeria-item:hover .galeria-view {
    transform: translateY(0);
}

/* FORMULÁRIO DE ORÇAMENTO */
.orcamento-section {
    background:
        linear-gradient(180deg, var(--light-bg-1) 0%, var(--light-bg-2) 100%);
}

.orcamento-container {
    max-width: 980px;
    margin: 0 auto;
}

.orcamento-form-wrapper {
    background-color: var(--white);
    padding: 44px;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.orcamento-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

#contact-form {
    width: 100%;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 24px;
}

.form-group-2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-full-width {
    grid-column: 1 / -1;
}

.form-group-2 label {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
}

.form-group-2 input,
.form-group-2 select,
.form-group-2 textarea {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 15px 16px;
    border-radius: 6px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background-color: var(--light-bg-1);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
}

.form-group-2 select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group-2 input::placeholder,
.form-group-2 textarea::placeholder {
    color: #999;
}

.form-group-2 input:hover,
.form-group-2 select:hover,
.form-group-2 textarea:hover {
    border-color: rgba(0, 0, 0, 0.25);
}

.form-group-2 input:focus,
.form-group-2 select:focus,
.form-group-2 textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(194, 141, 95, 0.15);
}

.form-group-2 textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.orcamento-buttons {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.orcamento-buttons .btn {
    min-height: 52px;
    padding: 15px 26px;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.notification-form {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.5;
}

.notification-form .form-alert-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
}

.notification-form.success {
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #15803d;
}

.notification-form.error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #b91c1c;
}

.notification-form.success .form-alert-icon {
    background-color: #15803d;
    color: var(--white);
}

.notification-form.error .form-alert-icon {
    background-color: #b91c1c;
    color: var(--white);
}

/* GARANTIA E CONFIANÇA */
.garantia-box {
    background-color: var(--light-bg-2);
    border-left: 6px solid var(--primary);
    padding: 60px;
    border-radius: 0 8px 8px 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.garantia-badge-icon {
    font-size: 70px;
    line-height: 1;
}

.garantia-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.garantia-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.garantia-content p:last-child {
    margin-bottom: 0;
}

.garantia-highlight {
    font-weight: 600;
    color: var(--text-dark) !important;
}

/* DEPOIMENTOS */
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--dark-bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    opacity: 1;
}

.stars {
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.slider-arrow {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* CTA FINAL */
.cta-final-section {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.95);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 46px;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-muted-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* RODAPÉ */
.footer-bottom {
    background-color: #0c0c0c;
    color: var(--text-muted-light);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand .footer-logo {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
}

.social-link {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-links li {
    line-height: 1.6;
}

.footer-icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

svg.footer-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    min-height: 20px;
    flex-shrink: 0;
    color: var(--primary);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* FLOATING WHATSAPP */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-floating:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-floating svg {
    width: 32px;
    height: 32px;
}

/* LIGHTBOX NATIVO */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
    z-index: 2100;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2050;
}

.lightbox-nav:hover {
    background-color: var(--primary);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    color: var(--white);
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

/* ANIMAÇÃO SCROLL REVEAL */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* KEYFRAMES */
@keyframes zoomOut {
    0% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* RESPONSIVIDADE (MEDIA QUERIES) */
@media (max-width: 1024px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .sobre-img-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 16px 0;
        background-color: rgba(18, 18, 18, 0.78);
        backdrop-filter: blur(10px);
    }

    .hero-section {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 132px;
        padding-bottom: 56px;
    }

    .hero-container {
        display: flex;
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .btn-header {
        display: none !important;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--dark-bg-1);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-link {
        color: var(--white);
        font-size: 18px;
    }
    
    .hamburger-btn.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-btn.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-num {
        left: 11px !important;
        right: auto !important;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    
    .galeria-item img {
        height: 280px;
    }
    
    .garantia-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 20px;
        text-align: center;
    }
    
    .garantia-badge-icon {
        font-size: 60px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .cta-title {
        font-size: 32px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .form-full-width {
        grid-column: 1;
    }
    
    .orcamento-form-wrapper {
        padding: 30px 20px;
    }

    .orcamento-buttons {
        flex-direction: column;
    }

    .orcamento-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 126px;
        padding-bottom: 44px;
    }

    .hero-badge {
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.18;
        margin-bottom: 20px;
        letter-spacing: 0;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-ctas {
        margin-bottom: 40px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .marcas-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        padding: 16px 24px;
        bottom: -20px;
        right: -10px;
    }
    
    .badge-number {
        font-size: 30px;
    }
    
    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-floating svg {
        width: 26px;
        height: 26px;
    }
}
