@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Quicksand:wght@500;600;700&display=swap');

:root {
    /* Cores Principais - Esquema Sóbrio e Profissional */
    --color-pri: #E91E63;
    --color-pri-light: #F06292;
    --color-pri-dark: #C2185B;
    --color-seg: #7B1FA2;
    --color-seg-light: #9C27B0;
    --color-seg-dark: #6A1B9A;
    --color-accent: #1976D2;
    --color-accent-light: #2196F3;
    --color-gold: #FFA726;
    --color-gold-light: #FFB74D;
    
    /* Cores Neutras */
    --color-light: #FFFFFF;
    --color-light-dark: #E0E0E0;
    --color-gray: #9E9E9E;
    --color-dark: #0A0A0A;
    --color-dark-light: #1A1A1A;
    --color-dark-medium: #2A2A2A;
    
    /* Fundo */
    --fundo: #0A0A0A;
    --fundo-gradient: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 25%, #0F0F0F 50%, #1A1A1A 75%, #0A0A0A 100%);
    --fundo-overlay: rgba(10, 10, 10, 0.85);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Quicksand', sans-serif;
    
    /* Sombras Elegantes */
    --shadow-sm: 0 2px 12px rgba(233, 30, 99, 0.1);
    --shadow-md: 0 4px 24px rgba(123, 31, 162, 0.15);
    --shadow-lg: 0 8px 48px rgba(233, 30, 99, 0.2);
    --shadow-xl: 0 16px 64px rgba(123, 31, 162, 0.25);
    --shadow-glow: 0 0 30px rgba(233, 30, 99, 0.3);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Bordas */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

* {
    box-sizing: border-box;
}

::selection {
    background: var(--color-pri);
    color: var(--color-dark);
}

body {
    min-height: auto;
    min-width: 350px;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--color-light);
    background: var(--fundo);
    background-image: var(--fundo-gradient);
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Partículas de Fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 31, 162, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(25, 118, 210, 0.04) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    pointer-events: none;
    z-index: 0;
}

/* Grid Pattern Sutil */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(233, 30, 99, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 31, 162, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

#site {
    position: relative;
    z-index: 1;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: var(--color-dark);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-pri) 0%, var(--color-seg) 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(233, 30, 99, 0.3);
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-pri-light) 0%, var(--color-seg-light) 100%);
    box-shadow: 0 0 12px rgba(233, 30, 99, 0.5);
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-pri) 0%, var(--color-seg) 100%);
    z-index: 10000;
    box-shadow: 0 0 10px var(--color-pri);
    transition: width 0.1s ease-out;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Header & Navigation */
header {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 10, 0.85) !important;
    border-bottom: 1px solid rgba(233, 30, 99, 0.15);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    box-shadow: var(--shadow-lg);
}

#navegacao {
    padding: 0 0 15px 0;
}

#navegacao .nav-link {
    color: var(--color-light) !important;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.85em;
    font-weight: 600;
    padding: 6px 16px;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#navegacao .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-pri) 0%, var(--color-seg) 100%);
    transition: var(--transition);
    border-radius: 2px;
}

#navegacao .nav-link:hover {
    color: var(--color-pri) !important;
    transform: translateY(-1px);
}

#navegacao .nav-link:hover::before {
    width: 80%;
}

/* Botões menores na navegação */
#navegacao .site-button.btn-sm {
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.3px;
    background: var(--color-pri);
    border: 2px solid var(--color-pri);
}

#navegacao .site-button.btn-sm:hover {
    transform: translateY(-1px);
    background: var(--color-pri-light);
    border-color: var(--color-pri-light);
}

/* Hero Section */
#home {
    margin-top: 70px;
    margin-bottom: 70px;
    min-height: 700px;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, rgba(123, 31, 162, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
    filter: blur(60px);
}

#home::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25, 118, 210, 0.06) 0%, rgba(123, 31, 162, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.3) rotate(180deg); 
        opacity: 0.9; 
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-pri) 50%, var(--color-seg) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    letter-spacing: -1px;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-pri) 0%, var(--color-seg) 100%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-light-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle strong {
    color: var(--color-pri);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-logo {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 15px 40px rgba(233, 30, 99, 0.2)) drop-shadow(0 0 20px rgba(123, 31, 162, 0.15));
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

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

.hero-logo:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: drop-shadow(0 20px 50px rgba(233, 30, 99, 0.3)) drop-shadow(0 0 30px rgba(123, 31, 162, 0.2));
}

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

