/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: rgba(5, 2, 16, 0.3);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(5, 2, 16, 0.97);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(229, 177, 59, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    cursor: pointer;
}

.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(229, 177, 59, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(229, 177, 59, 0.4), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--ouro-principal);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(229, 177, 59, 0.3);
}

.logo-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-ouro);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.logo:hover .logo-underline {
    width: 100%;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--texto-claro);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-ouro);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--ouro-principal);
}

.nav-link:hover {
    color: var(--ouro-principal);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-cliente {
    background: transparent;
    border: 2px solid var(--ouro-principal);
    color: var(--ouro-principal);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(229, 177, 59, 0.2);
}

.btn-cliente::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(229, 177, 59, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-cliente::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ouro);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.btn-cliente:hover {
    color: var(--roxo-escuro);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(229, 177, 59, 0.4);
}

.btn-cliente:hover::before {
    width: 400px;
    height: 400px;
}

.btn-cliente:hover::after {
    opacity: 1;
}

.user-dropdown {
    position: relative;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: rgba(30, 18, 53, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--roxo-claro);
    border-radius: 50px;
    color: var(--ouro-principal);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.user-name:hover {
    border-color: var(--ouro-principal);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 177, 59, 0.2);
}

.dropdown-content {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 220px;
    background: rgba(30, 18, 53, 0.98);
    backdrop-filter: blur(20px);
    border: 2px solid var(--roxo-claro);
    border-radius: 20px;
    box-shadow: var(--sombra);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1001;
}

.user-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: var(--texto-claro);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--roxo-claro);
    font-size: 0.9rem;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--roxo-claro);
    color: var(--ouro-principal);
    padding-left: 2rem;
}

.admin-badge {
    background: linear-gradient(135deg, #ff4444, #ff8888);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 6px;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 2rem 5%;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(229, 177, 59, 0.15);
    border: 1px solid rgba(229, 177, 59, 0.3);
    border-radius: 50px;
    color: var(--ouro-principal);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8.5rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-highlight {
    color: var(--ouro-principal);
    display: block;
    font-size: 3.6rem;
    text-shadow: 0 0 30px rgba(229, 177, 59, 0.5);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-ouro);
    border-radius: 3px;
    box-shadow: 0 0 20px var(--ouro-principal);
}

.hero-content p {
    font-size: 1rem;
    color: var(--texto-cinza);
    margin-bottom: 2rem;
    max-width: 450px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 20px rgba(229, 177, 59, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 177, 59, 0.4);
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--texto-claro);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--roxo-claro);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-bounce);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ouro);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    border-color: transparent;
    color: var(--roxo-escuro);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(30, 18, 53, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(229, 177, 59, 0.2);
    border-radius: 40px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    min-width: 0;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.75rem;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, var(--ouro-principal), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ouro-principal);
    margin-bottom: 0.2rem;
    text-shadow: 0 0 20px rgba(229, 177, 59, 0.5);
}

.stat-label {
    color: var(--texto-cinza);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.hero-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(45deg, var(--roxo-claro), var(--roxo-muito-claro));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* ========== SHOWCASE SECTION ========== */
.showcase {
    padding: 5rem 5%;
    background: linear-gradient(180deg, transparent, rgba(30, 18, 53, 0.3));
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-ouro);
    border-radius: 3px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--ouro-principal);
    border-radius: 3px;
    box-shadow: 0 0 15px var(--ouro-principal);
}

.section-header p {
    color: var(--texto-cinza);
    font-size: 1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 40px -5px rgba(0,0,0,0.5);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: linear-gradient(135deg, var(--roxo-claro), var(--roxo-muito-claro));
}

.gallery-item.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: brightness(0.95);
}

