/*
Theme Name: WineXperts
Theme URI: https://winexperts.wine
Author: WineXperts
Author URI: https://winexperts.wine
Description: Tema premium para WordPress compatível com Elementor e WooCommerce. Desenvolvido para o site WineXperts - Especialistas em Vinhos Portugueses. Design elegante, moderno e responsivo com foco em autoridade no mundo dos vinhos e loja online.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: winexperts
Tags: e-commerce, wine, woocommerce, elementor, custom-header, custom-menu, featured-images, full-width-template, theme-options, translation-ready
WooCommerce: 8.0
*/

/* ============================================
   WineXperts Theme - Base Styles
   ============================================ */

/* === CSS Variables / Custom Properties === */
:root {
    /* Primary Colors */
    --wx-bordeaux: #7A0019;
    --wx-bordeaux-dark: #5A0012;
    --wx-bordeaux-light: #9A1A3A;
    --wx-gold: #C8A45A;
    --wx-gold-light: #D4B76E;
    --wx-gold-dark: #A88A3E;
    --wx-cream: #F5F1E8;
    --wx-cream-dark: #E8E2D4;
    --wx-graphite: #2B2B2B;
    --wx-graphite-light: #3D3D3D;
    --wx-white: #FFFFFF;

    /* Functional Colors */
    --wx-text-primary: #2B2B2B;
    --wx-text-secondary: #5A5A5A;
    --wx-text-light: #FFFFFF;
    --wx-border: #E0DCD3;
    --wx-shadow: rgba(122, 0, 25, 0.1);
    --wx-overlay: rgba(43, 43, 43, 0.7);

    /* Typography */
    --wx-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --wx-font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --wx-font-button: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Font Sizes */
    --wx-fs-hero: clamp(2.5rem, 5vw, 4.5rem);
    --wx-fs-h1: clamp(2rem, 4vw, 3.5rem);
    --wx-fs-h2: clamp(1.75rem, 3vw, 2.75rem);
    --wx-fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
    --wx-fs-h4: clamp(1.1rem, 2vw, 1.35rem);
    --wx-fs-body: 1rem;
    --wx-fs-small: 0.875rem;
    --wx-fs-xs: 0.75rem;

    /* Spacing */
    --wx-section-padding: clamp(3rem, 6vw, 6rem);
    --wx-container-max: 1200px;
    --wx-container-wide: 1400px;
    --wx-gap: 2rem;

    /* Border Radius */
    --wx-radius-sm: 4px;
    --wx-radius-md: 8px;
    --wx-radius-lg: 12px;
    --wx-radius-xl: 20px;

    /* Transitions */
    --wx-transition: all 0.3s ease;
    --wx-transition-slow: all 0.5s ease;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--wx-font-body);
    font-size: var(--wx-fs-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--wx-text-primary);
    background-color: var(--wx-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--wx-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--wx-text-primary);
    margin-bottom: 0.5em;
}

h1 { font-size: var(--wx-fs-h1); }
h2 { font-size: var(--wx-fs-h2); }
h3 { font-size: var(--wx-fs-h3); }
h4 { font-size: var(--wx-fs-h4); }

p {
    margin-bottom: 1.2em;
    color: var(--wx-text-secondary);
}

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

a:hover {
    color: var(--wx-gold);
}

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

/* === Container === */
.wx-container {
    width: 100%;
    max-width: var(--wx-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wx-container-wide {
    max-width: var(--wx-container-wide);
}

/* === Section === */
.wx-section {
    padding: var(--wx-section-padding) 0;
}

.wx-section--cream {
    background-color: var(--wx-cream);
}

.wx-section--bordeaux {
    background-color: var(--wx-bordeaux);
    color: var(--wx-text-light);
}

.wx-section--bordeaux h2,
.wx-section--bordeaux h3,
.wx-section--bordeaux h4 {
    color: var(--wx-text-light);
}

.wx-section--bordeaux p {
    color: rgba(255, 255, 255, 0.85);
}

.wx-section--graphite {
    background-color: var(--wx-graphite);
    color: var(--wx-text-light);
}

.wx-section--graphite h2,
.wx-section--graphite h3 {
    color: var(--wx-text-light);
}

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

.wx-section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.wx-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--wx-gold);
}

