﻿/* ===================================
   OUTMIDIA OUTDOOR - ENHANCED UI/UX
   Premium Design System
   =================================== */

/* ===================================
   PREMIUM COLOR SYSTEM & GRADIENTS
   =================================== */
:root {
    /* Brand Colors - Outmídia Brand Palette */
    --primary-gold: #FFC527;
    /* The Correct Yellow */
    --secondary-gold: #3E2723;
    /* Brown Backgrounds/Details */
    --accent-gold: #FF9100;
    /* Gradient End Detail */
    --dark-gold: #3E2723;
    /* Mapping old dark-gold to brown */

    /* Neutrals */
    --dark: #000000;
    --gray-900: #1A1A1A;
    --gray-700: #4A4A4A;
    --gray-500: #828282;
    --gray-300: #C4C4C4;
    --gray-100: #F9F9F9;
    --white: #FFFFFF;

    /* Missing Variables Fix */
    --color-brown: #3E2723;
    --color-gray-soft: #666666;
    --color-gray: #4A4A4A;

    /* Premium Gradients (Yellow -> Orange Tip) */
    --gradient-primary: linear-gradient(135deg, #FFC527 0%, #FF9100 100%);
    --gradient-warm: linear-gradient(135deg, #FFC527 0%, #FFB300 100%);
    --gradient-shine: linear-gradient(135deg, rgba(255, 197, 39, 0.1) 0%, rgba(255, 145, 0, 0.05) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(62, 39, 35, 0) 0%, rgba(62, 39, 35, 0.9) 100%);
    /* Brown overlay */

    /* Glass Morphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 197, 39, 0.2);
    --glass-blur: blur(20px);

    /* Shadows - Brown/Yellow Tinted */
    --shadow-sm: 0 2px 8px rgba(62, 39, 35, 0.08);
    --shadow-md: 0 8px 16px rgba(62, 39, 35, 0.1);
    --shadow-lg: 0 16px 32px rgba(62, 39, 35, 0.12);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 197, 39, 0.3);
    --shadow-glow-sm: 0 0 20px rgba(255, 197, 39, 0.2);

    /* Enhanced Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Smooth Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   PREMIUM KEYFRAME ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 197, 39, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 197, 39, 0.4);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Count Up Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Glass Morphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.glass-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Premium Card Hover */
.card-hover {
    transition: var(--transition-normal);
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-sm);
}

/* Glow Effects */
.glow-primary {
    box-shadow: var(--shadow-glow);
}

.glow-hover:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text-gold {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Shimmer Loading */
.shimmer {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 197, 39, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ===================================
   ENHANCED BUTTONS
   =================================== */

.btn-premium {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(255, 197, 39, 0.3);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 197, 39, 0.4);
}

.btn-premium:active {
    transform: translateY(0);
}

.btn-outline-premium {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-outline-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-premium:hover {
    color: white;
    border-color: transparent;
}

.btn-outline-premium:hover::before {
    width: 100%;
}

/* ===================================
   ENHANCED CARDS
   =================================== */

.premium-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 197, 39, 0.3);
}

.contact-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy feel */
}

.glass-card {
    background: linear-gradient(135deg,
            rgba(255, 197, 39, 0.05),
            rgba(255, 197, 39, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 197, 39, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: linear-gradient(135deg,
            rgba(255, 197, 39, 0.08),
            rgba(255, 197, 39, 0.04));
    border-color: rgba(255, 197, 39, 0.2);
    transform: translateY(-4px);
}

/* ===================================
   LOADING STATES
   =================================== */

.skeleton {
    background: linear-gradient(90deg,
            #f0f0f0 25%,
            #e0e0e0 50%,
            #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-card {
    height: 200px;
    border-radius: 20px;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-100);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   ENHANCED FORM INPUTS
   =================================== */

.input-premium {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-100);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: white;
}

.input-premium:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(255, 197, 39, 0.1);
}

.input-premium::placeholder {
    color: var(--gray-300);
}

/* Floating Label */
.input-group {
    position: relative;
}

.input-label {
    position: absolute;
    left: 1.5rem;
    top: 1rem;
    color: var(--gray-500);
    pointer-events: none;
    transition: var(--transition-normal);
    background: white;
    padding: 0 0.5rem;
}

.input-premium:focus+.input-label,
.input-premium:not(:placeholder-shown)+.input-label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.75rem;
    color: var(--primary-gold);
}

/* ===================================
   BADGE COMPONENTS
   =================================== */

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
}

.badge-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.badge-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.badge-available {
    background: linear-gradient(135deg, #10B981, #059669);
    position: relative;
}

.badge-available::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    left: 0.75rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ===================================
   NAVBAR ENHANCEMENTS
   =================================== */

.navbar-premium {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 197, 39, 0.1);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar-premium.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

/* Active Link Indicator */
.nav-link-premium {
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.nav-link-premium:hover::after,
.nav-link-premium.active::after {
    width: 100%;
}

/* ===================================
   TABLE ENHANCEMENTS
   =================================== */

.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.table-premium thead {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--gradient-primary);
}

.table-premium th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.table-premium td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.table-premium tbody tr {
    transition: var(--transition-fast);
}

.table-premium tbody tr:hover {
    background: rgba(255, 197, 39, 0.05);
}

.table-premium tbody tr:last-child td {
    border-bottom: none;
}

/* ===================================
   ACCESSIBILITY & PREFERENCES
   =================================== */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible */
*:focus-visible {
    outline: 3px solid var(--primary-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #CC8F00;
        --gray-500: #404040;
    }
}

/* ===================================
   SCROLL BEHAVIOR
   =================================== */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gold);
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

