/* ==========================================================================
   STYLE SYSTEM - PREMIUM RESEIGN - BARBEARIA HERMANOS
   ========================================================================== */

/* 1. RESET & GENERAL RULES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --color-bg-deep: #0a0a0b;
    --color-bg-alternate: #161618;
    --color-bg-card: rgba(26, 26, 28, 0.7);
    --color-accent-red: #ff1a1a;
    --color-accent-red-hover: #cc0000;
    --color-text-light: #f5f5f7;
    --color-text-muted: #a1a1a5;
    --color-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Light Theme Variables */
    --color-bg-light: #f8f9fa;
    --color-text-dark: #121214;
    --color-text-dark-muted: #5a5a60;
    --color-border-light: rgba(18, 18, 20, 0.08);
    --color-bg-card-light: #ffffff;
}

html, body {
    width: 100%;
    overflow-x: hidden !important;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

body.preloader-active {
    overflow: hidden !important;
}

/* ==========================================================================
   1.1 PRELOADER IMERSIVO
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-shutter {
    position: absolute;
    top: 0;
    width: 50.5%;
    height: 100%;
    background-color: #070708;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.preloader-shutter.left {
    left: 0;
    transform-origin: left;
}

.preloader-shutter.right {
    right: 0;
    transform-origin: right;
}

#preloader.loaded .preloader-shutter.left {
    transform: translateX(-100%);
}

#preloader.loaded .preloader-shutter.right {
    transform: translateX(100%);
}

.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#preloader.loaded .preloader-content {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.preloader-logo-frame {
    position: relative;
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.preloader-logo-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 26, 26, 0.4));
}

.logo-shine-effect {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: preloaderShine 2.5s infinite;
}

@keyframes preloaderShine {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.preloader-bar-container {
    width: 220px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent-red), #ff6b6b);
    box-shadow: 0 0 8px rgba(255, 26, 26, 0.8);
    transition: width 0.1s linear;
}

.preloader-percentage {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-light);
    letter-spacing: 2px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    font-family: var(--font-body);
    border: none;
    outline: none;
    cursor: pointer;
}

/* ==========================================================================
   2. HEADER / NAVBAR (GLASSMORPHISM)
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(7, 7, 8, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 12px 0;
    background-color: rgba(7, 7, 8, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-light);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text small {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-accent-red);
    letter-spacing: 5px;
    margin-top: 2px;
}

.logo-wrapper-header {
    display: flex;
    align-items: center;
}

.header-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 26, 26, 0.2));
}

.header-logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.5));
}

header.scrolled .header-logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.nav-item {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-item:hover {
    color: var(--color-text-light);
    text-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background-color: var(--color-accent-red);
    border-radius: 20px;
    box-shadow: 0 0 8px var(--color-accent-red);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover::after {
    width: 80%;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--color-accent-red) 0%, #a80000 100%);
    border: none;
    color: white;
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.8px;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 26, 26, 0.7);
    color: white;
}

/* Hamburger mobile button */
.menu-toggler {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggler:hover {
    background-color: rgba(255, 26, 26, 0.1);
    border-color: var(--color-accent-red);
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.3);
}

.menu-toggler .bar {
    width: 20px;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-toggler.open .bar1 {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggler.open .bar2 {
    opacity: 0;
    width: 0;
}

.menu-toggler.open .bar3 {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .menu-toggler {
        display: flex;
        margin-left: auto;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #0c0c0e;
        border-left: 1px solid rgba(255, 26, 26, 0.25);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 120px 30px 40px 30px;
        gap: 0;
        transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.95);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-item {
        font-size: 1.3rem;
        font-family: var(--font-heading);
        letter-spacing: 1.5px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        color: rgba(255, 255, 255, 0.85);
        transition: all 0.3s ease;
    }
    
    .nav-item::before {
        content: '★';
        font-size: 0.75rem;
        color: var(--color-accent-red);
        opacity: 0;
        transform: translateX(-8px);
        transition: all 0.3s ease;
    }
    
    .nav-item:hover {
        color: var(--color-accent-red);
        padding-left: 10px;
        text-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
    }
    
    .nav-item:hover::before {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-item::after {
        display: none;
    }
    
    .nav-links .btn-nav-cta {
        margin-top: 35px;
        text-align: center;
        width: 100%;
        padding: 14px 20px;
        font-size: 0.85rem;
        border-radius: 6px;
    }
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
    display: none;
}

@media (min-width: 992px) {
    .hero-bg-video {
        display: none;
    }
    .hero-bg-image {
        display: block;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 11, 0.45) 0%, var(--color-bg-deep) 90%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 26, 26, 0.1);
    border: 1px solid var(--color-accent-red);
    color: var(--color-accent-red);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6.2vw, 4.8rem);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.6);
}

.accent-text {
    color: var(--color-accent-red);
    text-shadow: 0 0 20px rgba(255, 26, 26, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-hero-cta {
    display: inline-block;
    background-color: var(--color-accent-red);
    color: var(--color-text-light);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(255, 26, 26, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--color-accent-red);
}

.btn-hero-cta:hover {
    background-color: transparent;
    color: var(--color-accent-red);
    box-shadow: 0 6px 30px rgba(255, 26, 26, 0.7);
    transform: translateY(-3px);
}

/* ==========================================================================
   4. COMMON SECTION STYLING
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alternate {
    background-color: var(--color-bg-alternate);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Light Section Override Styles */
.section-light {
    background-color: var(--color-bg-light) !important;
    color: var(--color-text-dark) !important;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.section-light .section-title,
.section-light .about-title,
.section-light .contact-title {
    color: var(--color-text-dark) !important;
}

.section-light .section-header p,
.section-light .about-paragraph,
.section-light .contact-desc {
    color: var(--color-text-dark-muted) !important;
}

/* Plan Cards override inside Light Section */
.section-light .custom-plan-card {
    background-color: var(--color-bg-card-light);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-light .custom-plan-card:hover {
    border-color: var(--color-accent-red);
    box-shadow: 0 15px 40px rgba(255, 26, 26, 0.15);
}

.section-light .plan-price-tag {
    color: var(--color-text-dark) !important;
}

.section-light .plan-details-box .details-title {
    color: #9999a0;
}

.section-light .details-list li {
    color: var(--color-text-dark);
}

.section-light .details-list li.highlight-item {
    color: var(--color-text-dark) !important;
    border-bottom-color: var(--color-border-light) !important;
}

.section-light .details-list li.sub-list-item {
    color: var(--color-text-dark-muted) !important;
}

.section-light .plan-frequency {
    color: var(--color-text-dark-muted);
}

/* Service Card override inside Light Section */
.section-light .service-card {
    background-color: var(--color-bg-card-light);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.section-light .service-card:hover {
    border-color: rgba(255, 26, 26, 0.25);
    box-shadow: 0 12px 35px rgba(255, 26, 26, 0.1);
}

.section-light .service-title {
    color: var(--color-text-dark);
}

.section-light .service-desc {
    color: var(--color-text-dark-muted);
}

/* About Action override */
.section-light .btn-about-action {
    border-color: var(--color-border-light);
    color: var(--color-text-dark);
}

.section-light .btn-about-action:hover {
    border-color: var(--color-accent-red);
    color: var(--color-accent-red);
}

.section-light .about-lead {
    color: #222225;
}

/* Units Card override inside Light Section */
.section-light .custom-unit-card {
    background-color: var(--color-bg-card-light);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.section-light .custom-unit-card:hover {
    border-color: var(--color-accent-red);
    box-shadow: 0 12px 35px rgba(255, 26, 26, 0.1);
}

.section-light .unit-card-title {
    color: var(--color-text-dark);
    border-bottom-color: rgba(255, 26, 26, 0.15);
}

.section-light .unit-details p {
    color: var(--color-text-dark-muted);
}

.section-light .custom-unit-card .btn-unit-action {
    border-color: var(--color-text-dark);
    color: var(--color-text-dark);
}

.section-light .custom-unit-card:hover .btn-unit-action {
    border-color: var(--color-accent-red);
    background-color: var(--color-accent-red);
    color: var(--color-text-light);
}

/* Team Card override inside Light Section */
.section-light .team-card {
    background-color: var(--color-bg-card-light);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.section-light .team-card:hover {
    border-color: var(--color-accent-red);
    box-shadow: 0 10px 30px rgba(255, 26, 26, 0.08);
}

.section-light .team-card .barber-name {
    color: var(--color-text-dark);
}

.section-light .team-avatar-frame svg circle:first-of-type {
    fill: #f0f0f2 !important;
    stroke: var(--color-border-light) !important;
}

.section-light .team-avatar-frame svg text {
    fill: rgba(0,0,0,0.03) !important;
}

/* Testimonial override inside Light Section */
.section-light .testimonial-card {
    background-color: var(--color-bg-card-light);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-light .testimonial-card::before {
    color: rgba(255, 26, 26, 0.08);
}

.section-light .testimonial-text {
    color: var(--color-text-dark-muted);
}

.section-light .client-name {
    color: var(--color-text-dark);
}

.section-light .client-title {
    color: var(--color-text-dark-muted);
}

.section-light .client-avatar {
    border-color: rgba(0, 0, 0, 0.05);
}

.section-light .carousel-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
}

.section-light .carousel-control:hover {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: #ffffff;
}

.section-light .indicator-dot {
    background-color: rgba(0, 0, 0, 0.15);
}

.section-light .indicator-dot.active {
    background-color: var(--color-accent-red);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent-red);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-red);
    margin: 12px auto 0 auto;
}

/* ==========================================================================
   5. NATIVE PLAN CARDS (CLUBE INFINITE)
   ========================================================================== */
.plans-grid {
    margin-top: 40px;
}

.custom-plan-card {
    background-color: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-plan-card:hover {
    border-color: var(--color-accent-red);
    box-shadow: 0 15px 40px rgba(255, 26, 26, 0.25);
}

/* Featured card (Infinite Duos) */
.custom-plan-card.featured-plan {
    border: 2.5px solid var(--color-accent-red);
    box-shadow: 0 15px 40px rgba(255, 26, 26, 0.2);
}

.custom-plan-card.featured-plan:hover {
    box-shadow: 0 20px 50px rgba(255, 26, 26, 0.35);
}

/* Badges */
.crown-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.crown-badge svg {
    filter: drop-shadow(0 0 8px rgba(255, 26, 26, 0.6));
    animation: bounceCrown 2s ease-in-out infinite alternate;
}

@keyframes bounceCrown {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

.star-rating {
    color: var(--color-accent-red);
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 4px;
}

.novidade-tag {
    position: absolute;
    top: -15px;
    background-color: var(--color-accent-red);
    color: var(--color-text-light);
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(255, 26, 26, 0.4);
    z-index: 10;
}

.plan-header-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 26, 26, 0.05);
    border: 1px solid rgba(255, 26, 26, 0.15);
    color: var(--color-accent-red);
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-plan-card:hover .plan-header-icon {
    background: var(--color-accent-red);
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 20px rgba(255, 26, 26, 0.3);
    border-color: var(--color-accent-red);
}

.plan-price-tag {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--color-text-light);
    margin-bottom: 10px;
    font-weight: 900;
    display: flex;
    align-items: flex-start;
}

.plan-price-tag small {
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2px;
    margin-top: 4px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--color-accent-red);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.plan-details-box {
    width: 100%;
    margin-bottom: 30px;
    flex-grow: 1;
}

.details-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 15px;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.details-list li {
    font-size: 0.9rem;
    color: #dddddd;
}

.details-list li.highlight-item {
    font-weight: 700;
    color: var(--color-text-light);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
}

.details-list li.sub-list-item {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.plan-frequency {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 15px;
}

.btn-plan-subscribe {
    width: 100%;
    background-color: var(--color-accent-red);
    color: var(--color-text-light);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 14px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-plan-subscribe:hover {
    background-color: var(--color-text-light);
    color: var(--color-bg-deep);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   6. SERVIÇOS E PREÇOS (GRID SYSTEM)
   ========================================================================== */
.services-grid {
    margin-top: 30px;
}

.card-col {
    margin-bottom: 30px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: rgba(255, 26, 26, 0.3);
    box-shadow: 0 12px 35px rgba(255, 26, 26, 0.15);
}

.service-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 26, 26, 0.05);
    border: 1px solid rgba(255, 26, 26, 0.15);
    color: var(--color-accent-red);
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon {
    background: var(--color-accent-red);
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 20px rgba(255, 26, 26, 0.3);
    border-color: var(--color-accent-red);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    height: 60px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-accent-red);
    font-weight: 700;
}

/* ==========================================================================
   7. SOBRE NÓS
   ========================================================================== */
.about-text-panel {
    padding-right: 40px;
}

@media (max-width: 991px) {
    .about-text-panel {
        padding-right: 15px;
        margin-bottom: 50px;
    }
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-paragraph {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
}

.btn-about-action {
    display: inline-block;
    border: 2px solid var(--color-border);
    color: var(--color-text-light);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-about-action:hover {
    border-color: var(--color-accent-red);
    color: var(--color-accent-red);
    transform: translateY(-2px);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-wrapper-frame {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.image-wrapper-frame:hover .about-img {
    transform: scale(1.04);
}

/* ==========================================================================
   8. EQUIPE (TEAM CARDS)
   ========================================================================== */
.team-grid {
    margin-top: 30px;
}

.team-col {
    margin-bottom: 30px;
}

.team-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--color-accent-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 26, 26, 0.1);
}

.team-avatar-frame {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px auto;
}

.barber-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.barber-role {
    font-size: 0.85rem;
    color: var(--color-accent-red);
    font-weight: 700;
}

/* ==========================================================================
   9. TESTIMONIALS CAROUSEL (PROVA SOCIAL)
   ========================================================================== */
.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    overflow: hidden;
    padding: 25px 15px;
}

.carousel-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 0.25;
    transform: scale(0.92);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    padding: 10px 15px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 992px) {
    .testimonial-slide {
        flex: 0 0 33.3333%;
        width: 33.3333%;
    }
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 25px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(255, 26, 26, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--color-accent-red);
    box-shadow: 0 12px 35px rgba(255, 26, 26, 0.15);
    transform: translateY(-5px);
}

.stars {
    color: var(--color-accent-red);
    font-size: 1.2rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #dddddd;
    margin-bottom: 25px;
    line-height: 1.7;
}

.client-name {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
}

/* Control Buttons */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(20, 20, 22, 0.8);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.4);
    color: #ffffff;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

/* Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--color-accent-red);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--color-accent-red);
}

@media (max-width: 768px) {
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    .testimonial-card {
        padding: 35px 20px;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   10. LOCALIZAÇÃO E CONTATO
   ========================================================================== */
.contact-info-col {
    padding-right: 40px;
}

@media (max-width: 991px) {
    .contact-info-col {
        padding-right: 15px;
        margin-bottom: 50px;
    }
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.schedule-info-box {
    background-color: #121213;
    border-left: 4px solid var(--color-accent-red);
    padding: 20px 25px;
    margin-bottom: 35px;
    border-radius: 0 8px 8px 0;
}

.schedule-info-box p {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-info-box p:last-child {
    margin-bottom: 0;
}

.btn-whatsapp-cta {
    display: inline-block;
    background-color: var(--color-accent-red);
    color: var(--color-text-light);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
    background-color: #ffffff;
    color: #121213;
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.map-wrapper-box {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.map-svg-placeholder {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   10.1 NOSSAS UNIDADES CARDS
   ========================================================================== */
.locations-grid {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .locations-grid {
        display: grid !important;
        grid-template-columns: repeat(12, 1fr) !important;
        gap: 30px !important;
    }
    
    /* First 4 cards: span 3 columns (total 12 cols) */
    .locations-grid > .card-col:nth-child(-n+4) {
        grid-column: span 3 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    /* Last 3 cards: span 4 columns (total 12 cols) */
    .locations-grid > .card-col:nth-child(n+5) {
        grid-column: span 4 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    /* Clear offset margins from HTML classes */
    .locations-grid > .card-col {
        margin-left: 0 !important;
    }
}

.custom-unit-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0 0 35px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.unit-card-img-wrapper {
    width: 100%;
    aspect-ratio: 1.1 / 1;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--color-border);
}

.unit-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-unit-card:hover .unit-card-img {
    transform: scale(1.08);
}

.custom-unit-card:hover {
    border-color: var(--color-accent-red);
    box-shadow: 0 12px 35px rgba(255, 26, 26, 0.15);
}

.unit-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin: 25px 25px 15px 25px;
    border-bottom: 2px solid rgba(255, 26, 26, 0.25);
    padding-bottom: 8px;
}

.unit-details {
    margin: 0 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-unit-card .btn-unit-action {
    display: block;
    text-align: center;
    background-color: transparent;
    color: var(--color-text-light);
    border: 2px solid var(--color-border);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 12px 0;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: calc(100% - 50px);
    margin: 0 auto;
    box-sizing: border-box;
}

.unit-details p {
    font-size: 0.85rem;
    color: #dddddd;
    line-height: 1.5;
    margin: 0;
}

.custom-unit-card:hover .btn-unit-action {
    border-color: var(--color-accent-red) !important;
    background-color: var(--color-accent-red) !important;
    color: var(--color-text-light) !important;
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.35) !important;
}


/* ==========================================================================
   11. PERSISTENT FLOATING WHATSAPP ACTION (UX)
   ========================================================================== */
.floating-whatsapp-action {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-whatsapp-action:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.pulse-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: wavePulse 2.2s linear infinite;
    pointer-events: none;
}

@keyframes wavePulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes pulseOpen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ==========================================================================
   11. INSTAGRAM FEED SLICES
   ========================================================================== */
.insta-slice img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insta-slice:hover img {
    transform: scale(1.08);
}

.insta-slice:hover .insta-slice-overlay {
    opacity: 1 !important;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
footer {
    background-color: #050506;
    padding: 70px 0 30px 0;
    border-top: 1px solid var(--color-border);
}

.footer-grid > div {
    margin-bottom: 30px;
}

.footer-logo span {
    font-size: 1.8rem;
}

.footer-logo small {
    font-size: 0.55rem;
}

.footer-moto {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 15px;
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.footer-nav a:hover {
    color: var(--color-accent-red);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icon {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.social-icon:hover {
    color: var(--color-accent-red);
}

.copyright-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (max-width: 991px) {
    .footer-grid > div {
        text-align: left;
    }
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    .social-links {
        justify-content: center;
    }
}

/* ==========================================================================
   13. PREMIUM SCROLL REVEAL EFFECTS
   ========================================================================== */
.reveal-element {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(5px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform, filter;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Delay staggered loops */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Custom clip path reveal for sections headers */
.reveal-clip {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-clip.revealed {
    clip-path: inset(0 0 0 0);
}

/* Slide in from side reveal */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   14. GEOMETRIC SLANTED DIVIDERS
   ========================================================================== */
.slant-divider {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: transparent;
    z-index: 5;
    overflow: hidden;
    line-height: 0;
}

.slant-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

.slant-divider.dark-to-light {
    background-color: var(--color-bg-alternate);
    color: var(--color-bg-light);
    margin-bottom: -1px;
}

.slant-divider.light-to-dark {
    background-color: var(--color-bg-deep);
    color: var(--color-bg-light);
    margin-top: -1px;
}

/* COMPRESSION FOR DESKTOP CARDS (AFTER REMOVING ICONS) */
@media (min-width: 992px) {
    .custom-plan-card {
        padding: 24px 20px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-desc {
        height: auto;
        min-height: 48px;
        margin-bottom: 15px;
    }
    
    .plan-details-box {
        margin-bottom: 20px;
    }
    
    .plan-name {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   15. FOOTER PREMIUM TRABALHADO
   ========================================================================== */
.footer-premium {
    background-color: #060607;
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.footer-grid {
    gap: 40px 0;
}

.footer-logo-wrap {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.25));
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--color-text-muted);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--color-accent-red);
    color: #ffffff;
    border-color: var(--color-accent-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 26, 26, 0.4);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-light);
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--color-accent-red);
}

.footer-links-list,
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--color-accent-red);
    padding-left: 5px;
}

.footer-info-list li {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.payment-methods-box {
    margin-top: 25px;
}

.payment-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--color-text-light);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--color-border);
    margin: 40px 0 30px 0;
}

.footer-bottom {
    font-size: 0.85rem;
}

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

.security-badge {
    font-size: 0.8rem;
    color: #00e676;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    background: rgba(0, 230, 118, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 230, 118, 0.15);
}

/* ==========================================================================
   16. PORTAL DE UNIDADES & LINKTREE E DÚVIDAS
   ========================================================================== */
.linktree-body {
    background: radial-gradient(circle at top, #141416 0%, #0a0a0b 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
}

.linktree-container {
    max-width: 580px;
    width: 100%;
}

.linktree-profile {
    margin-bottom: 35px;
}

.linktree-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--color-accent-red);
    box-shadow: 0 0 20px rgba(255, 26, 26, 0.4);
    margin-bottom: 20px;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.linktree-avatar:hover {
    transform: scale(1.05) rotate(5deg);
}

.linktree-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.linktree-tag {
    font-size: 0.85rem;
    color: var(--color-accent-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.linktree-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-linktree {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-linktree:hover {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.4);
}

.btn-linktree.primary-glow {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    box-shadow: 0 6px 20px rgba(255, 26, 26, 0.35);
}

.btn-linktree.primary-glow:hover {
    background-color: transparent;
    color: var(--color-accent-red);
    box-shadow: 0 8px 30px rgba(255, 26, 26, 0.6);
}

.linktree-footer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.linktree-footer a {
    color: var(--color-accent-red);
    font-weight: 700;
}

/* CONHECER UNIDADE DETAILS PAGE */
.conhecer-hero {
    position: relative;
    width: 100%;
    padding: 160px 0 100px 0;
    background-color: var(--color-bg-deep);
    overflow: hidden;
}

.conhecer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, #0a0a0b 100%);
    z-index: 1;
}

.conhecer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

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

.conhecer-tag {
    display: inline-block;
    color: var(--color-accent-red);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.conhecer-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.conhecer-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 650px;
    line-height: 1.6;
}

/* MAP & FAQs */
.details-grid {
    margin-top: 40px;
}

.map-card-box {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.map-iframe-container {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

.map-info-footer {
    padding: 25px;
}

.map-info-footer p {
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.map-info-footer p:last-child {
    margin-bottom: 0;
}

/* Accordion FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-accent-red);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.1);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    background: transparent;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--color-accent-red);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content p {
    padding: 0 25px 25px 25px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .footer-premium {
        padding: 60px 0 30px 0;
        text-align: left;
    }
    
    .footer-logo-wrap {
        margin: 0 0 20px 0;
    }
    
    .footer-social-icons {
        justify-content: flex-start;
    }
    
    .footer-links-list a:hover {
        padding-left: 5px;
    }
    
    .payment-icons {
        justify-content: flex-start;
    }
    
    .text-left-desktop,
    .text-right-desktop {
        text-align: center !important;
    }
    
    .legal-links-col {
        --legal-align: center;
    }
    
    .unit-action-buttons-wrapper {
        --hero-action-align: flex-start;
    }
    
    .safety-col {
        margin-top: 15px;
    }
}

/* ==========================================================================
   17. GALERIA DE FOTOS DA UNIDADE
   ========================================================================== */
.gallery-grid {
    margin-top: 30px;
}

.gallery-item-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--color-border-light);
    background-color: var(--color-bg-card-light);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    color: #ffffff;
    padding: 30px 15px 15px 15px;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 26, 26, 0.15);
    border-color: rgba(255, 26, 26, 0.25);
}

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

.gallery-item-card:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   18. LIGHTBOX PREMIUM (IMAGEM EXPANDIDA)
   ========================================================================== */
.lightbox-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 7, 8, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 26, 26, 0.2);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

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

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 2010;
}

.lightbox-close:hover {
    background: var(--color-accent-red);
    border-color: var(--color-accent-red);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--color-accent-red);
}

/* 12. RESPONSIVE BRUSH DIVIDERS */
.brush-divider-top {
    height: 70px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #ffffff;
    margin-bottom: -1px;
}

.brush-divider-bottom {
    height: 70px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: #ffffff;
    transform: scaleY(-1);
    margin-top: -1px;
    margin-bottom: -1px;
}

@media (min-width: 992px) {
    .brush-divider-top, .brush-divider-bottom {
        height: 120px; /* higher size on desktop to prevent visual squashing */
    }
}

/* 13. BLOG PAGINATION BUTTONS */
.pagination-btn {
    background-color: var(--color-bg-alternate);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.pagination-btn:hover {
    border-color: var(--color-accent-red);
    color: var(--color-accent-red);
}

.pagination-btn.active {
    background-color: var(--color-accent-red);
    border-color: var(--color-accent-red);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--color-border);
    color: var(--color-text-muted);
}

/* ==========================================================================
   DROPDOWN MENUS (PLANOS, SERVIÇOS, UNIDADES)
   ========================================================================== */
.nav-item-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.nav-item.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-caret {
    font-size: 0.55rem;
    margin-left: 2px;
    display: inline-block;
    transition: transform 0.3s ease;
    opacity: 0.7;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #0b0b0c;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.dropdown-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

.dropdown-menu a:hover {
    background-color: rgba(255, 26, 26, 0.08);
    color: var(--color-accent-red);
    padding-left: 25px;
}

/* Hover behaviors for Desktop */
@media (min-width: 992px) {
    .nav-item {
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
    }
    
    .nav-item-container:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-item-container:hover .dropdown-caret {
        transform: rotate(180deg);
        color: var(--color-accent-red);
    }
}

/* Responsive Accordion style for Mobile */
@media (max-width: 991px) {
    .nav-links {
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .nav-item-container {
        width: 100% !important;
        text-align: left !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-item {
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        padding: 18px 0 !important; /* Zero horizontal padding, uniform vertical padding */
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .nav-item.dropdown-toggle {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        width: 100% !important;
        gap: 6px !important;
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background-color: rgba(255, 255, 255, 0.02) !important;
        border: none !important;
        border-left: 2px solid var(--color-accent-red) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 5px 0 10px 15px !important;
        width: calc(100% - 15px) !important;
        min-width: auto !important;
        box-shadow: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    .nav-item-container.active .dropdown-menu {
        max-height: 500px;
        padding: 5px 0 !important;
    }
    
    .nav-item-container.active .dropdown-caret {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        font-size: 0.95rem !important;
        padding: 12px 20px !important;
        font-family: var(--font-heading) !important;
        letter-spacing: 1px !important;
        text-align: left !important;
    }
}

/* ==========================================================================
   GALLERY PLACEHOLDER (FOTO EM BREVE)
   ========================================================================== */
.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #1b0e0f 0%, #080809 100%);
    border: 1px solid rgba(255, 26, 26, 0.4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 26, 26, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px solid rgba(255, 26, 26, 0.15);
    border-radius: 6px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.gallery-placeholder::before {
    content: '★';
    position: absolute;
    top: 20px;
    font-size: 0.65rem;
    color: var(--color-accent-red);
    opacity: 0.7;
    text-shadow: 0 0 8px rgba(255, 26, 26, 0.8);
    transition: all 0.4s ease;
}

.gallery-item-card:hover .gallery-placeholder {
    border-color: var(--color-accent-red);
    background: linear-gradient(135deg, #261214 0%, #080809 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 26, 26, 0.3);
}

.gallery-item-card:hover .gallery-placeholder::after {
    border-color: rgba(255, 26, 26, 0.35);
}

.gallery-item-card:hover .gallery-placeholder::before {
    opacity: 1;
    transform: scale(1.3);
    text-shadow: 0 0 12px rgba(255, 26, 26, 1);
}

.placeholder-icon {
    opacity: 0.9;
    transition: all 0.4s ease;
    color: var(--color-accent-red);
    filter: drop-shadow(0 0 6px rgba(255, 26, 26, 0.5));
}

.gallery-item-card:hover .placeholder-icon {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.8));
}

.placeholder-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 26, 26, 0.3);
    padding-bottom: 6px;
}

.gallery-item-card:hover .placeholder-text {
    opacity: 1;
    color: #ffffff;
    border-color: var(--color-accent-red);
    letter-spacing: 5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.gallery-placeholder.video-placeholder {
    height: 100% !important;
    border-radius: 0;
}

/* Hover effect specifically for the video card container wrapper */
.video-tour-container {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-tour-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 26, 26, 0.15) !important;
}

.video-tour-container:hover .gallery-placeholder.video-placeholder {
    border-color: var(--color-accent-red);
    background: linear-gradient(135deg, #261214 0%, #080809 100%);
}

.video-tour-container:hover .placeholder-icon {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px rgba(255, 26, 26, 0.8));
}

.video-tour-container:hover .placeholder-text {
    opacity: 1;
    color: #ffffff;
    border-color: var(--color-accent-red);
    letter-spacing: 5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}


/* ==========================================================================
   NOSSAS UNIDADES CAROUSEL (SPLIDE OVERRIDES)
   ========================================================================== */
.locations-carousel {
    padding: 20px 0 50px 0;
}

/* Red accents for Splide Pagination & Arrows */
.locations-carousel .splide__arrow {
    background: rgba(10, 10, 11, 0.85);
    border: 1px solid rgba(255, 26, 26, 0.25);
    color: #ffffff;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
}

.locations-carousel .splide__arrow svg {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.locations-carousel .splide__arrow:hover {
    background: var(--color-accent-red);
    border-color: var(--color-accent-red);
}

.locations-carousel .splide__arrow:hover svg {
    fill: #ffffff;
}

/* Position arrows outside the container on desktop, hide on mobile/tablet */
@media (min-width: 992px) {
    .locations-carousel .splide__arrow--prev {
        left: -60px !important;
    }
    .locations-carousel .splide__arrow--next {
        right: -60px !important;
    }
}

@media (max-width: 991px) {
    .locations-carousel .splide__arrow {
        display: flex !important;
        top: 30% !important; /* Centered vertically on the cover image */
        width: 32px !important;
        height: 32px !important;
        background: rgba(10, 10, 11, 0.88) !important;
        border-color: rgba(255, 26, 26, 0.3) !important;
    }
    
    .locations-carousel .splide__arrow svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    .locations-carousel .splide__arrow--prev {
        left: 12px !important;
    }
    
    .locations-carousel .splide__arrow--next {
        right: 12px !important;
    }
}

.locations-carousel .splide__pagination {
    bottom: -15px;
}

.locations-carousel .splide__pagination__page {
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    width: 8px;
    height: 8px;
}

.locations-carousel .splide__pagination__page.is-active {
    background: var(--color-accent-red);
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   MINIMALIST VECTOR SVG ICONS
   ========================================================================== */
.icon-svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    vertical-align: middle;
    margin-right: 6px;
    color: var(--color-accent-red);
    display: inline-block;
    position: relative;
    top: -1px;
}

.unit-details p, .conhecer-hero-content p, .footer-contact-info p, .footer-contact-info li {
    display: flex;
    align-items: center;
}

/* Responsive Visibility Helpers */
@media (max-width: 991px) {
    .hidden-xs, .hidden-sm {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .hidden-md, .hidden-lg, .hidden-xlg {
        display: none !important;
    }

/* ==========================================================================
   WCAG 2.1 AA ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */
:focus-visible {
    outline: 3px solid var(--color-accent-red) !important;
    outline-offset: 3px !important;
}

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--color-accent-red);
    color: #ffffff !important;
    padding: 12px 24px;
    z-index: 99999;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    transition: top 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.skip-to-content:focus {
    top: 10px;
}





