/* ==========================================================================
   Blue Facility Services - Main Styles (Harmonized with Booking System)
   ========================================================================== */

/* === VARIÁVEIS LIQUID GLASS === */
:root {
  /* Paleta principal harmonizada com booking.php */
  --glass-primary: rgba(120, 190, 255, 0.95);
  --glass-primary-light: rgba(150, 210, 255, 0.8);
  --glass-primary-dark: rgba(52, 73, 102, 1);
  
  --glass-surface: rgba(255, 255, 255, 0.35);
  --glass-surface-hover: rgba(255, 255, 255, 0.5);
  --glass-border: #11284B;
  
  --liquid-bg: linear-gradient(135deg, 
    rgba(120, 190, 255, 0.1) 0%, 
    rgba(200, 230, 255, 0.15) 25%,
    rgba(160, 210, 255, 0.1) 50%,
    rgba(180, 220, 255, 0.12) 75%,
    rgba(140, 200, 255, 0.08) 100%);
    
  --glass-shadow: 0 8px 32px rgba(120, 190, 255, 0.2);
  --glass-blur: blur(16px);
  --liquid-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  
  /* === SISTEMA DE BORDER RADIUS HARMONIOSO === */
  --radius-xs: 6px;    /* Pequenos elementos: badges, tags */
  --radius-sm: 10px;   /* Botões pequenos, inputs */
  --radius-md: 15px;   /* Cards pequenos, dropdowns */
  --radius-lg: 20px;   /* Cards principais, modais */
  --radius-xl: 25px;   /* Seções grandes, containers */
  --radius-2xl: 30px;  /* Hero sections, full containers */
  --radius-full: 50%;  /* Elementos circulares */
  
  /* Alias para compatibilidade */
  --glass-radius: var(--radius-lg);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', 'Red Hat Text', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
    background: linear-gradient(45deg, 
        #e3f2fd 0%, 
        #f1f8ff 25%, 
        #e8f4fd 50%, 
        #f5faff 75%, 
        #eef7ff 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Liquid Background Animation - harmonizado com booking.php */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--liquid-bg);
    z-index: -2;
    pointer-events: none;
}

/* Bubbles Animation */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(120, 190, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(150, 210, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(160, 210, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 60%, rgba(180, 220, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    25% { transform: translateY(-20px) scale(1.05); opacity: 0.9; }
    50% { transform: translateY(-30px) scale(0.95); opacity: 1; }
    75% { transform: translateY(-15px) scale(1.02); opacity: 0.8; }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Typography - harmonizada com booking.php */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Red Hat Display', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #11284B;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(120, 190, 255, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Buttons - estilo glass harmonizado */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-align: center;
    transition: var(--liquid-transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', inherit;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.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: var(--liquid-transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(240, 215, 26, 0.9), rgba(240, 215, 26, 1));
    color: #11284B;
    border-color: #F0D71A;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #11284B, rgba(12, 36, 65, 0.9));
    color: #F0D71A;
    border-color: #11284B;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(120, 190, 255, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(12, 36, 65, 0.9), #11284B);
    color: #F0D71A;
    border-color: #11284B;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(240, 215, 26, 0.9), #F0D71A);
    color: #11284B;
    border-color: #F0D71A;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #11284B;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-mobile {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: var(--radius-md);
}

/* Botões BOOK NOW - Desktop e Mobile */
.btn-book-mobile {
    display: none !important;
}

.btn-book-desktop {
    display: inline-block;
}

/* Garantir que botão mobile não apareça em desktop */
@media (min-width: 769px) {
    .btn-book-mobile {
        display: none !important;
    }
    
    .btn-book-desktop {
        display: inline-block !important;
    }
    
    /* Garantir especificidade para header */
    .header-desktop .header-actions .btn-book-mobile {
        display: none !important;
    }
    
    .header-desktop .header-actions .btn-book-desktop {
        display: inline-block !important;
    }
}

.mobile-menu-toggle {
    display: none;
}

/* Header - estilo glass harmonizado */
.header {
    position: relative;
    z-index: 1000;
}

.header-desktop {
    background: linear-gradient(135deg, 
        rgba(12, 36, 65, 0.95) 0%, 
        rgba(26, 77, 122, 0.9) 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--liquid-transition);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.logo-img {
    height: 50px;
    width: auto;
}

.main-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Garantir cor branca para todos os links do menu */
.main-nav .nav-menu a,
.nav-menu .menu-item a,
.header-desktop .menu-item a {
    color: #ffffff !important;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F0D71A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-item:hover > a {
    color: #F0D71A !important;
    background: rgba(240, 215, 26, 0.15);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.menu-item:hover > a::after {
    width: 80%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: var(--glass-blur);
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--liquid-transition);
    padding: 15px 0;
    border: 1px solid rgba(12, 36, 65, 0.1);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(12, 36, 65, 0.08);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 15px 25px;
    color: #11284B !important;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    background: transparent !important;
}

/* Debug: Forçar contraste máximo */
.dropdown-menu a,
.dropdown-menu a:link,
.dropdown-menu a:visited {
    color: #000000 !important;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #F0D71A;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(240, 215, 26, 0.2), rgba(240, 215, 26, 0.1)) !important;
    color: #000000 !important;
    font-weight: 600;
    padding-left: 30px;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(240, 215, 26, 0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone:hover {
    color: #F0D71A;
    background: rgba(240, 215, 26, 0.1);
    border-color: #F0D71A;
    transform: translateY(-2px);
}

.header-phone i {
    color: #F0D71A;
}

.phone-number h2 {
    color: #F0D71A;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile Header - estilo glass */
.header-mobile {
    display: none;
}

.mobile-header-top {
    background: linear-gradient(135deg, 
        rgba(12, 36, 65, 0.95) 0%, 
        rgba(26, 77, 122, 0.9) 100%);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--liquid-transition);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo img {
    height: 40px;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: #F0D71A;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* Ocultar botão hamburger no desktop por padrão */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #F0D71A;
    transition: all 0.3s ease;
}

.mobile-bottom-menu {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    background: #fff;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: bottom 0.3s ease;
    padding: 15px 0;
}

.mobile-bottom-menu.visible {
    bottom: 0;
}

.mobile-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Hero Slider - estilo glass com liquid background */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    z-index: 1;
    /* Prevenir flash de conteúdo durante carregamento */
    opacity: 0;
    animation: fadeInSlider 0.6s ease-in-out 0.2s forwards;
}

@keyframes fadeInSlider {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-swiper {
    height: 100%;
    width: 100%;
    max-width: 100vw;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* Prevenir sobreposição durante inicialização do Swiper */
.hero-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) {
    display: none;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    will-change: transform; /* Otimizar performance das animações */
}

.hero-slide .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    text-align: center;
    padding: 40px;
    background: var(--glass-panel);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--glass-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
    transition: var(--liquid-transition);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: var(--font-inter);
    text-shadow: var(--text-shadow-glass);
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-family: var(--font-inter);
    text-shadow: var(--text-shadow-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    animation: bounce 2s infinite;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--liquid-transition);
}

.scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    animation-play-state: paused;
}

.scroll-down-btn span {
    display: none; /* Ocultar texto - usar apenas ícone */
}

.scroll-down-btn i {
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.scroll-down-btn:hover i {
    transform: translateY(3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Swiper Navigation - com especificidade máxima */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev,
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev,
.hero-next,
.hero-prev {
    color: #F0D71A !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: var(--radius-full) !important;
    width: 50px !important;
    height: 50px !important;
    backdrop-filter: var(--glass-blur) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: var(--liquid-transition) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    z-index: 999 !important;
}

.hero-slider .swiper-button-next,
.hero-swiper .swiper-button-next,
.hero-next {
    right: 10px !important;
    left: auto !important;
}

.hero-slider .swiper-button-prev,
.hero-swiper .swiper-button-prev,
.hero-prev {
    left: 10px !important;
    right: auto !important;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover,
.hero-next:hover,
.hero-prev:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after,
.hero-next:after,
.hero-prev:after {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* Garantir posicionamento específico para os botões do Swiper */
.hero-swiper .swiper-button-next,
.swiper.hero-swiper .swiper-button-next {
    right: 10px !important;
    left: auto !important;
    position: absolute !important;
}

.hero-swiper .swiper-button-prev,
.swiper.hero-swiper .swiper-button-prev {
    left: 10px !important;
    right: auto !important;
    position: absolute !important;
}

/* Reset completo dos estilos padrão do Swiper */
.hero-slider .swiper-button-next.swiper-button-next,
.hero-slider .swiper-button-prev.swiper-button-prev {
    margin: 0 !important;
    padding: 0 !important;
    inset: auto !important;
}

.hero-slider .swiper-button-next.swiper-button-next {
    top: 50% !important;
    right: 10px !important;
    left: auto !important;
    transform: translateY(-50%) !important;
}

.hero-slider .swiper-button-prev.swiper-button-prev {
    top: 50% !important;
    left: 10px !important;
    right: auto !important;
    transform: translateY(-50%) !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5) !important;
    opacity: 1 !important;
    border-radius: var(--radius-full) !important;
    width: 12px !important;
    height: 12px !important;
    transition: var(--liquid-transition) !important;
}

.hero-pagination .swiper-pagination-bullet:hover {
    transform: scale(1.2) !important;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #F0D71A !important;
    transform: scale(1.3) !important;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    text-align: center;
}

/* Features Grid - estilo glass */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(240, 215, 26, 0.9) 0%, 
        rgba(240, 215, 26, 0.95) 100%);
    backdrop-filter: var(--glass-blur);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(240, 215, 26, 0.3);
    box-shadow: 0 8px 32px rgba(240, 215, 26, 0.3);
    text-align: left;
    transition: var(--liquid-transition);
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 200px;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, 
        rgba(240, 215, 26, 1) 0%, 
        rgba(240, 215, 26, 0.98) 100%);
    box-shadow: 0 15px 35px rgba(240, 215, 26, 0.4);
    border-color: rgba(240, 215, 26, 0.5);
}

.feature-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 1) 100%);
    backdrop-filter: var(--glass-blur);
    border-top-right-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
    border-left: 1px solid rgba(240, 215, 26, 0.3);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    flex: 1;
    padding-right: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #11284B;
    font-family: var(--font-inter);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Botões dentro dos feature cards amarelos */
.feature-card .btn-secondary {
    background: linear-gradient(135deg, #11284B, rgba(12, 36, 65, 0.9));
    color: #F0D71A;
    border: 2px solid #11284B;
    box-shadow: 0 4px 15px rgba(12, 36, 65, 0.2);
}

.feature-card .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(12, 36, 65, 0.8), rgba(12, 36, 65, 0.9));
    color: #F0D71A;
    border-color: #11284B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 36, 65, 0.3);
}

.decorative-line {
    margin-top: 3rem;
    text-align: center;
}

.decorative-line img {
    max-width: 800px;
    opacity: 0.8;
}

/* Services Section - estilo glass */
.services-section {
    padding: 80px 0;
    background: var(--liquid-gradient);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.3) 0%, transparent 50%);
    animation: var(--bubble-animation);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--liquid-transition);
}

.service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(120, 190, 255, 0.3);
}

.service-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-inter);
    font-weight: 700;
    text-shadow: var(--text-shadow-glass);
}