.gallery-item:hover {
    transform: scale(1.08) translateY(-6px);
    border-color: var(--ouro-principal);
    box-shadow: 0 25px 50px -10px rgba(229, 177, 59, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.1);
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.service-card {
    background: rgba(30, 18, 53, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid var(--roxo-claro);
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    flex: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-ouro);
    transform: scaleY(0);
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateX(8px);
    border-color: var(--ouro-principal);
    box-shadow: 0 20px 30px -10px rgba(229, 177, 59, 0.2);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: rgba(229, 177, 59, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--ouro-principal);
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    box-shadow: 0 10px 20px rgba(229, 177, 59, 0.3);
}

.service-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--ouro-principal);
}

.service-content p {
    color: var(--texto-cinza);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.service-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.service-tag {
    padding: 0.2rem 1rem;
    background: rgba(229, 177, 59, 0.1);
    border: 1px solid rgba(229, 177, 59, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--texto-cinza);
}

/* ========== COMENTÁRIOS ========== */
.comments {
    padding: 5rem 5%;
    background: linear-gradient(180deg, transparent, rgba(30, 18, 53, 0.3));
}

.comments-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.comments-stats {
    display: flex;
    gap: 1rem;
}

.stat-badge {
    padding: 0.6rem 1.2rem;
    background: rgba(30, 18, 53, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--roxo-claro);
    border-radius: 50px;
    color: var(--texto-cinza);
    font-size: 0.85rem;
}

.stat-badge i {
    color: var(--ouro-principal);
    margin-right: 0.5rem;
}

.comments-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem;
    scroll-behavior: smooth;
}

.comment-card {
    flex: 0 0 280px;
    background: rgba(30, 18, 53, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid var(--roxo-claro);
    border-radius: 30px;
    padding: 1.8rem;
    position: relative;
    transition: var(--transition-smooth);
}

.comment-card::before {
    content: '"';
    position: absolute;
    top: 0;
    left: 15px;
    font-size: 5rem;
    color: var(--ouro-principal);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.comment-card:hover {
    transform: translateY(-5px);
    border-color: var(--ouro-principal);
    box-shadow: 0 20px 30px -10px rgba(229, 177, 59, 0.2);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--roxo-claro);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ouro-principal);
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-date {
    color: var(--texto-cinza);
    font-size: 0.7rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}

.comment-text {
    color: var(--texto-claro);
    line-height: 1.6;
    font-size: 0.9rem;
    max-height: 100px;
    overflow-y: auto;
    padding-right: 5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--roxo-claro);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--ouro-principal);
    transform: scale(1.3);
    box-shadow: 0 0 15px var(--ouro-principal);
}

.comment-form {
    max-width: 500px;
    margin: 2rem auto 0;
    background: rgba(30, 18, 53, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid var(--roxo-claro);
    border-radius: 40px;
    padding: 2rem;
}

.comment-form h3 {
    color: var(--ouro-principal);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(10, 5, 21, 0.8);
    border: 2px solid var(--roxo-claro);
    border-radius: 20px;
    color: var(--texto-claro);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--ouro-principal);
    box-shadow: 0 0 0 3px rgba(229, 177, 59, 0.1);
}

.caracteres-restantes {
    text-align: right;
    color: var(--texto-cinza);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.caracteres-restantes span {
    color: var(--ouro-principal);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 177, 59, 0.3);
}

.limit-warning {
    text-align: center;
    padding: 1.2rem;
    background: rgba(255, 68, 68, 0.15);
    border: 2px solid #ff4444;
    border-radius: 30px;
    color: #ff8888;
    font-size: 0.9rem;
}

/* ========== STORIES ========== */
.stories {
    padding: 5rem 5%;
    background: linear-gradient(0deg, transparent, rgba(30, 18, 53, 0.3));
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    box-shadow: var(--sombra);
    border: 2px solid transparent;
    transition: var(--transition-bounce);
}

.story-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--ouro-principal);
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-item:hover .story-image {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 2, 16, 0.95), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.story-item:hover .story-overlay {
    transform: translateY(0);
}

.story-overlay h3 {
    color: var(--ouro-principal);
    font-size: 0.9rem;
    text-align: center;
}

