/* ================================
   ESTILOS GLOBAIS
   ================================ */

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

:root {
    --primary-dark: #2d1b4e;
    --primary-light: #6c3483;
    --accent-white: #ffffff;
    --accent-black: #000000;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --border-color: #e7dff7;
    --border-radius: 16px;
    --transition: all 0.3s ease;
    --shadow-soft: 0 18px 40px rgba(13, 13, 27, 0.08);
    --shadow-strong: 0 24px 60px rgba(13, 13, 27, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: linear-gradient(135deg, #07030d 0%, #12091f 35%, #1b1132 100%);
    color: var(--accent-white);
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Accessibility helpers */
.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: var(--primary-dark);
    color: #fff;
    padding: 8px 12px;
    z-index: 10000;
    border-radius: 6px;
    text-decoration: none;
}
.skip-link:focus {
    left: 12px;
}

:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 34px;
    height: 34px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
    transition: var(--transition);
}

.hamburger:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 6px;
}


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

/* ================================
   TIPOGRAFIA
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-white);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 3rem;
}

/* ================================
   BOTÕES
   ================================ */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
    text-align: center;
    font-family: inherit;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    box-shadow: 0 12px 30px rgba(109, 40, 217, 0.25);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(109, 40, 217, 0.35);
    filter: brightness(1.04);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.95rem;
    width: 100%;
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-card {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-card:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(109, 40, 217, 0.22);
}

/* ================================
   NAVEGAÇÃO
   ================================ */

.navbar {
    background: rgba(18, 9, 31, 0.65);
    color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
    transition: background 0.25s ease, transform 0.25s ease;
}

.navbar:hover {
    background: rgba(18, 9, 31, 0.82);
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.3rem 0.4rem;
}

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

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img,
.logo-image {
    height: 55px;
    width: auto;
    display: block;
}

.logo-subtitle {
    display: none;
}

.logo h1 {
    font-size: 1.6rem;
    color: var(--white);
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo p {
    font-size: 0.7rem;
    color: var(--accent-white);
    margin: 0;
    font-weight: 600;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0;
}

.nav-menu a:hover {
    color: var(--accent-white);
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-white);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
}

/* ================================
   HERO SECTION (CORRIGIDO E AMPLIADO)
   ================================ */

.hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(139,92,246,.35), transparent 28%),
                linear-gradient(135deg, #07030d 0%, #12091f 42%, #1b1132 100%);
    padding: 140px 0 80px;
    overflow: hidden;
    position: relative;
}

.top-banner {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
}

.top-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.hero::after {
    content: '';
    position: absolute;
    left: -40px;
    top: 20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 65%);
    filter: blur(30px);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
    max-width: 700px;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    z-index: 2;
}

.hero-panel h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hero-list li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.15rem;
    position: relative;
    line-height: 1.7;
}

.hero-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #b88cff;
    font-weight: 700;
}

.hero-highlight {
    color: #f4e8ff;
    font-weight: 600;
    line-height: 1.7;
}

.hero-tag {
    color: #d0b4ff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 4.2rem;
    line-height: 1.05;
    font-weight: 800;
    margin: 0 0 1.25rem;
}

.hero-text p {
    color: rgba(255,255,255,.86);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 620px;
}

.hero-intro {
    color: rgba(255,255,255,.75);
    font-size: 1rem;
    margin-top: 1.5rem;
    max-width: 660px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Efeito Glow Roxo de Fundo ajustado */
.hero-image-box::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: rgba(139, 92, 246, 0.18);
    filter: blur(60px);
    z-index: 1;
    border-radius: 50%;
}

.hero-image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    /* Ampliado os limites para ganhar largura e altura sem distorcer ou cortar */
    max-width: 540px; 
    height: auto;
    max-height: 650px; 
    /* O SEGREDO: contain evita cortes nas bordas e exibe os textos inteiros */
    object-fit: contain; 
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
    transition: var(--transition);
}

.hero-image-box img:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px rgba(139, 92, 246, 0.25);
}

/* ================================
   SEÇÃO DE PRODUTOS
   ================================ */

.produtos {
    padding: 100px 0;
    background: transparent;
}

.produto-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.produto-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 48px rgba(13,13,27,0.12);
}

.produto-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.produto-card:hover img { 
    transform: scale(1.05); 
}

.produto-card h3 {
    padding: 1.5rem 1.5rem 0 1.5rem;
    color: var(--accent-white);
    font-size: 1.2rem;
}