@media (max-width: 768px) {

    .premium-card,
    .glass-card {
        padding: 1.5rem;
    }

    .btn-premium,
    .btn-outline-premium {
        width: 100%;
        text-align: center;
    }
}

/ *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =           U T I L I T Y   C L A S S E S   F O R   V I S U A L   C O N S I S T E N C Y           = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * /         / *   B a c k g r o u n d   B l o b s   * /     . b g - b l o b - y e l l o w    {
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    1 9 7 ,    3 9 ,    0 . 0 5 ) ;
                 / *   B r a n d   Y e l l o w   * /             b o r d e r - r a d i u s :    5 0 % ;
                 f i l t e r :    b l u r ( 8 0 p x ) ;
         
}

         . b g - b l o b - b r o w n    {
                 b a c k g r o u n d :    r g b a ( 6 2 ,    3 9 ,    3 5 ,    0 . 0 5 ) ;
                 / *   B r a n d   B r o w n   * /             b o r d e r - r a d i u s :    5 0 % ;
                 f i l t e r :    b l u r ( 6 0 p x ) ;
         
}

         / *   F e a t u r e d   L o c a t i o n   C a r d   ( L o c a i s . h t m l )   * /     . f e a t u r e d - l o c a t i o n - c a r d    {
                 m a x - w i d t h :    1 0 0 0 p x ;
                 m a r g i n :    3 r e m   a u t o ;
                 b a c k g r o u n d :    # F F F F F F ;
                 b o r d e r - r a d i u s :    1 6 p x ;
                 o v e r f l o w :    h i d d e n ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 6 2 ,    3 9 ,    3 5 ,    0 . 1 ) ;
                 b o x - s h a d o w :    v a r ( - - s h a d o w - m d ) ;
         
}

         . f e a t u r e d - l o c a t i o n - c o n t e n t    {
                 p a d d i n g :    2 r e m ;
         
}

         . f e a t u r e d - l o c a t i o n - t i t l e    {
                 f o n t - s i z e :    1 . 5 r e m ;
                 m a r g i n - b o t t o m :    1 r e m ;
                 c o l o r :    v a r ( - - c o l o r - b r o w n ) ;
                 / *   B r a n d   B r o w n   * /             f o n t - w e i g h t :    7 0 0 ;
         
}

         . f e a t u r e d - l o c a t i o n - t e x t    {
                 f o n t - s i z e :    1 . 1 r e m ;
                 c o l o r :    v a r ( - - c o l o r - g r a y ) ;
                 m a r g i n - b o t t o m :    0 . 5 r e m ;
         
}

         . f e a t u r e d - l o c a t i o n - s t a t s    {
                 b a c k g r o u n d :    r g b a ( 2 5 5 ,    1 9 7 ,    3 9 ,    0 . 1 ) ;
                 / *   B r a n d   Y e l l o w   T i n t   * /             p a d d i n g :    1 . 5 r e m ;
                 b o r d e r - r a d i u s :    1 2 p x ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 2 5 5 ,    1 9 7 ,    3 9 ,    0 . 3 ) ;
         
}

         . f e a t u r e d - l o c a t i o n - s t a t - n u m b e r    {
                 f o n t - s i z e :    1 . 5 r e m ;
                 f o n t - w e i g h t :    7 0 0 ;
                 c o l o r :    v a r ( - - c o l o r - b r o w n ) ;
                 / *   B r a n d   B r o w n   * /     
}

         / *   I c o n s   &   B a d g e s   * /     . i c o n - g o l d    {
                 c o l o r :    v a r ( - - c o l o r - p r i m a r y ) ;
                 / *   B r a n d   Y e l l o w   * /     
}

         . b a d g e - f e a t u r e    {
                 b a c k g r o u n d :    r g b a ( 6 2 ,    3 9 ,    3 5 ,    0 . 0 5 ) ;
                 p a d d i n g :    8 p x   1 6 p x ;
                 b o r d e r - r a d i u s :    6 p x ;
                 f o n t - s i z e :    0 . 9 r e m ;
                 c o l o r :    v a r ( - - c o l o r - g r a y ) ;
                 d i s p l a y :    i n l i n e - f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    0 . 5 r e m ;
                 b o r d e r :    1 p x   s o l i d   r g b a ( 6 2 ,    3 9 ,    3 5 ,    0 . 1 ) ;
         
}

         . b a d g e - a v a i l a b l e - c h e c k    {
                 b a c k g r o u n d :    r g b a ( 7 6 ,    1 7 5 ,    8 0 ,    0 . 1 ) ;
                 p a d d i n g :    6 p x   1 2 p x ;
                 b o r d e r - r a d i u s :    6 p x ;
                 f o n t - s i z e :    0 . 8 5 r e m ;
                 f o n t - w e i g h t :    6 0 0 ;
                 c o l o r :    # 2 E 7 D 3 2 ;
                 d i s p l a y :    i n l i n e - b l o c k ;
         
}

     / *   L a y o u t   U t i l i t i e s   * /     . s e c t i o n - p a d d i n g    {
                 p a d d i n g :    4 r e m   0 ;
         
}

         . t e x t - c e n t e r    {
                 t e x t - a l i g n :    c e n t e r ;
         
}

         . t e x t - g r a y - l i g h t    {
                 c o l o r :    v a r ( - - c o l o r - g r a y - s o f t ) ;
                 m a x - w i d t h :    7 0 0 p x ;
                 m a r g i n :    1 . 5 r e m   a u t o ;
                 f o n t - s i z e :    1 . 1 r e m ;
         
}

         . f l e x - c e n t e r - g a p    {
                 d i s p l a y :    f l e x ;
                 g a p :    1 r e m ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 m a r g i n - t o p :    2 r e m ;
                 f l e x - w r a p :    w r a p ;
         
}

     
/* ===================================
   UI/UX ENHANCEMENTS - PRIORIDADE ALTA
   Outmidia Outdoor
   =================================== */