/* Buttons */
.site-button {
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-seg) 100%);
    color: var(--color-light);
    border: 2px solid transparent;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.site-button::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;
}

.site-button:hover::before {
    left: 100%;
}

.site-button:hover,
.site-button:focus {
    background: linear-gradient(135deg, var(--color-pri-light) 0%, var(--color-seg-light) 100%);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.site-button:active {
    transform: translateY(0);
}

.btn-primary-cta {
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-pri-dark) 100%);
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid var(--color-pri);
    color: var(--color-pri);
    box-shadow: 0 0 10px rgba(233, 30, 99, 0.15);
}

.btn-secondary-cta:hover {
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-seg) 100%);
    color: var(--color-light);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-light-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-light-dark);
    max-width: 900px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(255, 0, 110, 0.02);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(131, 56, 236, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 0, 110, 0.1);
    text-align: center;
    transition: var(--transition-slow);
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-pri);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-seg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-light);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--color-light-dark);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05) 0%, rgba(131, 56, 236, 0.05) 100%);
    position: relative;
}

.stat-card {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.6) 0%, rgba(10, 10, 20, 0.8) 100%);
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 0, 110, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-pri);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-seg) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-light-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

#sobre {
    background: rgba(131, 56, 236, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 60px 20px;
    border: 1px solid rgba(255, 0, 110, 0.1);
}

/* Pricing Cards */
.pricing-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 60px 20px;
    overflow: visible;
}

.pricing-content .row {
    overflow: visible;
}

.single-pricing {
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    border: 2px solid rgba(233, 30, 99, 0.15);
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px) saturate(180%);
    overflow: visible;
    margin-top: 20px;
}

.single-pricing-featured {
    padding-top: 55px;
}

.single-pricing::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.single-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--color-pri), var(--color-seg));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.single-pricing:hover::before {
    opacity: 1;
}

.single-pricing:hover::after {
    opacity: 1;
}

.single-pricing:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-12px) scale(1.01);
    border-color: var(--color-pri);
}

.price-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-seg) 100%);
    color: var(--color-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-md);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    min-width: 120px;
    text-align: center;
}

.price-head h2 {
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: var(--color-pri);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.price {
    font-weight: 900;
    font-size: clamp(2.8rem, 6vw, 4rem);
    margin-bottom: 0;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-pri) 50%, var(--color-seg) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.price small {
    font-size: 0.4em;
    opacity: 0.8;
}

.single-pricing h4 {
    font-size: 0.9rem;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--color-light-dark);
    font-weight: 500;
    letter-spacing: 1px;
}

.single-pricing ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    margin-top: 30px;
    flex-grow: 1;
}

.single-pricing ul li {
    line-height: 2;
    padding: 8px 0;
    color: var(--color-light);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.single-pricing ul li i {
    color: var(--color-pri);
    margin-top: 5px;
    flex-shrink: 0;
}

.single-pricing ul li small {
    display: block;
    color: var(--color-light-dark);
    font-size: 0.85em;
    margin-top: 4px;
}

.btn-pricing {
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-seg) 100%);
    border: 2px solid transparent;
    color: var(--color-light);
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    overflow: hidden;
    padding: 14px 28px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    border-radius: var(--border-radius);
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.8px;
    position: relative;
}

.btn-pricing::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;
}

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

.btn-pricing:hover,
.btn-pricing:focus {
    background: linear-gradient(135deg, var(--color-pri-light) 0%, var(--color-seg-light) 100%);
    color: var(--color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.2);
}

.single-pricing-featured {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(123, 31, 162, 0.12) 100%);
    border: 2px solid var(--color-pri);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.single-pricing-featured::before {
    opacity: 0.5;
}

.single-pricing-featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.single-pricing-featured .price-head h2,
.single-pricing-featured .price,
.single-pricing-featured ul li {
    color: var(--color-light);
}

