* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --preto: #0f0f0f;
    --preto-suave: #1a1a1a;
    --dourado: #D4AF37;
    --dourado-claro: #E8C547;
    --dourado-escuro: #B8941F;
    --branco: #ffffff;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #e0e0e0;
    --cinza-escuro: #4a4a4a;
    --cinza-texto: #666666;
    --vh: 1vh;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--preto);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* PLAYER RÁDIO BARBEARIA - DESIGN PROFISSIONAL */
.radio-player-bar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
    padding: 10px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.radio-player-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* Seção Esquerda - Rádio Info */
.radio-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}

.radio-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.radio-icon svg {
    color: #000;
    width: 18px;
    height: 18px;
}

.radio-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    animation: pulse-wave 2s infinite;
    z-index: 1;
}

@keyframes pulse-wave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.radio-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-label {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 5px;
    height: 5px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.radio-metadata {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-status {
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

/* Visualizador de Áudio */
.audio-visualizer {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
    padding: 0 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audio-visualizer.active {
    opacity: 1;
}

.visualizer-bar {
    width: 3px;
    background: linear-gradient(to top, #D4AF37, #F4D03F);
    border-radius: 3px;
    height: 8px;
    animation: visualizer-pulse 0.8s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.visualizer-bar:nth-child(1) {
    animation-delay: 0s;
}

.visualizer-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.visualizer-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.visualizer-bar:nth-child(4) {
    animation-delay: 0.3s;
}

.visualizer-bar:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes visualizer-pulse {
    0%, 100% {
        height: 8px;
    }
    50% {
        height: 28px;
    }
}

/* Seção Centro - Controles */
.radio-center {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.radio-btn-play {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    position: relative;
    flex-shrink: 0;
}

.radio-btn-play::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.radio-btn-play:hover::before {
    opacity: 0.6;
}

.radio-btn-play:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.7);
}

.radio-btn-play:active {
    transform: scale(0.98);
}

.radio-btn-play svg {
    color: #000;
    width: 24px;
    height: 24px;
}

.radio-volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.volume-icon:hover {
    transform: scale(1.1);
}

.volume-icon svg {
    color: #D4AF37;
    width: 18px;
    height: 18px;
}

.volume-slider {
    width: 80px;
    height: 3px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.volume-slider:hover {
    background: rgba(212, 175, 55, 0.3);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.6);
}

.volume-value {
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    min-width: 32px;
    text-align: right;
}

/* Seção Direita - Clima */
.radio-right {
    display: flex;
    justify-content: flex-end;
}

.weather-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.weather-icon svg {
    color: #D4AF37;
    width: 18px;
    height: 18px;
}

.weather-data {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.weather-temp {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.weather-location {
    color: #999;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .radio-player-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .radio-left,
    .radio-center,
    .radio-right {
        justify-content: center;
    }
    
    .weather-info {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .radio-player-bar {
        top: 70px;
        padding: 8px 0;
    }
    
    .radio-player-content {
        gap: 10px;
    }
    
    .radio-icon-wrapper,
    .radio-icon {
        width: 36px;
        height: 36px;
    }
    
    .radio-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .radio-btn-play {
        width: 44px;
        height: 44px;
    }
    
    .radio-btn-play svg {
        width: 20px;
        height: 20px;
    }
    
    .weather-info {
        padding: 6px 12px;
    }
    
    .weather-temp {
        font-size: 14px;
    }
    
    .radio-label {
        font-size: 13px;
    }
    
    .radio-status {
        font-size: 11px;
    }
    
    .audio-visualizer {
        height: 28px;
        gap: 2px;
        padding: 0 6px;
    }
    
    .visualizer-bar {
        width: 2.5px;
    }
    
    @keyframes visualizer-pulse {
        0%, 100% {
            height: 6px;
        }
        50% {
            height: 24px;
        }
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    color: var(--branco);
}

.logo-accent {
    color: var(--dourado);
    margin-left: 5px;
}

.logo-icon {
    color: var(--dourado);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--dourado);
}

.btn-nav {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dourado);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    border: 2px solid var(--dourado);
}

.btn-secondary:hover {
    background: var(--dourado);
    color: var(--preto);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 0 80px; /* Aumentado para compensar navbar + player */
    background: linear-gradient(135deg, var(--preto) 0%, var(--preto-suave) 50%, #252525 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 30%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    color: var(--branco);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--dourado-claro);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dourado);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    background: rgba(212, 175, 55, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.scissors-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-card h3 {
    color: var(--branco);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.hero-card-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.price-value {
    color: var(--dourado);
    font-size: 2.5rem;
    font-weight: 700;
}

.floating-badge {
    position: absolute;
    background: var(--branco);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    right: -10%;
}

.badge-2 {
    bottom: 20%;
    left: -10%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* SECTION STYLES */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--dourado);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--branco);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title-left {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title-left.light {
    color: var(--branco);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cinza-texto);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* SOBRE SECTION */
.sobre {
    background: var(--cinza-claro);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.sobre-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
}

.sobre-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--preto) 0%, #2a2a2a 100%);
    border-radius: 20px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sobre-image:hover .sobre-img {
    transform: scale(1.05);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    pointer-events: none;
}

.placeholder-content {
    text-align: center;
    color: var(--dourado);
}

.placeholder-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 1.2rem;
    font-weight: 600;
}

.sobre-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

/* SERVIÇOS SECTION */
.servicos {
    background: var(--branco);
}

.servicos-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-card-new {
    background: var(--branco);
    border: 2px solid var(--cinza-medio);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    position: relative;
}

.servico-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--dourado);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.servico-card-new.featured {
    background: linear-gradient(135deg, #faf8f0 0%, var(--branco) 100%);
    border-color: var(--dourado);
    border-width: 3px;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.servico-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.servico-icon {
    font-size: 3rem;
}

.servico-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--dourado-escuro);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.servico-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.servico-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.servico-includes {
    list-style: none;
    margin-bottom: 25px;
}

.servico-includes li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.servico-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--cinza-medio);
    border-bottom: 1px solid var(--cinza-medio);
    margin-bottom: 25px;
}

.servico-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.8rem;
    color: #999;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dourado);
}

.servico-time {
    color: #666;
    font-size: 0.9rem;
}

.btn-servico {
    width: 100%;
    justify-content: center;
    background: var(--preto);
    color: var(--branco);
    border-radius: 10px;
}

.btn-servico:hover {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
}

.btn-featured {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
}

.btn-featured:hover {
    background: var(--preto);
    color: var(--branco);
}

/* AGENDAMENTO SECTION */
.agendamento {
    background: linear-gradient(135deg, var(--preto) 0%, var(--preto-suave) 50%, #252525 100%);
    position: relative;
    overflow: hidden;
}

.agendamento::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.agendamento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.agendamento-info {
    color: var(--branco);
}

.agendamento-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.agendamento-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefit-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.agendamento-form-wrapper {
    background: var(--branco);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.agendamento-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-header {
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.form-header p {
    color: #666;
    font-size: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid var(--cinza-medio);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dourado);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* GALERIA SECTION */
.galeria {
    background: var(--cinza-claro);
}

.galeria-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 20px;
}

.galeria-item-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--preto);
    width: 100%;
    height: 100%;
}

.galeria-item-new.large {
    grid-column: span 2;
    grid-row: span 4;
}

.galeria-item-new.large .galeria-img {
    object-fit: cover;
    object-position: center;
}

.galeria-item-new:hover {
    transform: scale(1.02);
}

.galeria-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--preto) 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.placeholder-icon {
    font-size: 3rem;
}

.placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dourado);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.galeria-item-new:hover .galeria-overlay {
    opacity: 1;
}

.galeria-tag {
    color: var(--dourado-claro);
    font-weight: 600;
    font-size: 1.1rem;
}

.galeria-zoom {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria-zoom:hover {
    transform: scale(1.1);
}

/* DEPOIMENTOS SECTION */
.depoimentos {
    background: var(--branco);
}

.rating-display {
    margin-top: 20px;
}

.stars-large {
    font-size: 2rem;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
}

.depoimentos-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card-new {
    background: var(--cinza-claro);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--dourado);
    transition: all 0.3s ease;
}

.depoimento-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cliente-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.cliente-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cliente-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars-small {
    font-size: 0.9rem;
}

.depoimento-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.depoimento-date {
    font-size: 0.85rem;
    color: #999;
}

/* CTA FINAL SECTION */
.cta-final {
    background: var(--preto);
    color: var(--branco);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* CONTATO SECTION */
.contato {
    background: var(--cinza-claro);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-item-new {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--branco);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contato-item-new:hover {
    transform: translateX(10px);
}

.contato-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon {
    font-size: 1.8rem;
}

.contato-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contato-details p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contato-link {
    color: var(--amarelo);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: #FFC700;
}

.contato-map {
    position: sticky;
    top: 100px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contato-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--preto) 0%, #2a2a2a 100%);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--amarelo);
}

.map-icon {
    font-size: 4rem;
}

.map-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
}

.map-address {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* FOOTER */
.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 10px;
}

.footer-accent {
    color: var(--dourado);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--dourado);
    color: var(--preto);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dourado);
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--dourado);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--dourado);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--dourado);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* VALIDAÇÃO E FEEDBACK */
.form-group input.valid,
.form-group select.valid {
    border-color: #4CAF50;
}