.story-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* ========== CONTACT ========== */
.contact {
    padding: 5rem 5%;
    background: linear-gradient(180deg, transparent, rgba(30, 18, 53, 0.3));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(30, 18, 53, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid var(--roxo-claro);
    border-radius: 40px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    border-color: var(--ouro-principal);
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.2rem;
    color: var(--ouro-principal);
    margin-bottom: 1rem;
    transition: var(--transition-bounce);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: var(--texto-cinza);
    font-size: 0.95rem;
}

.contact-card .copy-feedback {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem;
    text-align: center;
    transition: bottom 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

.contact-card.copied .copy-feedback {
    bottom: 0;
}

.contact-card.copied {
    transform: scale(0.98);
    border-color: var(--sucesso);
}

.contact-card.copied i {
    color: var(--sucesso);
    transform: scale(1.2);
}

/* ========== RATING STARS ========== */
.comment-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: var(--texto-cinza);
    font-size: 0.9rem;
}

.rating-stars i.filled {
    color: var(--ouro-principal);
    text-shadow: 0 0 10px var(--ouro-principal);
}

.rating-value {
    color: var(--ouro-principal);
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 5px;
}

.rating-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars-input {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.rating-stars-input i {
    color: var(--texto-cinza);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.rating-stars-input i:hover {
    color: var(--ouro-claro);
    transform: scale(1.2);
}

.rating-stars-input i.selected {
    color: var(--ouro-principal);
    text-shadow: 0 0 15px var(--ouro-principal);
    transform: scale(1.1);
}

.rating-label {
    color: var(--texto-cinza);
    font-size: 0.9rem;
}

.rating-label span {
    color: var(--ouro-principal);
    font-weight: 600;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 18, 53, 0.8);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 2px solid var(--roxo-claro);
}

.average-stars {
    display: flex;
    gap: 3px;
}

.average-stars i {
    color: var(--texto-cinza);
    font-size: 1rem;
}

.average-stars i.filled {
    color: var(--ouro-principal);
}

.average-value {
    color: var(--ouro-principal);
    font-weight: 700;
    font-size: 1.1rem;
}

.average-count {
    color: var(--texto-cinza);
    font-size: 0.85rem;
}

/* ========== FOOTER ========== */
footer {
    background: var(--roxo-escuro);
    padding: 3rem 5% 2rem;
    border-top: 2px solid var(--roxo-claro);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col h4 {
    color: var(--ouro-principal);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--texto-cinza);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--texto-cinza);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--ouro-principal);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--roxo-claro);
    color: var(--texto-cinza);
    font-size: 0.8rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-ouro);
    color: var(--roxo-escuro);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition-bounce);
    box-shadow: 0 8px 20px rgba(229, 177, 59, 0.25);
    overflow: hidden;
    position: relative;
}

.btn-instagram i {
    font-size: 0.95rem;
}

.btn-instagram:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 30px rgba(229, 177, 59, 0.45);
}

