/*
Theme Name: HD Importações
Theme URI: https://hdimportacoes.com.br
Author: HD Importações
Description: Tema premium para HD Importações - Atendimento Premium ao Cliente
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: hd-importacoes
*/

/* ========================================
   CSS VARIABLES - DESIGN SYSTEM
   ======================================== */

:root {
    /* Primary Colors - Verde */
    --primary: 152 60% 32%;
    --primary-foreground: 0 0% 100%;
    
    /* Background */
    --background: 120 20% 99%;
    --foreground: 160 25% 12%;
    
    /* Card */
    --card: 120 15% 98%;
    --card-foreground: 160 25% 12%;
    
    /* Popover */
    --popover: 0 0% 100%;
    --popover-foreground: 160 25% 12%;
    
    /* Secondary */
    --secondary: 150 20% 94%;
    --secondary-foreground: 152 60% 28%;
    
    /* Muted */
    --muted: 150 15% 92%;
    --muted-foreground: 160 15% 40%;
    
    /* Accent */
    --accent: 152 45% 90%;
    --accent-foreground: 152 60% 25%;
    
    /* Destructive */
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    
    /* Border */
    --border: 150 20% 88%;
    --input: 150 20% 88%;
    --ring: 152 60% 32%;
    
    /* Radius */
    --radius: 0.75rem;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(152 60% 32%) 0%, hsl(160 55% 28%) 50%, hsl(145 50% 35%) 100%);
    --gradient-primary-soft: linear-gradient(135deg, hsl(152 60% 32% / 0.1) 0%, hsl(160 55% 28% / 0.05) 100%);
    --gradient-hero: linear-gradient(180deg, hsl(120 20% 99%) 0%, hsl(150 25% 96%) 50%, hsl(145 30% 94%) 100%);
    --gradient-section: linear-gradient(180deg, hsl(150 25% 96%) 0%, hsl(120 20% 99%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(150 20% 98%) 100%);
    --gradient-glass: linear-gradient(135deg, hsl(0 0% 100% / 0.9) 0%, hsl(0 0% 100% / 0.7) 100%);
    --gradient-border: linear-gradient(135deg, hsl(152 60% 32% / 0.3) 0%, hsl(152 60% 32% / 0.1) 50%, hsl(152 60% 32% / 0.3) 100%);
    
    /* Premium Shadows */
    --shadow-soft: 0 2px 8px -2px hsl(160 25% 12% / 0.08), 0 4px 16px -4px hsl(160 25% 12% / 0.12);
    --shadow-card: 0 4px 12px -2px hsl(160 25% 12% / 0.06), 0 8px 24px -4px hsl(160 25% 12% / 0.1);
    --shadow-elevated: 0 8px 24px -4px hsl(160 25% 12% / 0.1), 0 16px 48px -8px hsl(160 25% 12% / 0.15);
    --shadow-glow: 0 0 40px hsl(152 60% 32% / 0.15), 0 0 80px hsl(152 60% 32% / 0.1);
    --shadow-glow-strong: 0 0 60px hsl(152 60% 32% / 0.25), 0 0 120px hsl(152 60% 32% / 0.15);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: hsl(var(--foreground));
    background: hsl(var(--background));
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: hsl(var(--foreground));
}

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

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

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

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

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

.site-header.scrolled {
    background: hsl(var(--background) / 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--foreground));
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header CTA Button */
.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

.close-icon {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsl(var(--background) / 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.mobile-menu .nav-link {
    font-size: 1.125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    box-shadow: 0 4px 14px hsl(var(--primary) / 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsl(var(--primary) / 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: hsl(var(--secondary));
    color: hsl(var(--secondary-foreground));
    border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
    background: hsl(var(--accent));
    border-color: hsl(var(--primary) / 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Geometric Pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(hsl(var(--primary) / 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: hsl(var(--primary) / 0.15);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: hsl(var(--primary) / 0.1);
    bottom: -50px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: hsl(var(--primary) / 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
}

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gradient-glass);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--primary) / 0.1);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-element svg {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary));
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    top: 60%;
    right: 8%;
    animation: float 8s ease-in-out infinite 1s;
}

.floating-element-3 {
    bottom: 25%;
    left: 15%;
    animation: float 7s ease-in-out infinite 0.5s;
}

@media (max-width: 768px) {
    .floating-element {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(8px);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    animation: fadeUp 0.6s ease forwards;
}

.premium-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: hsl(var(--primary));
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-section);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: hsl(var(--primary) / 0.1);
    border: 1px solid hsl(var(--primary) / 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: hsl(var(--primary));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* Benefits Layout - 2 Column */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.benefits-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefits-header .section-title {
    text-align: left;
}

.benefits-header .section-subtitle {
    text-align: left;
}

/* Premium Divider */
.premium-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.premium-divider.left {
    margin-left: 0;
    margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Benefit Card - New Style */
.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 4px);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: hsl(var(--primary) / 0.2);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    color: hsl(var(--primary-foreground));
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.benefit-description {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Premium Card (kept for other sections) */
.premium-card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid hsl(var(--border));
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
    border-color: hsl(var(--primary) / 0.2);
}

.premium-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary-soft);
    border: 1px solid hsl(var(--primary) / 0.15);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 26px;
    height: 26px;
    color: hsl(var(--primary));
}

.premium-card:hover .card-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.05);
}