.form-group input.invalid,
.form-group select.invalid {
    border-color: #f44336;
}

.field-feedback {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
}

.field-feedback.success {
    color: #4CAF50;
}

.field-feedback.error {
    color: #f44336;
    right: auto;
    left: 0;
    top: 100%;
    transform: translateY(5px);
    font-size: 0.85rem;
}

/* LOADING E NOTIFICAÇÕES */
.btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
    position: relative;
}

.btn.loading span {
    margin-right: 10px;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-top-color: var(--preto);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-primary .spinner {
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--preto);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    padding: 0;
    border-radius: 15px;
    z-index: 10000;
    transform: translateX(450px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    min-width: 350px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: linear-gradient(135deg, var(--preto) 0%, var(--preto-suave) 100%);
    border: 2px solid var(--dourado);
}

.notification.error {
    background: linear-gradient(135deg, var(--preto) 0%, var(--preto-suave) 100%);
    border: 2px solid #f44336;
}

.notification-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 20px 0 20px 20px;
}

.notification.success .notification-icon {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.notification.error .notification-icon {
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

.notification-content {
    flex: 1;
    padding: 20px 15px 20px 0;
}

.notification-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.notification.success .notification-title {
    color: var(--dourado-claro);
}

.notification.error .notification-title {
    color: #ff6b6b;
}

.notification-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dourado);
    transform: rotate(90deg);
}