/* ===================================
   1. CONTRASTE E ACESSIBILIDADE
   =================================== */

/* Links ativos com melhor contraste em fundos claros */
.navbar.scrolled .nav-link.active,
.nav-link.active {
    color: #FF8F00 !important;
}

/* Adicionar sombra sutil para melhor legibilidade */
.navbar.scrolled .nav-link {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Badges com melhor contraste */
.section-badge {
    background: linear-gradient(135deg, #FFC527 0%, #FFB300 100%) !important;
    color: #3E2723 !important;
    font-weight: 700;
}

/* ===================================
   2. ESPAÇAMENTO MELHORADO
   =================================== */

/* Mais padding nos cards de serviço */
.service-item,
.pricing-card {
    padding: 2.5rem !important;
}

@media (min-width: 1200px) {

    .service-item,
    .pricing-card {
        padding: 3rem !important;
    }
}

/* Mais respiro vertical entre seções */
section:not(.hero):not(.navbar) {
    padding: 5rem 0 !important;
}

.cta-section {
    padding: 6rem 0 !important;
}

/* ===================================
   3. HOVER EFFECTS MELHORADOS
   =================================== */

/* Botões com efeito de brilho (shine) */
.btn-primary,
.cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before,
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.cta-btn:hover::before {
    left: 100%;
}

.btn-primary:hover,
.cta-btn:hover,
.btn.btn-primary:hover {
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 12px 24px rgba(255, 197, 39, 0.35) !important;
}

/* Cards com glow ao hover */
.pricing-card,
.service-item,
.glass-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: transform;
}

.pricing-card:hover,
.service-item:hover,
.glass-card:hover {
    transform: translateY(-12px) !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 197, 39, 0.1),
        0 0 30px rgba(255, 197, 39, 0.15) !important;
}

/* Animar ícone/número dentro do card ao hover */
.pricing-card:hover .pricing-icon,
.service-item:hover .service-number,
.glass-card:hover .service-number {
    transform: scale(1.1) rotate(5deg);
    color: #FFC527;
    transition: all 0.3s ease;
}

/* Links de navegação com elevação */
.nav-link {
    transition: color 0.3s ease, transform 0.2s ease !important;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link::after {
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Contact cards hover melhorado */
.contact-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(255, 197, 39, 0.3) !important;
}

/* ===================================
   4. SCROLL ANIMATIONS
   =================================== */

/* Elementos para animar ao entrar na tela */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Variações de delay para efeito cascata */
[data-animate][data-delay="1"] {
    transition-delay: 0.1s;
}

[data-animate][data-delay="2"] {
    transition-delay: 0.2s;
}

[data-animate][data-delay="3"] {
    transition-delay: 0.3s;
}

[data-animate][data-delay="4"] {
    transition-delay: 0.4s;
}

[data-animate][data-delay="5"] {
    transition-delay: 0.5s;
}

/* Animação fade-in-up alternativa */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   5. TIPOGRAFIA MELHORADA
   =================================== */

/* Hierarquia responsiva com clamp */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 700;
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
}

.pricing-title,
.service-name {
    font-size: 1.5rem !important;
    font-weight: 700;
    line-height: 1.3;
}

/* Texto corpo consistente */
body,
p,
.about-text {
    line-height: 1.7;
    font-size: 1.0625rem;
}

.hero-subtitle {
    font-size: 1.125rem !important;
    line-height: 1.6 !important;
}

