/* 
 * LUXURY STYLE - Design Premium e Sofisticado
 * Estilo elegante para público de alto padrão
 */

/* ========================================
   TIPOGRAFIA PREMIUM
   ======================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.02em;
}

/* ========================================
   HEADER PREMIUM
   ======================================== */

#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ========================================
   CARDS PREMIUM COM GLASSMORPHISM
   ======================================== */

.service-card,
.info-card,
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 252, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 164, 0.1);
    box-shadow: 
        0 4px 16px rgba(74, 144, 164, 0.08),
        0 8px 32px rgba(74, 144, 164, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.info-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: white;
    box-shadow: 
        0 12px 40px rgba(74, 144, 164, 0.15),
        0 20px 60px rgba(74, 144, 164, 0.1);
    border-color: rgba(74, 144, 164, 0.25);
}

/* ========================================
   BOTÕES PREMIUM
   ======================================== */

.btn-primary {
    background: linear-gradient(135deg, #4A90A4 0%, #2E6B7F 100%);
    box-shadow: 
        0 4px 16px rgba(74, 144, 164, 0.3),
        0 8px 32px rgba(74, 144, 164, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(74, 144, 164, 0.4),
        0 16px 48px rgba(74, 144, 164, 0.2);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #4A90A4;
    color: #4A90A4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: #4A90A4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 164, 0.3);
}

/* ========================================
   SEÇÕES COM FUNDO ELEGANTE
   ======================================== */

section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 164, 0.2), transparent);
}

/* ========================================
   DEPOIMENTOS PREMIUM
   ======================================== */

.swiper-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #4A90A4;
    opacity: 0.3;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    opacity: 1;
    background: linear-gradient(135deg, #4A90A4, #2E6B7F);
}

/* ========================================
   FORMULÁRIOS ELEGANTES
   ======================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(74, 144, 164, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    padding: 14px 20px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #4A90A4;
    box-shadow: 
        0 0 0 4px rgba(74, 144, 164, 0.1),
        0 4px 16px rgba(74, 144, 164, 0.15);
    transform: translateY(-1px);
}

/* ========================================
   WHATSAPP BUTTON PREMIUM
   ======================================== */

.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 
        0 8px 24px rgba(37, 211, 102, 0.4),
        0 16px 48px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 12px 32px rgba(37, 211, 102, 0.5),
        0 24px 64px rgba(37, 211, 102, 0.3);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.2);
    }
}

/* ========================================
   TIMELINE ELEGANTE
   ======================================== */

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 32px;
    bottom: -32px;
    width: 2px;
    background: linear-gradient(180deg, #4A90A4, rgba(74, 144, 164, 0.2));
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #4A90A4, #2E6B7F);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(74, 144, 164, 0.3);
    z-index: 1;
}

/* ========================================
   IMAGENS COM EFEITO PREMIUM
   ======================================== */

img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rounded-2xl img:hover,
.rounded-xl img:hover {
    transform: scale(1.05);
}

/* Overlay em imagens */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 144, 164, 0.1),
        rgba(232, 180, 184, 0.1)
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.image-overlay:hover::after {
    opacity: 1;
}

/* ========================================
   TEXTO COM EFEITOS PREMIUM
   ======================================== */

.text-gradient {
    background: linear-gradient(135deg, #4A90A4 0%, #E8B4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.drop-shadow-premium {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.05));
}

/* ========================================
   DIVISORES ELEGANTES
   ======================================== */

.divider-luxury {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(74, 144, 164, 0.3),
        transparent
    );
    margin: 48px 0;
}

/* ========================================
   BADGES E TAGS PREMIUM
   ======================================== */

.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), rgba(232, 180, 184, 0.1));
    border: 1px solid rgba(74, 144, 164, 0.2);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.badge-premium:hover {
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.15), rgba(232, 180, 184, 0.15));
    border-color: rgba(74, 144, 164, 0.3);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER PREMIUM
   ======================================== */

footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ========================================
   SCROLL SUAVE E ELEGANTE
   ======================================== */

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4A90A4, #2E6B7F);
    border-radius: 6px;
    border: 2px solid #f8f9fa;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2E6B7F, #4A90A4);
}

/* ========================================
   SELEÇÃO DE TEXTO PREMIUM
   ======================================== */

::selection {
    background: rgba(74, 144, 164, 0.2);
    color: #2C3E50;
}

::-moz-selection {
    background: rgba(74, 144, 164, 0.2);
    color: #2C3E50;
}

/* ========================================
   ANIMAÇÕES PREMIUM
   ======================================== */

@keyframes float-elegant {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-float {
    animation: float-elegant 6s ease-in-out infinite;
}

/* ========================================
   RESPONSIVIDADE PREMIUM
   ======================================== */

@media (max-width: 768px) {
    .service-card:hover,
    .info-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-1px);
    }
}

/* ========================================
   MODO ESCURO - DESABILITADO
   ======================================== */

/* Modo escuro removido para manter sempre cores claras e profissionais */

/* ========================================
   ACESSIBILIDADE
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states acessíveis */
*:focus-visible {
    outline: 3px solid #4A90A4;
    outline-offset: 3px;
    border-radius: 4px;
}

/* ========================================
   IMPRESSÃO
   ======================================== */

@media print {
    .whatsapp-float,
    .btn-primary,
    .btn-secondary,
    header {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}