/* Barra de progresso */
.notification::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, transparent, currentColor);
    animation: notificationProgress 12s linear forwards;
}

.notification.success::before {
    color: var(--dourado);
}

.notification.error::before {
    color: #f44336;
}

@keyframes notificationProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

@media (max-width: 768px) {
    .notification {
        right: 15px;
        left: 15px;
        max-width: calc(100% - 30px);
        min-width: auto;
        transform: translateY(-150px);
        top: 15px;
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        margin: 15px 0 15px 15px;
    }
    
    .notification-content {
        padding: 15px 10px 15px 0;
    }
    
    .notification-title {
        font-size: 1rem;
    }
    
    .notification-text {
        font-size: 0.9rem;
    }
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--amarelo);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--amarelo);
}

/* ANIMAÇÕES */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid,
    .sobre-grid,
    .agendamento-wrapper,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servicos-grid-new,
    .depoimentos-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .galeria-grid-new {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    
    .galeria-item-new.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .contato-map {
        position: relative;
        top: 0;
        height: 400px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title-center,
    .section-title-left {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--preto);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: 1.05rem;
    }
    
    .hero-badge {
        display: block;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* Sections Mobile */
    .section-title-center,
    .section-title-left {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Stats Mobile */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
        align-items: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Sobre Mobile */
    .sobre-content {
        text-align: center;
    }
    
    .sobre-text {
        text-align: center;
    }
    
    .sobre-badge {
        position: static;
        margin: 20px auto 0;
        display: inline-block;
    }
    
    /* Serviços Mobile */
    .servicos-grid-new {
        grid-template-columns: 1fr;
    }
    
    .servico-card-new {
        text-align: center;
    }
    
    /* Galeria Mobile */
    .galeria-grid-new {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    
    .galeria-item-new.large,
    .galeria-item-new.medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Depoimentos Mobile */
    .depoimentos-slider {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card-new {
        text-align: center;
    }
    
    .depoimento-header {
        flex-direction: column;
        align-items: center;
    }
    
    /* Contato Mobile */
    .contato-content {
        text-align: center;
    }
    
    .contato-desc {
        text-align: center;
    }
    
    .contato-item-new {
        text-align: center;
    }
    
    /* CTA Mobile */
    .cta-final {
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Forms Mobile */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Badges Mobile */
    .floating-badge {
        display: none;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* AJUSTES FINAIS SEM ÍCONES */
.feature-item {
    display: flex;
    gap: 0;
    align-items: flex-start;
    padding: 20px;
    background: var(--branco);
    border-radius: 10px;
    border-left: 3px solid var(--dourado);
}

.servico-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

.benefit-item {
    display: flex;
    gap: 0;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--dourado);
}

.contato-item-new {
    display: flex;
    gap: 0;
    padding: 25px;
    background: var(--branco);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border-left: 3px solid var(--dourado);
}

.contato-details {
    width: 100%;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--preto) 0%, #2a2a2a 100%);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--dourado);
    padding: 40px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
}

.servico-includes {
    list-style: none;
    margin-bottom: 25px;
}

.servico-includes li {
    padding: 8px 0 8px 20px;
    color: #555;
    font-size: 0.95rem;
    position: relative;
}

.servico-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--dourado);
    border-radius: 50%;
}

.scroll-progress {
    background: linear-gradient(90deg, var(--dourado) 0%, var(--dourado-claro) 100%);
}

.contato-link {
    color: var(--dourado);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contato-link:hover {
    color: var(--dourado-claro);
}

/* EFEITOS NUMÉRICOS ANIMADOS */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dourado);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -1px;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 0.6s ease-out;
    display: inline-block;
    min-width: 80px;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-item::before {
    content: '+';
    position: absolute;
    top: -5px;
    left: -15px;
    font-size: 1.5rem;
    color: var(--dourado);
    opacity: 0.5;
    font-weight: 700;
}

.stat-item:nth-child(2)::before {
    content: '';
}

/* Efeito de brilho nos números */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.stat-number.counting {
    background: linear-gradient(
        90deg,
        var(--dourado) 0%,
        var(--dourado-claro) 50%,
        var(--dourado) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
}

/* Efeito de pulso sutil */
@keyframes pulse-number {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-number:hover {
    animation: pulse-number 0.6s ease-in-out;
}

/* Separador animado */
.stat-divider {
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--dourado),
        transparent
    );
    animation: divider-glow 2s ease-in-out infinite;
}

@keyframes divider-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* IMAGENS DA GALERIA */
.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.galeria-item-new:hover .galeria-img {
    transform: scale(1.1);
}

.galeria-item-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.galeria-item-new.large .galeria-img {
    object-fit: cover;
    object-position: center;
}

/* Cards médios - 2 linhas */
.galeria-item-new.medium {
    grid-row: span 2;
}

/* Logo no Hero */
.hero-logo {
    margin-bottom: 30px;
}

.logo-hero {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 768px) {
    .logo-hero {
        max-width: 250px;
    }
}

/* DEVELOPER SECTION - LOGO SIMPLES */
.footer-developer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.developer-logo-simple {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    mix-blend-mode: screen;
    opacity: 0.7;
}

.developer-logo-simple:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-developer {
        text-align: center;
        align-items: center;
    }
    
    .developer-brand-full {
        justify-content: center;
    }
    
    .developer-logo-full {
        max-width: 220px;
    }
}


/* ============================================
   MODAL DE AGENDAMENTO
   ============================================ */

.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--branco);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    max-height: calc(var(--vh, 1vh) * 90);
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--cinza-escuro);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: var(--cinza-claro);
    color: var(--preto);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
    padding-right: 40px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--preto);
}