.wx-section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
}

/* === Buttons === */
.wx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--wx-font-button);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--wx-radius-sm);
    cursor: pointer;
    transition: var(--wx-transition);
    text-decoration: none;
    line-height: 1;
}

.wx-btn--primary {
    background-color: var(--wx-bordeaux);
    color: var(--wx-white);
    border-color: var(--wx-bordeaux);
}

.wx-btn--primary:hover {
    background-color: var(--wx-bordeaux-dark);
    border-color: var(--wx-bordeaux-dark);
    color: var(--wx-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--wx-shadow);
}

.wx-btn--secondary {
    background-color: transparent;
    color: var(--wx-white);
    border-color: var(--wx-gold);
}

.wx-btn--secondary:hover {
    background-color: var(--wx-gold);
    color: var(--wx-graphite);
    transform: translateY(-2px);
}

.wx-btn--gold {
    background-color: var(--wx-gold);
    color: var(--wx-graphite);
    border-color: var(--wx-gold);
}

.wx-btn--gold:hover {
    background-color: var(--wx-gold-dark);
    border-color: var(--wx-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 164, 90, 0.3);
}

.wx-btn--outline {
    background-color: transparent;
    color: var(--wx-bordeaux);
    border-color: var(--wx-bordeaux);
}

.wx-btn--outline:hover {
    background-color: var(--wx-bordeaux);
    color: var(--wx-white);
    transform: translateY(-2px);
}

.wx-btn--whatsapp {
    background-color: #25D366;
    color: var(--wx-white);
    border-color: #25D366;
}

.wx-btn--whatsapp:hover {
    background-color: #1DA851;
    border-color: #1DA851;
    color: var(--wx-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wx-btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

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

/* === Grid System === */
.wx-grid {
    display: grid;
    gap: var(--wx-gap);
}

.wx-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wx-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wx-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .wx-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .wx-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .wx-grid--2,
    .wx-grid--3,
    .wx-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* === Cards === */
.wx-card {
    background: var(--wx-white);
    border-radius: var(--wx-radius-md);
    overflow: hidden;
    transition: var(--wx-transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.wx-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wx-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.wx-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--wx-transition-slow);
}

.wx-card:hover .wx-card__image img {
    transform: scale(1.05);
}

.wx-card__content {
    padding: 1.5rem;
}

.wx-card__title {
    font-family: var(--wx-font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.wx-card__price {
    font-family: var(--wx-font-body);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--wx-bordeaux);
}

.wx-card__price .wx-card__price-old {
    text-decoration: line-through;
    color: var(--wx-text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

/* === Feature Box === */
.wx-feature {
    text-align: center;
    padding: 2rem 1.5rem;
}

.wx-feature__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--wx-cream);
    color: var(--wx-bordeaux);
    font-size: 1.75rem;
}

.wx-feature__title {
    font-family: var(--wx-font-heading);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.wx-feature__text {
    font-size: var(--wx-fs-small);
    color: var(--wx-text-secondary);
}

/* ============================================
   HEADER
   ============================================ */
.wx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--wx-transition);
}

.wx-header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.wx-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--wx-container-wide);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
}

.wx-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

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

.wx-header__logo-text {
    font-family: var(--wx-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wx-bordeaux);
    letter-spacing: 1px;
}

.wx-header__logo-text span {
    color: var(--wx-gold);
}

/* Navigation */
.wx-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.wx-nav__list {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
}

.wx-nav__item {
    position: relative;
}

.wx-nav__link {
    display: block;
    padding: 0.5rem 1rem;
    font-family: var(--wx-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wx-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--wx-transition);
    text-decoration: none;
}

.wx-nav__link:hover,
.wx-nav__link--active {
    color: var(--wx-bordeaux);
}

.wx-nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--wx-gold);
    transform: scaleX(0);
    transition: var(--wx-transition);
}

.wx-nav__link:hover::after,
.wx-nav__link--active::after {
    transform: scaleX(1);
}