/* ========== MEDIA QUERIES MOBILE ========== */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.large {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 58px;
        --header-height-scrolled: 52px;
    }

    main {
        padding-top: var(--header-height);
    }

    /* Header Mobile */
    .header-container {
        padding: 0 1rem !important;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
        animation: none;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .logo-glow {
        opacity: 0.5;
        animation: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--ouro-principal);
        border-radius: 3px;
    }
    
    /* Mobile Nav */
    #mobile-nav {
        display: flex;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: rgba(20, 10, 45, 0.99);
        backdrop-filter: blur(22px);
        flex-direction: column;
        padding: 1.5rem;
        transform: translateX(-105%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        overflow-y: auto;
    }
    
    #mobile-nav.active {
        transform: translateX(0);
    }
    
    #mobile-nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(229, 177, 59, 0.15);
    }
    
    .nav-link i {
        margin-right: 10px;
    }
    
    #nav-cliente {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(229, 177, 59, 0.2);
    }
    
    #nav-cliente .btn-cliente {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
        font-size: 1rem;
        background: var(--gradient-ouro);
        color: var(--roxo-escuro);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    #nav-cliente .user-dropdown {
        width: 100%;
    }
    
    #nav-cliente .user-name {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        font-size: 1rem;
        background: rgba(229, 177, 59, 0.15);
        border-color: var(--ouro-principal);
    }
    
    #nav-cliente .dropdown-content {
        position: static;
        margin-top: 0.8rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(30, 18, 53, 0.95);
        border-radius: 15px;
    }
    
    #nav-cliente .user-dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 0.5rem 0.8rem !important;
        min-height: auto !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0.3rem !important;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        margin-bottom: 0.3rem !important;
        font-size: 0.7rem;
        padding: 0.2rem 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hero-highlight {
        font-size: 1.8rem !important;
    }
    
    .hero-highlight::after {
        display: none;
    }
    
    .hero-content p {
        font-size: 0.8rem !important;
        margin-bottom: 0.3rem !important;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        min-width: 120px;
    }
    
    .hero-card {
        padding: 0.5rem !important;
        animation: none;
    }
    
    .hero-stats {
        gap: 0.3rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .stat-value {
        font-size: 0.9rem !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
    }
    
    .hero-image {
        height: 140px !important;
        margin-bottom: 0 !important;
    }
    
    /* Showcase Mobile */
    .showcase {
        padding: 0 0.8rem 1rem !important;
    }
    
    .showcase .section-header {
        margin-bottom: 1rem !important;
    }
    
    .showcase .section-header h2 {
        font-size: 1.3rem !important;
        margin-bottom: 1.2rem !important;
    }
    
    .showcase .section-header p {
        font-size: 0.75rem !important;
        margin-top: 0.3rem !important;
    }
    
    .showcase-grid {
        gap: 0.5rem !important;
    }
    
    .gallery-grid {
        gap: 0.5rem !important;
    }
    
    .gallery-item.large {
        min-height: 140px !important;
    }
    
    /* Mostrar apenas a imagem grande no mobile (opcional) */
    .gallery-item:not(.large) {
        display: none;
    }
    
    .services-list {
        gap: 0.5rem !important;
    }
    
    .service-card {
        padding: 0.5rem !important;
        gap: 0.8rem !important;
    }
    
    .service-icon {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .service-content h3 {
        font-size: 0.9rem !important;
    }
    
    .service-content p {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.3rem !important;
    }
    
    .service-tag {
        padding: 0.1rem 0.5rem !important;
        font-size: 0.6rem !important;
    }
    
    /* Comments Mobile */
    .comments {
        padding: 1rem 0.8rem !important;
    }
    
    .comments .section-header {
        margin-bottom: 0.8rem !important;
    }
    
    .comments .section-header h2 {
        font-size: 1.3rem !important;
    }
    
    .comments .section-header p {
        font-size: 0.75rem !important;
    }
    
    .comments-header {
        margin-bottom: 0.5rem !important;
        flex-direction: column;
    }
    
    .average-rating {
        padding: 0.3rem 0.8rem !important;
    }
    
    .average-stars i {
        font-size: 0.7rem !important;
    }
    
    .average-value {
        font-size: 0.8rem !important;
    }
    
    .comments-track {
        gap: 0.8rem !important;
        padding: 0.3rem 0 !important;
    }
    
    .comment-card {
        flex: 0 0 85vw !important;
        min-width: 260px !important;
        padding: 0.8rem !important;
        min-height: 180px !important;
    }
    
    .comment-header {
        margin-bottom: 0.3rem !important;
        padding-bottom: 0.3rem !important;
    }
    
    .comment-author {
        font-size: 0.75rem !important;
    }
    
    .comment-date {
        font-size: 0.6rem !important;
    }
    
    .comment-text {
        font-size: 0.75rem !important;
        max-height: 80px !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }
    
    .comment-form {
        padding: 1rem !important;
        margin-top: 0.5rem !important;
    }
    
    .comment-form h3 {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .rating-stars-input i {
        font-size: 1.2rem !important;
    }
    
    .form-group textarea {
        padding: 0.5rem !important;
        font-size: 0.8rem !important;
    }
    
    .btn-submit {
        padding: 0.6rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 1rem 0.8rem !important;
    }
    
    .contact .section-header {
        margin-bottom: 0.8rem !important;
    }
    
    .contact .section-header h2 {
        font-size: 1.3rem !important;
    }
    
    .contact .section-header p {
        font-size: 0.75rem !important;
    }
    
    .contact-grid {
        gap: 0.5rem !important;
    }
    
    .contact-card {
        padding: 0.8rem !important;
    }
    
    .contact-card i {
        font-size: 1.2rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .contact-card h3 {
        font-size: 0.9rem !important;
    }
    
    .contact-card p {
        font-size: 0.75rem !important;
    }
    
    /* Footer Mobile */
    footer {
        padding: 1rem 0.8rem !important;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 0.8rem !important;
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-col p,
    .footer-col ul li a {
        font-size: 0.75rem !important;
    }
    
    .btn-instagram {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
    
    .footer-bottom {
        padding-top: 0.5rem !important;
        margin-top: 0.5rem !important;
        font-size: 0.65rem !important;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 120px !important;
    }
    
    .hero-content h1 {
        font-size: 1.3rem !important;
    }
    
    .hero-highlight {
        font-size: 1.5rem !important;
    }
    
    .hero-buttons {
        margin-top: 0.8rem;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        padding: 0.5rem 0.9rem !important;
        font-size: 0.7rem !important;
        min-width: 110px;
    }
    
    .showcase .section-header h2 {
        font-size: 1.1rem !important;
    }
    
    .gallery-item.large {
        min-height: 120px !important;
    }
    
    .service-icon {
        width: 35px !important;
        height: 35px !important;
        min-width: 35px !important;
        font-size: 1rem !important;
    }
    
    .comment-card {
        flex: 0 0 90vw !important;
        min-width: 240px !important;
    }
    
    .contact-card {
        padding: 0.6rem !important;
    }
}

@media (max-width: 380px) {
    .hero-image {
        height: 100px !important;
    }
    
    .hero-content h1 {
        font-size: 1.1rem !important;
    }
    
    .hero-highlight {
        font-size: 1.3rem !important;
    }
    
    .hero-badge {
        font-size: 0.6rem !important;
    }
    
    .hero-content p {
        font-size: 0.7rem !important;
    }
    
    .showcase .section-header h2 {
        font-size: 1rem !important;
    }
    
    .gallery-item.large {
        min-height: 100px !important;
    }
    
    .service-card {
        padding: 0.4rem !important;
    }
    
    .comment-card {
        padding: 0.6rem !important;
    }
}

/* ========== CORREÇÕES FINAIS COM MAIS DISTÂNCIA ========== */

/* Remover zoom das imagens da galeria */
.gallery-item:hover,
.gallery-item:hover img {
    transform: none !important;
    scale: 1 !important;
    filter: brightness(1) !important;
}

/* ========== AUMENTAR AINDA MAIS ESPAÇAMENTO ENTRE TÍTULO E TEXTO ========== */
.section-header {
    margin-bottom: 3.5rem !important;
}

.section-header h2 {
    margin-bottom: 1.5rem !important;
}

.section-header p {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* ========== AUMENTAR DISTÂNCIA DOS BOTÕES ABAIXO DA IMAGEM NO MOBILE ========== */
@media (max-width: 768px) {
    /* Aumentar distância do título e texto */
    .section-header {
        margin-bottom: 2.2rem !important;
    }
    
    .section-header h2 {
        margin-bottom: 0.9rem !important;
    }
    
    .section-header p {
        margin-top: 0.9rem !important;
    }
    
    /* Aumentar distância dos botões da imagem */
    .hero-buttons {
        margin-top: 1.2rem !important;
        margin-bottom: 0.8rem !important;
        gap: 1rem !important;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        margin-top: 0.3rem !important;
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Aumentar distância entre hero e showcase */
    .hero {
        padding-bottom: 1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .showcase {
        padding-top: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    /* Mobile pequeno - mais distância ainda */
    .section-header {
        margin-bottom: 1.8rem !important;
    }
    
    .section-header h2 {
        margin-bottom: 0.8rem !important;
    }
    
    .section-header p {
        margin-top: 0.8rem !important;
    }
    
    .hero-buttons {
        margin-top: 1.5rem !important;
        margin-bottom: 1rem !important;
        gap: 1.2rem !important;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
        min-width: 140px !important;
    }
    
    .hero {
        padding-bottom: 1.2rem !important;
    }
    
    .showcase {
        padding-top: 1rem !important;
    }
}

@media (max-width: 380px) {
    /* Telas muito pequenas - distância extra */
    .hero-buttons {
        margin-top: 1.8rem !important;
        gap: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-buttons a,
    .hero-buttons button {
        width: 80% !important;
        max-width: 200px !important;
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .hero {
        padding-bottom: 1.5rem !important;
    }
    
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    
    .section-header h2 {
        margin-bottom: 0.7rem !important;
    }
    
    .section-header p {
        margin-top: 0.7rem !important;
    }
}

/* ========== AUMENTAR DISTÂNCIA ENTRE IMAGEM E OS CARDS (DESKTOP) ========== */
@media (min-width: 769px) {
    .hero {
        padding-bottom: 2rem !important;
    }
    
    .showcase {
        padding-top: 2.5rem !important;
    }
    
    .section-header {
        margin-bottom: 4rem !important;
    }
    
    .section-header h2 {
        margin-bottom: 1.8rem !important;
    }
    
    .section-header p {
        margin-top: 1.8rem !important;
    }
}
/* ========== NOTIFICAÇÃO DE CÓPIA (ESTILO COMENTÁRIO) ========== */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--roxo-medio), var(--roxo-escuro));
    backdrop-filter: blur(20px);
    border: 2px solid var(--ouro-principal);
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--texto-claro);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    white-space: nowrap;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.copy-toast i {
    font-size: 1.2rem;
}

.copy-toast.sucesso i {
    color: var(--sucesso);
    animation: copyPulse 0.5s ease;
}

.copy-toast.erro i {
    color: #ff4444;
}

@keyframes copyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Mobile - ajuste da notificação */
@media (max-width: 768px) {
    .copy-toast {
        bottom: 20px;
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .copy-toast i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .copy-toast {
        bottom: 15px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
}
/* ========== LOGO MAIS CHAMATIVO ========== */

/* Aumentar tamanho do logo */
.logo-text h1 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    background: linear-gradient(135deg, #ffffff, var(--ouro-principal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    text-shadow: 0 0 30px rgba(229, 177, 59, 0.5);
}

.logo-text span {
    color: var(--ouro-principal) !important;
    font-weight: 800 !important;
    text-shadow: 0 0 20px rgba(229, 177, 59, 0.8);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

/* Efeito de brilho extra no hover */
.logo:hover .logo-text h1 {
    text-shadow: 0 0 40px rgba(229, 177, 59, 0.8);
    transition: all 0.3s ease;
}

.logo:hover .logo-text span {
    text-shadow: 0 0 30px rgba(229, 177, 59, 1);
}

/* Aumentar o ícone/logo */
.logo-icon {
    width: 52px !important;
    height: 52px !important;
}

.logo-img {
    width: 52px !important;
    height: 52px !important;
    filter: drop-shadow(0 0 20px rgba(229, 177, 59, 0.6)) !important;
}

/* Efeito de brilho no ícone */
.logo-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle, rgba(229, 177, 59, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-icon::after {
    opacity: 1;
}

/* ========== LOGO MOBILE - TAMBÉM MAIOR ========== */
@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 1.3rem !important;
        letter-spacing: 2px !important;
    }
    
    .logo-icon {
        width: 38px !important;
        height: 38px !important;
    }
    
    .logo-img {
        width: 38px !important;
        height: 38px !important;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.1rem !important;
        letter-spacing: 1.5px !important;
    }
    
    .logo-icon {
        width: 32px !important;
        height: 32px !important;
    }
    
    .logo-img {
        width: 32px !important;
        height: 32px !important;
    }
}