.modal-header p {
    color: var(--cinza-texto);
    font-size: 1rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-form .form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.booking-form .form-group input,
.booking-form .form-group select {
    padding: 15px;
    border: 2px solid var(--cinza-medio);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    outline: none;
    border-color: var(--dourado);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-summary {
    background: var(--cinza-claro);
    padding: 25px;
    border-radius: 15px;
    margin-top: 10px;
}

.booking-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--preto);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--cinza-medio);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--dourado);
    font-size: 1.1rem;
}

.summary-item span {
    color: var(--cinza-texto);
}

.summary-item strong {
    color: var(--preto);
}

.summary-item.total strong {
    color: var(--dourado);
    font-size: 1.3rem;
}

/* Availability Info */
.availability-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #856404;
}

.availability-info svg {
    flex-shrink: 0;
    color: #ffc107;
}

.availability-info span {
    line-height: 1.4;
}
/* Scrollbar personalizada para o modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--cinza-claro);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--dourado);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--dourado-escuro);
}

/* Responsivo */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding-right: 30px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-summary {
        padding: 20px;
    }
}


/* ============================================
   BANNER DE INSTALAÇÃO PWA
   ============================================ */

.install-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--preto) 0%, var(--preto-suave) 100%);
    border-top: 3px solid var(--dourado);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 15px 20px;
}