/* Gradient text melhorado */
.gradient-text,
.gradient-text-gold {
    background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Fallback para navegadores antigos */
@supports not (background-clip: text) {

    .gradient-text,
    .gradient-text-gold {
        color: #FFB300;
    }
}

/* ===================================
   6. LOADING STATES
   =================================== */

.btn:active,
.cta-btn:active,
.btn-primary:active {
    transform: translateY(1px) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.1s ease !important;
}

.btn.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   7. PERFORMANCE OPTIMIZATION
   =================================== */

/* Will-change para elementos interativos */
.pricing-card,
.service-item,
.btn,
.glass-card {
    will-change: transform, box-shadow;
}

/* Remover will-change quando não em hover */
.pricing-card:not(:hover),
.service-item:not(:hover),
.btn:not(:hover),
.glass-card:not(:hover) {
    will-change: auto;
}

/* ===================================
   8. MOBILE MENU ANIMATION
   =================================== */

.nav-menu.active .nav-link {
    animation: fadeInLeft 0.3s ease forwards;
    opacity: 0;
}

.nav-menu.active .nav-link:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-menu.active .nav-link:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-menu.active .nav-link:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-menu.active .nav-link:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-menu.active .nav-link:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-menu.active .nav-link:nth-child(6) {
    animation-delay: 0.6s;
}

.nav-menu.active .nav-link:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   9. PORTFOLIO/WORK ITEMS
   =================================== */

.work-item,
.portfolio-item-full {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-item:hover,
.portfolio-item-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   10. MÉTRICAS/STATS
   =================================== */

.metric,
.stat-box {
    transition: all 0.3s ease;
}

.metric:hover,
.stat-box:hover {
    transform: translateY(-5px) scale(1.05);
}

.metric-value,
.stat-number {
    transition: color 0.3s ease;
}

.metric:hover .metric-value,
.stat-box:hover .stat-number {
    color: #FFC527 !important;
}

/* ===================================
   11. PREMIUM CARD DESIGN OVERHAUL (GLOBAL)
   =================================== */

/* Base Premium Card Style - Applied to all card types */
.service-item,
.pricing-card,
.feature-item,
.feature-simple,
.contact-card,
.testimonial-card,
.portfolio-item-full,
.metric,
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px !important;
    padding: 2rem 1.75rem !important;
    /* Reduced padding from 3rem/2.5rem */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    /* Removed overflow:hidden to allow shadows to show */
    /* overflow: hidden; */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    /* Subtle border ring */
    z-index: 1;
}

/* Add subtle gradient overlay - constrained to card via pseudo-element masking or manually positioned if needed
   Since we removed overflow:hidden, we need border-radius on pseudo-elements to match parent
*/
.service-item::before,
.pricing-card::before,
.feature-item::before,
.feature-simple::before,
.contact-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    pointer-events: none;
    border-radius: 20px !important;
    /* Match parent border radius */
}

/* Hover State - Lift and Glow */
.service-item:hover,
.pricing-card:hover,
.feature-item:hover,
.feature-simple:hover,
.contact-card:hover,
.testimonial-card:hover,
.portfolio-item-full:hover,
.metric:hover,
.glass-card:hover {
    transform: translateY(-12px) scale(1.01) !important;
    border-color: rgba(255, 197, 39, 0.4);
    box-shadow:
        0 20px 40px -5px rgba(0, 0, 0, 0.1),
        0 10px 20px -5px rgba(255, 197, 39, 0.15),
        /* Gold glow */
        0 0 0 1px rgba(255, 197, 39, 0.2) !important;
}

/* Special styling for metrics/stats to keep them compact if needed, 
   but user asked for improvement across the board, so consistent premium look is good. */
.metric {
    padding: 2rem !important;
    text-align: center;
}

/* Feature Icons - Enhanced Container */
.feature-icon,
.service-icon,
.card-icon-wrapper,
.metric-icon,
.feature-icon-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #FF8F00;
    font-size: 1.75rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(255, 197, 39, 0.15);
}

/* Rotate icon on card hover */
.service-item:hover .service-number,
.service-item:hover .feature-icon,
.feature-item:hover .feature-icon,
.feature-simple:hover .feature-icon-large,
.contact-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #FFC527 0%, #FFB300 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 197, 39, 0.3);
}

/* Typography refinements inside cards */
.card-title,
.service-name,
.pricing-title,
.feature-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.card-description,
.service-description,
.pricing-description,
.feature-description {
    color: #4A4A4A;
    line-height: 1.7;
    font-size: 1rem;
}

/* Pricing Tags/Badges */
.pricing-tag,
.service-tag {
    background: #1A1A1A;
    color: #FFC527;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Testimonials specific */
.testimonial-card {
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 700;
}


/* ===================================
   12. WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed !important;
    /* Force fixed positioning */
    bottom: 30px !important;
    right: 30px !important;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2147483647 !important;
    /* Max z-index to stay on top */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    transform: translateZ(0);
    /* Hardware acceleration */
}

/* Ensure font awesome icon is centered and visible */
.whatsapp-float i,
.whatsapp-float .fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    color: white;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    opacity: 0;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
    pointer-events: none;
    /* Prevent interference */
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* FIX PRICING FEATURES BULLETS */
/* FIX PRICING FEATURES BULLETS WITH FLEXBOX */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Auto grid layout */
    gap: 1rem 2rem;
}

.pricing-features li {
    display: flex !important;
    align-items: center !important;
    /* Vertically center bullet with text */
    justify-content: flex-start;
    padding-left: 0 !important;
    /* Reset padding, use gap instead */
    margin-bottom: 0;
    line-height: 1.4;
    color: #4A4A4A;
    text-align: left;
}

.pricing-features li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    /* Prevent bullet from shrinking */
    width: 10px;
    height: 10px;
    margin-right: 12px;
    /* Space between bullet and text */
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
    position: static !important;
    /* Reset absolute positioning */
}

/* PREMIUM LOCATION CARDS */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.location-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.4);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FF9800);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover::before {
    opacity: 1;
}

/* Header: ID + Info */
.location-header-flex {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-id-badge {
    background: #2D2D2D;
    color: #FFC107;
    min-width: 48px;
    height: auto;
    min-height: 48px;
    padding: 0 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    text-align: center;
}

.location-info h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    line-height: 1.3;
}