.service-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-family: var(--font-inter);
    text-shadow: var(--text-shadow-light);
}

.service-description {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Commercial Services */
.commercial-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.commercial-intro {
    margin-bottom: 3rem;
}

.commercial-text {
    max-width: 600px;
}

.commercial-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.commercial-type {
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.commercial-type:hover {
    transform: scale(1.05);
}

.type-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 36, 65, 0.6);
}

.type-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.type-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Short Rental Services */
.short-rental-section {
    margin-top: 4rem;
}

.rental-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rental-service {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.rental-service:hover {
    transform: translateY(-10px);
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 36, 65, 0.8);
}

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon i {
    font-size: 2.5rem;
    color: #F0D71A;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #11284B;
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--liquid-transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #F0D71A;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.author-info h4 {
    color: #F0D71A;
    margin-bottom: 0.5rem;
}

.author-info span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #F0D71A;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #11284B;
    transition: var(--liquid-transition);
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--glass-shadow);
}

.contact-text h4 {
    color: #11284B;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #344966;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6c617;
    transition: var(--liquid-transition);
}

.social-link:hover {
    background: #11284B;
    color: #e6c617;
    transform: translateY(-3px);
}

/* Contact Form - estilo glass */
.contact-form {
    background: var(--glass-panel);
    backdrop-filter: var(--glass-blur);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--liquid-transition);
    font-family: var(--font-inter);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(240, 215, 26, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer - estilo glass */
.footer {
    background: #e6c617;
    color: #344966;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(52, 73, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
    filter: none;
}

.footer-description {
    color: #344966;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--font-inter);
    text-shadow: none;
}

.footer-title {
    color: #344966;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #344966;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #11284B;
    opacity: 1;
}

.footer-contact p {
    color: #344966;
    opacity: 0.85;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(52, 73, 102, 0.2);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #344966;
    opacity: 0.85;
}

.copyright {
    opacity: 0.85;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #344966;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #11284B;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1600;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

.mobile-menu-list {
    flex: 1;
    padding: 20px 0;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(12, 36, 65, 0.1);
}

.mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    color: #11284B;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.mobile-menu-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #11284B;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #F0D71A;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.mobile-menu-link:hover {
    background: linear-gradient(135deg, rgba(240, 215, 26, 0.1), rgba(240, 215, 26, 0.05));
    color: #11284B;
    font-weight: 700;
    padding-left: 30px;
}

.mobile-menu-link:hover::before {
    transform: scaleY(1);
}

.mobile-submenu {
    background: linear-gradient(135deg, rgba(240, 215, 26, 0.05), rgba(240, 215, 26, 0.02));
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open {
    display: block;
    max-height: 1000px;
}

.mobile-submenu li {
    border-bottom: 1px solid rgba(12, 36, 65, 0.08);
}

.mobile-submenu a {
    padding: 15px 50px;
    display: block;
    color: #11284B;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-submenu a:hover {
    color: #11284B;
    background: linear-gradient(135deg, rgba(240, 215, 26, 0.15), rgba(240, 215, 26, 0.08));
    font-weight: 600;
    padding-left: 55px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(17, 40, 75, 0.1);
    border-radius: var(--radius-md);
    color: #11284B;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    background: rgba(17, 40, 75, 0.2);
    transform: translateY(-2px);
}

.mobile-phone i {
    color: #F0D71A;
    font-size: 18px;
}

.mobile-book-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
}

/* === HARMONIZAÇÃO GLOBAL DE BORDER RADIUS === */

/* Garantir que todos os cards tenham cantos harmonizados */
.card, .panel, .widget {
    border-radius: var(--radius-lg);
}

/* Elementos de interface pequenos */
.badge, .tag, .chip {
    border-radius: var(--radius-xs);
}

/* Modais e overlays */
.modal, .overlay, .popup {
    border-radius: var(--radius-xl);
}

/* Containers e seções principais */
.section, .container-fluid {
    border-radius: var(--radius-2xl);
}

/* Elementos interativos hover enhancers */
.feature-card,
.commercial-type,
.rental-service,
.testimonial-card {
    overflow: hidden;
    transition: var(--liquid-transition);
}

.feature-card:hover,
.commercial-type:hover,
.rental-service:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Imagens responsivas com cantos arredondados */
img:not(.logo-img):not(.mobile-logo img):not(.footer-logo img) {
}

/* Elementos de navegação e controles */
.nav-item, .menu-item {
    border-radius: var(--radius-sm);
}

/* Garantir consistência em elementos glass */
.glass-element {
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Elementos de input e formulário */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    border-radius: var(--radius-md) !important;
}

/* Botões de ação secundários */
.btn-outline,
.btn-secondary {
    border-radius: var(--radius-lg);
}

/* Elementos circulares garantidos */
.avatar,
.profile-pic,
.icon-circle,
.btn-circle {
    border-radius: var(--radius-full);
    aspect-ratio: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Image optimization for full container coverage */
.showcase-image img,
.team-image,
.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.showcase-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.visual-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* Scroll behavior */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