.wx-header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wx-header__cart {
    position: relative;
    color: var(--wx-text-primary);
    font-size: 1.25rem;
    text-decoration: none;
}

.wx-header__cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--wx-bordeaux);
    color: var(--wx-white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.wx-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.wx-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--wx-text-primary);
    transition: var(--wx-transition);
}

.wx-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.wx-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.wx-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .wx-menu-toggle {
        display: flex;
    }

    .wx-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--wx-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--wx-transition);
        overflow-y: auto;
    }

    .wx-nav.active {
        transform: translateX(0);
    }

    .wx-nav__list {
        flex-direction: column;
        width: 100%;
    }

    .wx-nav__link {
        padding: 1rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--wx-border);
    }

    .wx-nav__link::after {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.wx-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--wx-graphite);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 80px;
}

.wx-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(122, 0, 25, 0.85) 0%,
        rgba(43, 43, 43, 0.75) 100%
    );
    z-index: 1;
}

.wx-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.wx-hero__title {
    font-family: var(--wx-font-heading);
    font-size: var(--wx-fs-hero);
    font-weight: 700;
    color: var(--wx-white);
    margin-bottom: 0.25em;
    letter-spacing: 2px;
}

.wx-hero__title span {
    color: var(--wx-gold);
}

.wx-hero__subtitle {
    font-family: var(--wx-font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--wx-gold);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
}

.wx-hero__text {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.wx-hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Decorative wine glass divider */
.wx-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.5rem 0 1.5rem;
}

.wx-divider::before,
.wx-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--wx-gold);
}

.wx-divider__icon {
    color: var(--wx-gold);
    font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.wx-footer {
    background: var(--wx-graphite);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.wx-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--wx-container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wx-footer__brand {
    max-width: 300px;
}

.wx-footer__logo {
    font-family: var(--wx-font-heading);
    font-size: 1.75rem;
    color: var(--wx-white);
    margin-bottom: 1rem;
    display: block;
    text-decoration: none;
}

.wx-footer__logo span {
    color: var(--wx-gold);
}

.wx-footer__desc {
    font-size: var(--wx-fs-small);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.wx-footer__social {
    display: flex;
    gap: 0.75rem;
}

.wx-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--wx-transition);
    text-decoration: none;
}

.wx-footer__social a:hover {
    background: var(--wx-bordeaux);
    border-color: var(--wx-bordeaux);
    color: var(--wx-white);
}

.wx-footer__heading {
    font-family: var(--wx-font-heading);
    font-size: 1.125rem;
    color: var(--wx-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.wx-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--wx-gold);
}

.wx-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wx-footer__links li {
    margin-bottom: 0.75rem;
}

.wx-footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--wx-fs-small);
    transition: var(--wx-transition);
    text-decoration: none;
}

.wx-footer__links a:hover {
    color: var(--wx-gold);
    padding-left: 5px;
}

.wx-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
    font-size: var(--wx-fs-xs);
}

.wx-footer__bottom a {
    color: var(--wx-gold);
}

@media (max-width: 992px) {
    .wx-footer__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .wx-footer__inner {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce .products .product {
    border-radius: var(--wx-radius-md);
    overflow: hidden;
    transition: var(--wx-transition);
}

.woocommerce .products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--wx-font-heading);
    font-size: 1rem;
    color: var(--wx-text-primary);
    padding: 0.75rem 1rem 0;
}

.woocommerce ul.products li.product .price {
    color: var(--wx-bordeaux);
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0 1rem;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: var(--wx-bordeaux) !important;
    color: var(--wx-white) !important;
    font-family: var(--wx-font-button);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--wx-radius-sm);
    padding: 0.75rem 1.5rem;
    transition: var(--wx-transition);
    border: none;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background-color: var(--wx-bordeaux-dark) !important;
    transform: translateY(-2px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: var(--wx-gold) !important;
    color: var(--wx-graphite) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: var(--wx-gold-dark) !important;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
    border-top-color: var(--wx-bordeaux);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
    color: var(--wx-bordeaux);
}

.woocommerce .star-rating span::before {
    color: var(--wx-gold);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--wx-bordeaux);
}