.location-address {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.location-region {
    display: inline-block;
    font-size: 0.75rem;
    color: #FF9800;
    font-weight: 600;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.location-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    background: #FAFAFA;
    padding: 1rem;
    border-radius: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.stat-value i {
    color: #FFC107;
}

/* Features Tags */
.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.loc-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: #FFF8E1;
    color: #D38C00;
    font-weight: 500;
}

.loc-tag.available {
    background: #E8F5E9;
    color: #2E7D32;
    margin-left: auto;
    /* Push to right */
}

/* Actions */
.location-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-reserve {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    color: white;
}

.btn-maps {
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #EEE;
    border-radius: 10px;
    color: #666;
    background: white;
    transition: all 0.2s;
    text-decoration: none;
    text-decoration: none;
    font-size: 1.1rem;
}

/* GRID PADDING FIX FOR SHADOWS/HOVER */
.values-grid,
.features-list,
.stats-grid,
.stats-grid-inline,
.about-grid,
.contact-grid,
.locations-grid {
    padding: 2rem 1rem !important;
    /* Add vertical and horizontal padding */
    margin: 0 auto !important;
    /* FIXED: Was margin 0 -1rem which pulled left */
    width: 100% !important;
    /* FIXED: Was calc(100% + 2rem) */
    overflow: visible !important;
    justify-content: center;
    /* Ensure flex/grid items center */
    justify-items: center;
    /* Ensure grid items center */
}

/* GLOBAL BUTTON FIX */
.btn,
.btn-primary,
.cta-btn,
.btn-map,
.btn-whatsapp,
button {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    line-height: normal !important;
    /* Prevent weird offset */
}

/* Fix specific cards to ensure they can float */
.value-card,
.feature-item,
.stat-inline,
.stat-box,
.location-card {
    height: 100%;
    /* Ensure uniform height */
    overflow: visible !important;
    /* Allow children to pop out */

    /* Ensure transform doesn't get clipped by parent stack context if z-index is low */
    z-index: 10;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
}

/* SUPER IMPORTANT: Force high z-index on hover to overlap ANY section */
.value-card:hover,
.feature-item:hover,
.stat-inline:hover,
.stat-box:hover,
.location-card:hover,
.contact-card:hover,
.service-item:hover,
.pricing-card:hover {
    z-index: 9999 !important;
    /* Nuclear option for z-index */
    transform: translateY(-10px) scale(1.02) !important;
    /* Little extra pop */
}

/* Ensure sections don't trap the z-index */
section,
.container {
    overflow: visible !important;
}

.btn-maps:hover {
    border-color: #4285F4;
    /* Google Blue */
    color: #4285F4;
    background: #F0F6FF;
}

/* ===================================
   BI-SEMANAS CURRENT PERIOD CARD
   =================================== */

.current-period-premium {
    padding: 2rem 0;
    margin-top: -3rem;
    /* Overlap hero */
    position: relative;
    z-index: 10;
}

.period-card-premium {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.period-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
}

.period-icon {
    width: 60px;
    height: 60px;
    background: #FFF8E1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8F00;
    font-size: 1.75rem;
}

.period-badge {
    background: #FFF3E0;
    color: #E65100;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.period-content {
    text-align: center;
    padding: 1rem 0;
}

.period-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.period-dates {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.date-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.date-item i {
    font-size: 1.5rem;
    color: #FFC107;
}

.date-item span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.date-separator {
    color: #DDD;
    font-size: 1.25rem;
}

.period-progress {
    max-width: 500px;
    margin: 0 auto;
}

.progress-bar {
    height: 12px;
    background: #F0F0F0;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFC107, #FF9800);
    border-radius: 100px;
    box-shadow: 0 2px 5px rgba(255, 152, 0, 0.3);
}

.progress-text {
    display: block;
    text-align: right;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.period-actions {
    display: flex;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 2rem;
}

.btn-outline-gold {
    border: 2px solid #FFC107;
    color: #FF8F00;
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #FFC107;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
    transform: translateY(-2px);
}

/* ===================================
   PREMIUM STATS SECTION - LOCAIS PAGE
   =================================== */

.locations-stats {
    padding: 2rem 0 2.5rem;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC527 50%, #FFB300 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 152, 0, 0.5);
    border-bottom: 2px solid rgba(255, 152, 0, 0.5);
    box-shadow:
        inset 0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.locations-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 197, 39, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* Add another orb on the left */
.locations-stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.stats-grid-inline {
    display: grid;
    /* Use auto-fit with a max-width per item, but ensure centering with justify-content */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    /* This is critical for centering when items don't fill the row */
    justify-content: center;
    justify-items: center;
}

/* Ensure the items themselves take full width of their grid cell up to a point */
.stats-grid-inline>* {
    width: 100%;
    max-width: 320px;
    /* Prevent them from getting too wide on huge screens */
}

.stat-inline {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 16px -4px rgba(0, 0, 0, 0.15),
        0 4px 8px -2px rgba(0, 0, 0, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Animated gradient border */
.stat-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    padding: 3px;
    background: linear-gradient(135deg, #FFC527, #FF9100, #FFC527);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.stat-inline:hover::before {
    opacity: 1;
}

/* Glowing orb behind number */
.stat-inline::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 197, 39, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    transition: all 0.5s ease;
}

.stat-inline:hover::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 197, 39, 0.4) 0%, transparent 70%);
}

.stat-inline:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 25px 50px -15px rgba(255, 197, 39, 0.45),
        0 12px 30px -7px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 197, 39, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(255, 197, 39, 0.1);
    border-color: rgba(255, 197, 39, 0.5);
}

.stat-inline h3 {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF9100 0%, #FFC527 50%, #FF8F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
    transition: transform 0.4s ease;
}

.stat-inline:hover h3 {
    transform: scale(1.1);
}

.stat-inline p {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Add icons before each stat */
.stat-inline:nth-child(1) h3::before {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.stat-inline:nth-child(2) h3::before {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite 0.5s;
}

.stat-inline:nth-child(3) h3::before {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite 1s;
}

.stat-inline:nth-child(4) h3::before {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid-inline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-inline {
        padding: 2rem 1.5rem;
    }

    .stat-inline h3 {
        font-size: 3rem;
    }

    .stat-inline p {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .stats-grid-inline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-inline h3 {
        font-size: 3.5rem;
    }
}

/* ===================================
   PREMIUM MISSION/VISION/VALUES CARDS
   Enhanced styling for sobre page - value-card
   =================================== */

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 245, 0.95) 100%);
    border: 2px solid rgba(255, 197, 39, 0.15);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 16px -4px rgba(0, 0, 0, 0.08),
        0 4px 8px -2px rgba(0, 0, 0, 0.04),
        0 20px 40px -10px rgba(255, 197, 39, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFC527, #FF9100);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px -12px rgba(255, 197, 39, 0.3),
        0 12px 30px -8px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 197, 39, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    border-color: rgba(255, 197, 39, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFC527 0%, #FF9100 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.875rem;
    transition: color 0.3s ease;
    text-align: center;
}

.value-card:hover h3 {
    color: #FF9100;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
    text-align: center;
}

/* Grid responsiveness */
@media (max-width: 968px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 1.75rem 1.25rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }

    .value-icon i {
        font-size: 1.75rem;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }
}

/* Template 3 - Layout em Lista Horizontal */

/* Remover grid, usar lista vertical */
.pricing-grid-extended {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Card como linha horizontal */
.pricing-card {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    border-left: 4px solid #6366F1;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-left-color: #FFC527;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
}

/* Header compacto */
.pricing-card .pricing-header {
    margin: 0;
}

.pricing-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.pricing-description {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tech-badges-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Features em lista horizontal */
.pricing-card .pricing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-features li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* CTA no final */
.pricing-card .pricing-cta {
    margin: 0;
}

.pricing-cta .btn {
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 968px) {
    .pricing-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===================================
   TEMPLATE 3 - SERVICOS PRICING CARDS
   =================================== */

.services-pricing {
    padding: 4rem 0;
    background: #F8F9FA;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #E5E7EB;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFC527;
}

.pricing-card.featured {
    border-color: #FFC527;
    border-width: 3px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-tag {
    display: inline-block;
    background: #E5E7EB;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-tag {
    background: linear-gradient(135deg, #FFC527, #FFD65C);
    color: white;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.tech-badges-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.tech-badge-small {
    background: rgba(255, 197, 39, 0.1);
    color: #FFC527;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-features li:before {
    content: "";
    background: #10B981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing-cta .btn {
    width: 100%;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TEMPLATE 3 - DASHBOARD ANALYTICS (UNIQUE)
   Tech First - Live Data Focus
   =================================== */

/* Dashboard Section */
.outdoor-dashboard {
    background: #F8F9FA;
    padding: 4rem 0;
}

/* Bento Grid - Asymmetric */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.5rem;
    margin: 3rem 0;
}

/* Card Spans */
.bento-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.bento-card:nth-child(2) {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.bento-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.bento-card:nth-child(4) {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
}

.bento-card:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.bento-card:nth-child(6) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

/* Bento Card Styles */
.bento-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Live Analytics Card (Large) */
.live-analytics {
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1E 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.analytics-header h3 {
    font-size: 1.5rem;
}

.live-badge {
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.analytics-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.analytics-metric {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.analytics-value {
    font-size: 2rem;
    font-weight: 700;
    color: #FFC527;
    margin-bottom: 0.25rem;
}

.analytics-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.analytics-change {
    font-size: 0.75rem;
    color: #10B981;
    margin-top: 0.5rem;
}

/* Coverage Map Card */
.coverage-map {
    background: linear-gradient(135deg, #FFC527 0%, #FF9100 100%);
    /* Brand Gradient */
    color: #3E2723;
    /* Brown text for contrast on yellow */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coverage-map svg {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.coverage-map h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.coverage-map p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* Tech Feature Cards */
.tech-feature {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 197, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-icon svg {
    width: 24px;
    height: 24px;
    color: #FFC527;
}

.tech-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1A1A2E;
}

.tech-feature p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.tech-badge {
    background: #E5E7EB;
    color: #666;
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 968px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: 300px;
    }
}

/* TEMPLATE 3 - DATA TABLE PORTFOLIO */
.portfolio-datatable {
    padding: 4rem 0;
    background: #F8F9FA;
}

.portfolio-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.portfolio-list-header {
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1E 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 3fr 2fr 1fr 1fr 1fr;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.portfolio-list-item {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 3fr 2fr 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    transition: background 0.2s ease;
}

.portfolio-list-item:hover {
    background: #F8F9FA;
}

.project-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.project-info p {
    color: #666;
    font-size: 0.875rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: rgba(255, 197, 39, 0.1);
    color: #FFC527;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.data-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC527;
}

.data-label {
    font-size: 0.75rem;
    color: #666;
}

.status-badge {
    background: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 968px) {

    .portfolio-list-header,
    .portfolio-list-item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .portfolio-list-header {
        display: none;
    }
}

/* ===================================
   VISUAL CALENDAR DESIGN (REFERENCE STYLE)
   =================================== */

.calendar-visual-wrapper {
    background-color: #3E2723;
    /* Dark brown background from image */
    background-image: radial-gradient(circle at top right, #F57C00 0%, transparent 40%);
    padding: 4rem 0;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.calendar-inner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styling */
.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.calendar-title-big {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #FFB300;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calendar-title-big span {
    color: #F57C00;
}

.calendar-subtitle {
    background: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    display: inline-block;
}

/* Grid Layout */
.calendar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Lists */
.calendar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* No gap for zebra striping */
}

/* Row Styling */
.calendar-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #000;
    /* Black text for all rows */
    position: relative;
}

/* Zebra Striping */
.calendar-row.row-light {
    background-color: #FFF8E1;
    /* Light cream/white */
}

.calendar-row.row-orange {
    background-color: #FFB74D;
    /* Orange/Gold */
}

/* Week Number */
.week-num {
    font-weight: 800;
    font-size: 1.1rem;
    min-width: 45px;
    color: #000;
}

.week-num::after {
    content: 'ª';
    font-size: 0.8em;
    vertical-align: super;
}

/* Date Range */
.date-range {
    flex-grow: 1;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Special Badge */
.special-badge {
    background-color: #000;
    /* Black badge */
    color: #FFB300;
    /* Gold text */
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 10px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
    .calendar-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .calendar-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        justify-content: center;
    }

    .calendar-title-big {
        font-size: 2.5rem;
        justify-content: center;
    }

    /* Fix visibility of "26" on mobile */
    .calendar-title-big span {
        color: #FFFFFF;
        text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
    }

    .calendar-visual-wrapper {
        padding: 1.5rem;
    }
}

/* ===================================
   LIGHTBOX GALLERY
   =================================== */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-primary);
}

/* Add zoom icon to portfolio images */
.portfolio-image {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    line-height: 0 !important;
    display: block !important;
}

.portfolio-image:not(:has(.portfolio-placeholder))::after {
    content: '\f00e';
    /* fa-search-plus */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 197, 39, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.portfolio-image:not(:has(.portfolio-placeholder)):hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.portfolio-image img {
    transition: transform 0.5s ease;
    display: block !important;
    vertical-align: top !important;
    width: 100%;
    height: auto;
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* NOVAS SEÇÕES ÚNICAS - TEMPLATE 3 */

/* Tech Stack */
.tech-stack-section {
    padding: 4rem 0;
    background: #F8F9FA;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stack-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E5E7EB;
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFC527, #FFD65C);
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

/* API Docs Preview */
.api-docs {
    background: #1A1A2E;
    color: white;
    padding: 4rem 0;
}

.api-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.api-endpoints {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
}

.endpoint {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #10B981;
}

.method {
    background: #10B981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 1rem;
}

/* Analytics Dashboard */
.analytics-dashboard {
    padding: 4rem 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.dashboard-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.dashboard-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFC527;
    margin: 1rem 0;
}

.dashboard-chart {
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.2), transparent);
    border-radius: 8px;
    margin-top: 1rem;
}

/* Heatmap */
.heatmap-section {
    background: #F8F9FA;
    padding: 4rem 0;
}

.heatmap-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.heatmap-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1A1A2E, #0F0F1E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.heatmap-legend {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
}

@media (max-width: 968px) {

    .stack-grid,
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .api-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   LIQUID GOLD ANIMATED BACKGROUND
   =================================== */

.hero-abstract {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 197, 39, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(255, 236, 179, 0.3) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 197, 39, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 255, 255, 0.8) 0px, transparent 50%);
    background-size: 140% 140%;
    animation: liquidGold 15s ease infinite alternate;
}

.hero-abstract::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.hero-abstract::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 197, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: floatOrb 20s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@keyframes liquidGold {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-50px, 50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero-abstract .hero-title,
.hero-abstract .hero-subtitle,
.hero-abstract .metric-label {
    color: #1A1A1A !important;
    text-shadow: none !important;
}

.hero-abstract .hero-description {
    color: #4A4A4A !important;
    text-shadow: none !important;
}

.hero-abstract .metric-value {
    text-shadow: none !important;
    color: #FF8F00 !important;
}

.hero-abstract .hero-badge {
    color: #92400E;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: none;
}


/* ===================================
   INTERNAL PAGE HERO - MAXIMUM SPECIFICITY
   Override ALL conflicting CSS
   =================================== */

section.hero-internal.hero-abstract,
.hero-internal.hero-abstract,
section.hero-internal {
    padding-top: 280px !important;
    padding-bottom: 80px !important;
    min-height: 50vh !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
    transform: none !important;
}

section.hero-internal.hero-abstract .container,
.hero-internal.hero-abstract .container,
section.hero-internal .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    position: relative !important;
    z-index: 2 !important;
}

section.hero-internal.hero-abstract .page-title,
.hero-internal.hero-abstract .page-title,
section.hero-internal .page-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    color: #1A1A1A !important;
    line-height: 1.1 !important;
    margin-top: 0 !important;
}

section.hero-internal.hero-abstract .page-subtitle,
.hero-internal.hero-abstract .page-subtitle,
section.hero-internal .page-subtitle {
    font-size: 1.25rem !important;
    color: #4A4A4A !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {

    section.hero-internal.hero-abstract,
    .hero-internal.hero-abstract,
    section.hero-internal {
        padding-top: 200px !important;
        min-height: 40vh !important;
    }

    section.hero-internal .page-title {
        font-size: 2rem !important;
    }

    section.hero-internal .page-subtitle {
        font-size: 1.1rem !important;
    }
}

/* CONTACT PAGE SPECIFIC FIX */
section.hero-internal.hero-abstract:has(+ .contact),
section.hero-internal.hero-abstract:has(~ .contact) {
    padding-top: 300px !important;
}

/* ===================================
   PARALLAX HERO EFFECT
   =================================== */

.hero-parallax {
    position: relative;
    /* Use the newly moved image */
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Simple CSS parallax fallback */
    color: white;
    /* Force white text for contrast */
    overflow: hidden;
}

/* Dark overlay for text readability */
.hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.hero-parallax .container {
    position: relative;
    z-index: 2;
}

/* Adjust text colors for dark background */
.hero-parallax .hero-title,
.hero-parallax .hero-subtitle,
.hero-parallax .metric-label {
    color: white !important;
}

.hero-parallax .hero-description {
    color: rgba(255, 255, 255, 0.8) !important;
}

.hero-parallax .metric-value {
    /* Make metrics pop against dark bg */
    text-shadow: 0 2px 10px rgba(255, 197, 39, 0.3);
}

/* Hero Badge specific for dark mode */
.hero-parallax .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFC527;
}

/* Advanced JS Parallax Class (applied via JS) */
.parallax-enabled {
    background-attachment: scroll;
    /* Disable fixed for JS version */
}

.parallax-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller than container for scroll space */
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

/* ===================================
   PREMIUM CONTACT PAGE STYLING
   OutMídia Outdoor
   =================================== */

/* Enhanced Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.03) 0%, rgba(255, 152, 0, 0.05) 100%);
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Side */
.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 1rem;
}

.contact-intro {
    color: rgba(62, 39, 35, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 179, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFB300 0%, #FF9800 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(255, 179, 0, 0.25);
    border-color: rgba(255, 179, 0, 0.25);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFB300 0%, #FF9800 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(255, 179, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(255, 179, 0, 0.4);
}

.contact-icon i {
    font-size: 1.75rem;
    color: #FFFFFF;
}

.contact-card-content {
    flex: 1;
    text-align: left;
}

.contact-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 0.875rem;
    letter-spacing: -0.3px;
}

.contact-card p {
    color: rgba(62, 39, 35, 0.8);
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-card a {
    color: #E65100;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.contact-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFB300 0%, #FF9800 100%);
    transition: width 0.3s ease;
}

.contact-card a:hover {
    color: #FFB300;
}

.contact-card a:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FFB300 0%, #FF9800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 179, 0, 0.4);
}

/* Premium Contact Form */
.contact-form {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 179, 0, 0.15);
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 0.5rem;
}

.contact-form>p {
    color: rgba(62, 39, 35, 0.7);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(62, 39, 35, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    color: #3E2723;
    transition: all 0.3s ease;
    background: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFB300;
    box-shadow: 0 0 0 4px rgba(255, 179, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(62, 39, 35, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.btn-full::after {
    content: '\f1d8';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 179, 0, 0.15);
    background: #FFFFFF;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border-radius: 24px;
}

/* Enhanced Responsive Design */

/* Tablet and below */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .contact-card {
        padding: 1.25rem;
        flex-direction: row;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-card h4 {
        font-size: 1.05rem;
    }

    .contact-card p {
        font-size: 0.9rem;
    }

    .social-links {
        text-align: center;
        margin-top: 2rem;
    }

    .social-icons {
        justify-content: center;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 16px;
        /* Prevents iOS zoom */
        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-full {
        padding: 1rem;
        font-size: 1rem;
    }

    .map-container {
        border-radius: 16px;
    }

    .map-container iframe {
        height: 350px;
        border-radius: 16px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 1.25rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }
}

/* ===================================
   BENTO GRID LAYOUT (Phase 2)
   =================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.bento-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Span Classes */
.span-2-cols {
    grid-column: span 2;
}

.span-2-rows {
    grid-row: span 2;
}

/* Specific Bento Card Adjustments */
.bento-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid #d1d5db;
    /* Stronger border for visibility */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for depth */
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 197, 39, 0.3);
    z-index: 2;
}

/* Featured Styling for Bento - NOW WHITE THEME */
.bento-card.featured {
    background: white;
    border: 2px solid var(--primary-gold);
    /* Gold border for distinction */
    position: relative;
}

.bento-card.featured .pricing-title,
.bento-card.featured .pricing-description {
    color: var(--dark);
    /* Reset to dark text */
}

.bento-card.featured .pricing-tag {
    background: var(--primary-gold);
    color: var(--dark);
}

.bento-card.featured ul li {
    color: var(--gray-700);
    /* Reset list text */
    border-bottom-color: var(--gray-100);
}

.bento-card.featured ul li i {
    color: var(--primary-gold);
}

/* Responsive Bento */
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* On tablet, maybe different flow? */
    .span-2-rows {
        grid-row: span 1;
        /* Reset height */
        grid-column: span 2;
        /* Make wide instead */
    }
}

@media (max-width: 767px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .span-2-cols,
    .span-2-rows {
        grid-column: span 1;
        grid-row: span 1;
    }
}