.install-banner.show {
    bottom: 0;
}

.install-banner-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.install-banner-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--dourado);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.install-banner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.install-banner-text {
    flex: 1;
    color: var(--branco);
}

.install-banner-text h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--dourado-claro);
}

.install-banner-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.install-banner-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-install {
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: 'Poppins', sans-serif;
}

.btn-install:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-install:active {
    transform: translateY(0);
}

.btn-dismiss {
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.btn-dismiss:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Responsivo para o banner */
@media (max-width: 480px) {
    .install-banner {
        padding: 12px 15px;
    }
    
    .install-banner-content {
        gap: 12px;
    }
    
    .install-banner-icon {
        width: 45px;
        height: 45px;
    }
    
    .install-banner-text h3 {
        font-size: 0.9rem;
    }
    
    .install-banner-text p {
        font-size: 0.75rem;
    }
    
    .btn-install {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .btn-dismiss {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
}

/* Esconder banner quando teclado virtual está aberto */
@media (max-height: 500px) {
    .install-banner {
        display: none;
    }
}

/* Ajuste para landscape em mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .install-banner {
        padding: 8px 15px;
    }
    
    .install-banner-icon {
        width: 40px;
        height: 40px;
    }
    
    .install-banner-text h3 {
        font-size: 0.85rem;
    }
    
    .install-banner-text p {
        display: none;
    }
    
    .btn-install {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

/* Animação de entrada do banner */
@keyframes slideUpBounce {
    0% {
        bottom: -200px;
        opacity: 0;
    }
    60% {
        bottom: 10px;
        opacity: 1;
    }
    80% {
        bottom: -5px;
    }
    100% {
        bottom: 0;
    }
}

.install-banner.show {
    animation: slideUpBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Modal de instruções de instalação */
.install-instructions-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.install-instructions-modal.active {
    display: flex;
}

.install-instructions-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.install-instructions-modal .modal-content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-instructions-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.install-instructions-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.install-instructions-modal .modal-header h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

.install-instructions {
    max-width: 500px;
    width: 100%;
}

.instructions-content {
    background: #f5f5f5;
    padding: 25px;
    border-radius: 15px;
    margin: 20px 0;
    line-height: 1.8;
    color: #333;
    border: 2px solid #D4AF37;
}

.instructions-content strong {
    color: #D4AF37;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.instructions-content svg {
    display: inline-block;
    vertical-align: middle;
}

.instructions-content br {
    margin-bottom: 8px;
}

/* ============================================
   SPLASH SCREEN PARA PWA
   ============================================ */

.pwa-splash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--preto) 0%, var(--preto-suave) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.pwa-splash.hidden {
    opacity: 0;
    pointer-events: none;
}

.pwa-splash-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.pwa-splash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}

.pwa-splash-text {
    color: var(--dourado);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 100%);
    color: var(--preto);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   MELHORIAS DE RESPONSIVIDADE MOBILE
   ============================================ */

@media (max-width: 480px) {
    /* Navbar */
    .navbar {
        padding: 10px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }
    
    /* Hero - Centralizado */
    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        padding: 20px 0;
        gap: 25px;
        margin-bottom: 30px;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item {
        align-items: center;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.85rem;
        margin-top: 3px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Sections - Centralizadas */
    section {
        padding: 50px 0;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .section-title-center,
    .section-title-left {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: center;
    }
    
    .section-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    /* Sobre - Centralizado */
    .sobre-content {
        text-align: center;
    }
    
    .sobre-text {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .feature-item {
        padding: 15px;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--dourado);
    }
    
    .feature-content h4 {
        font-size: 1.05rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    .sobre-badge {
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        padding: 20px;
    }
    
    .badge-number {
        font-size: 2.2rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Serviços */
    .servicos-grid-new {
        gap: 20px;
    }
    
    .servico-card-new {
        padding: 25px;
        text-align: center;
    }
    
    .servico-header {
        justify-content: center;
    }
    
    .servico-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .servico-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .servico-includes {
        margin-bottom: 20px;
        text-align: left;
    }
    
    .servico-includes li {
        font-size: 0.9rem;
        padding: 6px 0 6px 18px;
    }
    
    .servico-footer {
        padding: 15px 0;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .servico-price {
        align-items: center;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .servico-time {
        font-size: 0.85rem;
    }
    
    .featured-label {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    /* Galeria */
    .galeria-grid-new {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 15px;
    }
    
    .galeria-item-new.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .galeria-item-new.medium {
        grid-row: span 1;
    }
    
    .galeria-tag {
        font-size: 1rem;
    }
    
    .galeria-zoom {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    /* Depoimentos */
    .depoimentos-slider {
        gap: 20px;
    }
    
    .depoimento-card-new {
        padding: 20px;
        text-align: center;
    }
    
    .depoimento-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cliente-avatar {
        width: 45px;
        height: 45px;
    }
    
    .cliente-info {
        text-align: center;
    }
    
    .cliente-info h4 {
        font-size: 1rem;
    }
    
    .depoimento-text {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: center;
    }
    
    .depoimento-date {
        text-align: center;
    }
    
    .rating-display {
        margin-top: 15px;
        text-align: center;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    /* CTA Final - Centralizado */
    .cta-final {
        padding: 60px 0;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
    
    .cta-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    /* Contato - Centralizado */
    .contato-content {
        text-align: center;
    }
    
    .contato-desc {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contato-items {
        gap: 20px;
    }
    
    .contato-item-new {
        padding: 20px;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--dourado);
    }
    
    .contato-details {
        text-align: center;
    }
    
    .contato-details h4 {
        font-size: 1rem;
    }
    
    .contato-details p {
        font-size: 0.9rem;
    }
    
    .contato-map {
        height: 280px;
        margin-top: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 0.95rem;
    }
    
    .footer-links,
    .footer-contact {
        gap: 10px;
        align-items: center;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-left {
        text-align: center;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    /* Modal */
    .modal-content {
        padding: 25px 18px;
        width: 95%;
    }
    
    .modal-header {
        margin-bottom: 25px;
        padding-right: 35px;
        text-align: center;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.6rem;
        top: 15px;
        right: 15px;
    }
    
    .booking-form {
        gap: 18px;
    }
    
    .booking-form .form-group label {
        font-size: 0.85rem;
    }
    
    .booking-form .form-group input,
    .booking-form .form-group select {
        padding: 13px;
        font-size: 0.95rem;
    }
    
    .booking-summary {
        padding: 18px;
        margin-top: 8px;
    }
    
    .booking-summary h3 {
        font-size: 1.05rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .summary-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .summary-item.total {
        font-size: 1rem;
    }
    
    .summary-item.total strong {
        font-size: 1.2rem;
    }
    
    /* Notificação */
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: calc(100% - 20px);
    }
    
    .notification-icon {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
        margin: 14px 0 14px 14px;
    }
    
    .notification-content {
        padding: 14px 10px 14px 0;
    }
    
    .notification-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .notification-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .notification-close {
        width: 28px;
        height: 28px;
        font-size: 1.6rem;
        top: 8px;
        right: 8px;
    }
    
    /* Botão Voltar ao Topo */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title-center,
    .section-title-left {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ============================================
   MELHORIAS PARA TOUCH E MOBILE
   ============================================ */

/* Aumentar área de toque em dispositivos móveis */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-menu a,
    .social-link,
    .galeria-zoom,
    .modal-close {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-toggle {
        padding: 10px;
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remover hover effects em touch devices */
    .btn:hover,
    .servico-card-new:hover,
    .galeria-item-new:hover,
    .depoimento-card-new:hover {
        transform: none;
    }
    
    /* Adicionar feedback visual ao toque */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .galeria-item-new:active {
        opacity: 0.9;
    }
}

/* Otimizações de performance para mobile */
@media (max-width: 768px) {
    /* Reduzir animações complexas */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    /* Simplificar gradientes em mobile */
    .hero-bg::before {
        background: rgba(0, 0, 0, 0.9);
    }
    
    /* Otimizar imagens */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Landscape mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .modal-content {
        max-height: 85vh;
    }
}

/* Melhorias de acessibilidade mobile */
@media (max-width: 768px) {
    /* Aumentar contraste de texto */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Melhorar legibilidade */
    p, li, span {
        line-height: 1.6;
    }
    
    /* Espaçamento adequado para leitura */
    .hero-subtitle,
    .sobre-text,
    .servico-desc,
    .depoimento-text {
        line-height: 1.7;
        letter-spacing: 0.01em;
    }
}

/* Prevenir zoom indesejado em inputs iOS */
@media (max-width: 768px) {
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Safe area para dispositivos com notch */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .modal-content {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* ============================================
   AJUSTES PARA MODO PWA (STANDALONE)
   ============================================ */

body.pwa-mode .navbar {
    padding-top: calc(15px + var(--status-bar-height, 0px));
}

body.pwa-mode .hero {
    padding-top: calc(120px + var(--status-bar-height, 0px));
}

/* Esconder banner de instalação quando em modo PWA */
body.pwa-mode .install-banner {
    display: none !important;
}

/* Ajustes para iOS PWA */
@supports (-webkit-touch-callout: none) {
    body.pwa-mode {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ============================================
   MELHORIAS DE PERFORMANCE MOBILE
   ============================================ */

/* Reduzir motion para usuários que preferem */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* O site já é dark por padrão, mas podemos ajustar se necessário */
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--preto);
    }
    
    .nav-menu a {
        text-decoration: underline;
    }
}


/* ============================================
   POPUP LATERAL DE CURSO
   ============================================ */

.course-popup-lateral {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 9997;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s ease;
}

.course-popup-lateral.active {
    transform: translateX(0);
    opacity: 1;
}

.course-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.course-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.course-popup-video {
    width: 100%;
    height: 160px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.course-popup-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.course-popup-text {
    text-align: center;
    margin-bottom: 15px;
}

.course-popup-text h3 {
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.course-popup-text p {
    color: #999;
    font-size: 13px;
    margin: 0;
}

.btn-course-lateral {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.8);
    }
}

.btn-course-lateral:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    animation: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .course-popup-lateral {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

/* Ajustar posição quando banner de instalação estiver visível */
.install-banner.show ~ .course-popup-lateral,
body:has(.install-banner.show) .course-popup-lateral {
    bottom: 100px;
}

.course-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.course-feature:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.course-feature strong {
    color: #fff;
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.course-feature p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

.course-price {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-old {
    color: #999;
    font-size: 16px;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-current {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.price-current span {
    color: #D4AF37;
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-top: 5px;
}

.price-installments {
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    animation: pulse 2s infinite;
}

.btn-course-cta {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    color: #000;
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    margin-bottom: 20px;
}

.btn-course-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-course-cta:active {
    transform: translateY(-1px);
}

.course-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4CAF50;
    font-size: 13px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.course-guarantee svg {
    flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .course-popup-content {
        max-width: 95%;
        border-radius: 15px;
    }

    .course-popup-header {
        padding: 30px 20px 15px;
    }

    .course-popup-header h2 {
        font-size: 22px;
    }

    .course-popup-body {
        padding: 20px;
    }

    .course-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .course-video-placeholder {
        padding: 40px 15px;
    }

    .course-video-placeholder svg {
        width: 60px;
        height: 60px;
    }

    .price-current span {
        font-size: 28px;
    }

    .btn-course-cta {
        font-size: 16px;
        padding: 16px 25px;
    }
}

/* Scroll customizado para o popup */
.course-popup-content::-webkit-scrollbar {
    width: 8px;
}

.course-popup-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.course-popup-content::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

.course-popup-content::-webkit-scrollbar-thumb:hover {
    background: #F4D03F;
}