/* Single Product */
.woocommerce div.product div.images {
    border-radius: var(--wx-radius-md);
    overflow: hidden;
}

.woocommerce div.product .product_title {
    font-family: var(--wx-font-heading);
    font-size: var(--wx-fs-h2);
    color: var(--wx-text-primary);
}

.woocommerce div.product p.price {
    color: var(--wx-bordeaux);
    font-size: 1.75rem;
    font-weight: 700;
}

/* Cart */
.woocommerce .cart-collaterals .cart_totals {
    border-radius: var(--wx-radius-md);
    overflow: hidden;
}

/* Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    border: 1px solid var(--wx-border);
    border-radius: var(--wx-radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--wx-transition);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--wx-bordeaux);
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 0, 25, 0.1);
}

/* ============================================
   ELEMENTOR COMPATIBILITY
   ============================================ */
.elementor-page .wx-header {
    position: fixed;
}

body.elementor-default,
body.elementor-template-full-width {
    margin: 0;
}

.elementor-section.elementor-section-full_width {
    max-width: 100%;
}

/* ============================================
   PAGE TEMPLATES
   ============================================ */

/* Links Page (Linktree style) */
.wx-links {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wx-bordeaux) 0%, var(--wx-graphite) 100%);
    padding: 2rem;
}

.wx-links__container {
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.wx-links__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--wx-gold);
    margin: 0 auto 1rem;
    overflow: hidden;
}

.wx-links__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wx-links__name {
    font-family: var(--wx-font-heading);
    font-size: 1.5rem;
    color: var(--wx-white);
    margin-bottom: 0.25rem;
}

.wx-links__tagline {
    color: var(--wx-gold);
    font-size: var(--wx-fs-small);
    margin-bottom: 2rem;
}

.wx-links__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wx-links__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--wx-radius-lg);
    color: var(--wx-white);
    font-family: var(--wx-font-button);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--wx-transition);
}

.wx-links__link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--wx-white);
}

.wx-links__link--whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.wx-links__link--instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.wx-form {
    max-width: 600px;
    margin: 0 auto;
}

.wx-form__group {
    margin-bottom: 1.25rem;
}

.wx-form__label {
    display: block;
    font-weight: 500;
    font-size: var(--wx-fs-small);
    margin-bottom: 0.5rem;
    color: var(--wx-text-primary);
}

.wx-form__input,
.wx-form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--wx-border);
    border-radius: var(--wx-radius-sm);
    font-family: var(--wx-font-body);
    font-size: var(--wx-fs-body);
    color: var(--wx-text-primary);
    background: var(--wx-white);
    transition: var(--wx-transition);
}

.wx-form__input:focus,
.wx-form__textarea:focus {
    border-color: var(--wx-bordeaux);
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 0, 25, 0.1);
}

.wx-form__textarea {
    min-height: 150px;
    resize: vertical;
}

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

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

.wx-animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.wx-animate--delay-1 { animation-delay: 0.1s; }
.wx-animate--delay-2 { animation-delay: 0.2s; }
.wx-animate--delay-3 { animation-delay: 0.3s; }
.wx-animate--delay-4 { animation-delay: 0.4s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.wx-text-center { text-align: center; }
.wx-text-left { text-align: left; }
.wx-text-right { text-align: right; }
.wx-text-bordeaux { color: var(--wx-bordeaux); }
.wx-text-gold { color: var(--wx-gold); }
.wx-text-white { color: var(--wx-white); }
.wx-bg-cream { background-color: var(--wx-cream); }
.wx-bg-bordeaux { background-color: var(--wx-bordeaux); }
.wx-bg-graphite { background-color: var(--wx-graphite); }
.wx-mt-1 { margin-top: 1rem; }
.wx-mt-2 { margin-top: 2rem; }
.wx-mt-3 { margin-top: 3rem; }
.wx-mb-1 { margin-bottom: 1rem; }
.wx-mb-2 { margin-bottom: 2rem; }
.wx-mb-3 { margin-bottom: 3rem; }
.wx-py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.wx-py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.wx-py-3 { padding-top: 3rem; padding-bottom: 3rem; }