.produto-card p {
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.produto-card .btn-card {
    margin: 1.5rem;
    margin-top: 1rem;
}

/* ================================
   COMO FUNCIONA
   ================================ */

.como-funciona {
    padding: 90px 0;
    background: transparent;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.processo-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
    height: 100%;
    padding: 1.75rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.processo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), transparent 70%);
    pointer-events: none;
}

/* ================================
   DIFERENCIAIS
   ================================ */

.diferenciais {
    padding: 80px 0;
    background: transparent;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: stretch;
}

.diferenciais-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeUp 0.8s ease both;
}

.diferenciais-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.diferenciais-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--accent-white);
}

.diferenciais-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.processo-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeUp 0.8s ease both;
}

.processo-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    border-top: 3px solid var(--primary-light);
}

.processo-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.25);
}

.processo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-white);
}

.processo-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

/* ================================
   GALERIA
   ================================ */

.galeria {
    padding: 90px 0;
    background: transparent;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-item {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.galeria-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease, filter 0.3s ease;
    display: block;
}

.galeria-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

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

/* ================================
   SOBRE
   ================================ */

.sobre {
    padding: 80px 0;
    background: transparent;
}

.sobre h2, .sobre p {
    color: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.sobre-texto h2 {
    text-align: left;
}

.sobre-texto p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.sobre-destaques {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    padding: 2rem;
}

.sobre-destaques h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sobre-destaques ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.sobre-destaques li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.15rem;
    position: relative;
    line-height: 1.7;
}

.sobre-destaques li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b88cff;
    font-weight: 700;
}

.sobre-destaques p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ================================
   FORMULÁRIO ORÇAMENTO
   ================================ */

.orcamento {
    padding: 90px 0;
    background: transparent;
}

.orcamento .container {
    max-width: 700px;
}

.orcamento-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

label {
    font-weight: 600;
    color: var(--accent-white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input, select, textarea {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-white);
}

select {
    color-scheme: dark;
}

select option {
    color: #ffffff;
    background-color: #1b1132;
}

select option:checked {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    color: #ffffff;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(108, 52, 131, 0.12);
    background: rgba(255, 255, 255, 0.14);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.depoimentos-grid,
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.depoimento-card,
.diferenciais-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.20);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.depoimento-card:hover,
.diferenciais-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.depoimento-card p,
.diferenciais-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.depoimento-card span {
    display: block;
    color: #d8bfff;
    font-weight: 700;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-orcamento button {
    width: 100%;
}
/* ================================
   WHATSAPP FLUTUANTE
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #1fb45f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28);
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 16px 36px rgba(37, 211, 102, 0.28); }
    50% { box-shadow: 0 20px 44px rgba(37, 211, 102, 0.4); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: transparent;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3, .footer-section h4 {
    color: var(--accent-white);
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: #d4b5ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   RESPONSIVO
   ================================ */

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .processo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 74px;
        right: 12px;
        left: 12px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        background: rgba(18, 10, 38, 0.98);
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;
        box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
        flex-direction: column;
        gap: 0.75rem;
        z-index: 9999;
        backdrop-filter: blur(20px);
    }

    .nav-menu.show {
        display: flex;
        animation: menuFadeIn 0.22s ease-out forwards;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        padding: 1rem 1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        letter-spacing: 0.02em;
        display: block;
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        background: rgba(129, 79, 255, 0.22);
        border-color: rgba(129, 79, 255, 0.45);
        transform: translateX(2px);
    }

    .nav-menu a::after {
        display: none;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0.3rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    }

    .hamburger:hover,
    .hamburger:focus-visible {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(180, 130, 255, 0.38);
        transform: translateY(-1px);
    }

    .hamburger span {
        width: 26px;
        background: linear-gradient(90deg, #ffffff, #d4b5ff);
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .diferenciais-grid,
    .depoimentos-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-box img {
        max-height: 450px;
        margin: 0 auto;
    }

    .processo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .orcamento-form {
        padding: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand, .footer-section {
        align-items: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .navbar {
        padding: 12px 0;
    }

    .top-banner {
        overflow: visible;
        min-height: auto;
    }

    .top-banner img {
        width: 100%;
        height: auto;
        max-height: none;
        min-height: 260px;
        object-fit: cover;
        object-position: center top;
    }

    .hero {
        padding: 120px 0 50px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }
}