/* ====== VARIÁVEIS ====== */
:root {
    --rosa: #e01e8c;
    --rosa-escuro: #b5166e;
    --vinho: #5c2d1e;
    --sage: #c8ccaa;
    --sage-light: #e8ead8;
    --creme: #faf7f4;
    --cinza-texto: #4a4a4a;
    --font-title: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;
}

/* ====== BASE ====== */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html { font-size: 16px; }
}

body {
    font-family: var(--font-body);
    background-color: var(--creme);
    color: var(--cinza-texto);
    scroll-behavior: smooth;
}

.btn:focus, .btn:active:focus, .form-control:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #e01e8c;
}

/* ====== NAVBAR ====== */
.nona-navbar {
    background: #000;
    border-bottom: none;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nona-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.navbar-logo {
    height: 80px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-nonas {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
}

.nona-nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nona-nav-link:hover {
    color: var(--vinho) !important;
}

.nona-instagram {
    color: #fff !important;
    display: flex;
    align-items: center;
}

.nona-instagram:hover {
    color: var(--vinho) !important;
}

.nona-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.6);
}

.nona-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ====== HERO ====== */
.nona-hero {
    position: relative;
    min-height: 85vh;
    background-image: url('/Imagens/BannerGrande.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 767px) {
    .nona-hero {
        background-image: url('/Imagens/BannerPequeno.jpg');
    }
}

.nona-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    font-style: italic;
    color: var(--rosa);
    line-height: 1;
    letter-spacing: 4px;
    text-shadow: 2px 4px 12px rgba(224,30,140,0.15);
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    color: var(--vinho);
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--vinho);
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 540px;
    margin: 0 auto;
}

.btn-nona-primary {
    background-color: var(--rosa);
    color: #fff;
    border: 2px solid var(--rosa);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-nona-primary:hover {
    background-color: var(--rosa-escuro);
    border-color: var(--rosa-escuro);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224,30,140,0.3);
}

.btn-nona-outline {
    background-color: transparent;
    color: var(--vinho);
    border: 2px solid var(--vinho);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-nona-outline:hover {
    background-color: var(--vinho);
    color: #fff;
    transform: translateY(-2px);
}

/* ====== SOBRE ====== */
.nona-sobre {
    background-color: #fff;
    border-top: 4px solid var(--sage-light);
    border-bottom: 4px solid var(--sage-light);
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--rosa);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--rosa);
    margin-top: 0.5rem;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--vinho);
    font-size: 1.1rem;
    font-weight: 300;
}

.sobre-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cinza-texto);
    margin-bottom: 1rem;
}

.sobre-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rosa);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--vinho);
    font-weight: 600;
    margin-top: 4px;
}

.sobre-quote {
    background: var(--sage-light);
    border-left: 5px solid var(--rosa);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
}

.sobre-quote blockquote {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--vinho);
    line-height: 1.6;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.sobre-quote cite {
    font-size: 0.9rem;
    color: var(--cinza-texto);
    font-style: normal;
}

/* ====== VÍDEOS ====== */
.nona-videos {
    background-color: #fff;
    border-top: 4px solid var(--sage-light);
    border-bottom: 4px solid var(--sage-light);
}

.video-card {
    background: var(--creme);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(224,30,140,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1rem 1.25rem;
}

.video-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vinho);
    line-height: 1.4;
    margin: 0;
}

/* ====== GALERIA ====== */
.nona-gallery {
    background-color: var(--creme);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 1199px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    aspect-ratio: 9 / 16;
    background: var(--sage-light);
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(224,30,140,0.2);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

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

.card-hover-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(92,45,30,0.92));
    color: #fff;
    padding: 2rem 0.75rem 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-card:hover .card-hover-info {
    transform: translateY(0);
}

.card-fan-name {
    font-weight: 700;
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.3;
}

.card-fan-city {
    font-size: 0.72rem;
    opacity: 0.85;
    margin: 2px 0 0;
}

.card-nona-tag {
    display: inline-block;
    background: var(--rosa);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 5px;
}

/* ====== LIGHTBOX ====== */
.nona-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-height: 92vh;
    max-width: 420px;
    width: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: block;
    max-height: 92vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--rosa);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.lightbox-close:hover {
    background: var(--rosa-escuro);
}

/* ====== FOOTER ====== */
.nona-footer {
    background: var(--vinho);
    color: rgba(255,255,255,0.85);
}

.footer-nonas {
    font-family: var(--font-title);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--rosa);
    letter-spacing: 2px;
}

.footer-sub {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.65);
}

.footer-instagram {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    margin-top: 4px;
}

.footer-instagram:hover {
    color: var(--rosa);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.footer-social-link {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: var(--rosa);
    transform: translateY(-3px);
}

/* ====== FOOTER BITCOM ====== */
.bitcom-footer {
    background-color: #111;
    color: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.bitcom-logo {
    height: 48px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
}

.bitcom-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
}

.bitcom-contact-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
}

.bitcom-contact-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.bitcom-contact-link:hover {
    color: #25d366;
}

.bitcom-contact-link[href*="instagram"]:hover {
    color: #e01e8c;
}

.bitcom-address {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.bitcom-copy {
    background-color: #000;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}