.single-pricing-featured .btn-pricing-featured {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    color: var(--color-pri);
    border: 2px solid var(--color-pri);
}

.single-pricing-featured .btn-pricing-featured:hover {
    background: linear-gradient(135deg, var(--color-pri) 0%, var(--color-pri-dark) 100%);
    color: var(--color-dark);
}

/* Footer */
footer {
    color: var(--color-light);
    padding: 80px 0 40px 0;
    margin-bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    overflow: hidden;
}

html {
    margin: 0;
    padding: 0;
    height: auto;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-pri), var(--color-seg), transparent);
}

footer a {
    color: var(--color-light);
    transition: var(--transition);
}

footer a:hover {
    color: var(--color-pri);
    text-decoration: none;
}

.site-borda {
    border-bottom: 2px solid rgba(248, 6, 204, 0.3);
    margin-bottom: 30px;
}

/* Utility Classes */
.bg-dark {
    background: rgba(0, 0, 0, 0.9) !important;
}

.site-color {
    color: var(--color-pri);
}

.site-color-2 {
    color: var(--color-seg);
}

/* WhatsApp Widget */
.wc_whatsapp_app {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.wc_whatsapp_app.left {
    left: 15px;
}

.wc_whatsapp_app.right {
    right: 15px;
}

.wc_whatsapp {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    background: #25d366;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.wc_whatsapp::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='icon' data-icon='whatsapp' class='svg-inline' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%23fff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'%3e%3c/path%3e%3c/svg%3e") center no-repeat;
    background-size: contain;
}

.wc_whatsapp:hover,
.wc_whatsapp:focus {
    box-shadow: var(--shadow-xl);
    transform: scale(1.1);
}

.wc_whatsapp p {
    font-family: var(--font-primary);
}

.wc_whatsapp_primary,
.wc_whatsapp_secondary {
    display: none;
}

.wc_whatsapp_secondary {
    max-width: 300px;
}

.wc_whatsapp_secondary p {
    margin-left: 15px;
    border: 1px solid #e2e2e2;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    position: relative;
    color: #000;
    font-size: 14px;
    background: #fff;
}

.wc_whatsapp_secondary p::before {
    content: '';
    position: absolute;
    background: white;
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    left: -5px;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    z-index: 1;
    transform: rotate(135deg);
}

.wc_whatsapp_primary {
    border-radius: var(--border-radius);
    border: 1px solid #eaeaea;
    background: #fff;
    padding: 15px;
    bottom: 80px;
    align-items: center;
    max-width: 350px;
    box-shadow: var(--shadow-xl);
    position: absolute;
    width: 350px;
}

.wc_whatsapp_primary img {
    width: 50px;
    border-radius: var(--border-radius);
    margin-left: 10px;
}

.wc_whatsapp_primary p {
    margin: 15px;
    border: 1px solid #e2e2e2;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    position: relative;
    color: #000;
    font-size: 14px;
}

.wc_whatsapp_primary p::before {
    content: '';
    position: absolute;
    background: white;
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    left: -5px;
    top: 50%;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    z-index: 1;
    transform: rotate(135deg);
}

.wc_whatsapp_primary .close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 18px;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wc_whatsapp_primary .close:hover,
.wc_whatsapp_primary .close:focus {
    color: #f00;
    opacity: 1;
    background: rgba(255, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .single-pricing-featured {
        transform: scale(1.02);
    }
}

@media (max-width: 991.98px) {
    #home {
        margin-top: 100px;
        min-height: 500px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    #home {
        margin-top: 70px;
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-logo {
        margin-top: 30px;
    }
    
    .single-pricing {
        margin-bottom: 30px;
    }
    
    .single-pricing-featured {
        transform: scale(1);
    }
    
    .pricing-content {
        padding: 40px 15px;
    }
    
    section {
        padding: 40px 0;
    }
        
    .wc_whatsapp_primary {
        width: 300px;
        max-width: calc(100vw - 30px);
    }
}

@media (max-width: 575.98px) {
    #home {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .site-button {
        width: 100%;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .single-pricing {
        padding: 30px 20px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

/* Print Styles */
@media print {
    .wc_whatsapp_app,
    #scroll-progress {
        display: none;
    }
}