.premium-card:hover .card-icon svg {
    color: hsl(var(--primary-foreground));
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
}

.card-description {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    position: relative;
    padding: 6rem 0;
    background: hsl(var(--background));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: hsl(var(--primary-foreground));
    box-shadow: 0 8px 24px hsl(var(--primary) / 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px dashed hsl(var(--primary) / 0.3);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 0.9375rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Connector Line */
@media (min-width: 1024px) {
    .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 32px;
        right: -1rem;
        width: calc(100% - 64px);
        height: 2px;
        background: linear-gradient(90deg, hsl(var(--primary) / 0.3), hsl(var(--primary) / 0.1));
        transform: translateX(50%);
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-primary);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(hsl(0 0% 100% / 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: hsl(0 0% 100% / 0.05);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float 10s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: hsl(var(--primary-foreground));
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--primary-foreground) / 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: hsl(var(--primary-foreground) / 0.9);
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    color: hsl(var(--primary-foreground));
}

.btn-cta {
    background: hsl(var(--primary-foreground));
    color: hsl(var(--primary));
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 8px 24px hsl(0 0% 0% / 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px hsl(0 0% 0% / 0.25);
}

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

.site-footer {
    position: relative;
    background: hsl(var(--foreground));
    color: hsl(var(--primary-foreground));
    padding-top: 1px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: hsl(var(--primary-foreground) / 0.7);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: hsl(var(--primary-foreground));
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: hsl(var(--primary-foreground) / 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--primary));
}

.footer-contact p {
    font-size: 0.9375rem;
    color: hsl(var(--primary-foreground) / 0.7);
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--primary-foreground) / 0.7);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(var(--primary));
}

.footer-contact svg {
    width: 16px;
    height: 16px;
}

/* Footer Confidential Notice */
.footer-confidential {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    color: hsl(var(--primary-foreground) / 0.6);
    font-size: 0.875rem;
}

.footer-confidential svg {
    width: 16px;
    height: 16px;
    color: hsl(var(--primary) / 0.8);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--primary-foreground) / 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: hsl(var(--primary-foreground) / 0.5);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-button img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Pulse Animation */
.whatsapp-pulse {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 1;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: hsl(var(--foreground));
    color: hsl(var(--primary-foreground));
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: hsl(var(--foreground));
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ========================================
   GLASS EFFECT
   ======================================== */

.glass-effect {
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsl(var(--border) / 0.5);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 640px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 6rem 1rem 3rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
}

/* ========================================
   LEGAL NOTICE SECTION
   ======================================== */

.legal-notice-section {
    padding: 4rem 0;
    background: hsl(var(--muted) / 0.5);
    border-top: 1px solid hsl(var(--border) / 0.5);
}

.legal-notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius);
    border: 1px solid hsl(var(--border) / 0.3);
    box-shadow: var(--shadow-soft);
}

/* Amber variant for Legal Notice */
.legal-notice-amber {
    border-left: 4px solid hsl(45 93% 47% / 0.5);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .legal-notice-amber {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.legal-notice-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    color: hsl(var(--primary));
    flex-shrink: 0;
}

.legal-notice-icon-amber {
    background: hsl(45 93% 47% / 0.1);
    color: #f59e0b;
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) {
    .legal-notice-icon-amber {
        margin: 0;
    }
}

.legal-notice-icon svg {
    width: 24px;
    height: 24px;
}

.legal-notice-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.75rem;
}

.legal-notice-text {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.7;
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */

.wp-block-image img {
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}
