/*
 Theme Name: Audiomania Eventos Child
 Theme URI: https://audiomaniaeventos.com
 Author: Nous Research
 Author URI: https://nousresearch.com
 Description: Child theme de hello-elementor para Audiomania Eventos — modo oscuro premium + glassmorphism + animaciones modernas.
 Template: hello-elementor
 Version: 6.0.3
 Text Domain: audiomania-events-child
 Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, translation-ready, dark-mode, glassmorphism
*/

/* ======================================================
   1. DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ====================================================== */
:root {
    /* Brand */
    --am-primary: #123A92;
    --am-primary-light: #1a4fba;
    --am-primary-dark: #0a2560;
    --am-secondary: #F7F2E8;
    --am-accent-warm: #DDD1BD;
    --am-accent-hot: #A75D42;

    /* Dark palette */
    --am-bg-deepest: #020205;
    --am-bg-deep: #050510;
    --am-bg: #0a0a1a;
    --am-surface: #10102a;
    --am-surface-raised: #161640;
    --am-surface-hover: #1e1e50;
    --am-surface-glass: rgba(16, 16, 42, 0.6);
    --am-border: rgba(100, 120, 255, 0.1);
    --am-border-hover: rgba(100, 120, 255, 0.25);

    /* Text */
    --am-text-heading: #f0f0ff;
    --am-text: #c0c0e0;
    --am-text-muted: #7070a0;
    --am-text-dim: #505070;

    /* Neon glow system */
    --am-glow-blue: rgba(77, 124, 255, 0.4);
    --am-glow-purple: rgba(167, 85, 247, 0.4);
    --am-glow-pink: rgba(236, 72, 153, 0.4);
    --am-glow-cyan: rgba(34, 211, 238, 0.4);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #123A92, #4d7cff);
    --grad-hero: linear-gradient(135deg, #4d7cff, #a855f7);
    --grad-warm: linear-gradient(135deg, #a75d42, #ec4899);
    --grad-accent: linear-gradient(135deg, #4d7cff, #a855f7, #ec4899);

    /* Typography */
    --font-heading: 'Noto Serif', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 80px;
    --space-3xl: 120px;

    /* Borders & shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(77, 124, 255, 0.3);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s ease;
    --transition: 0.35s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);
}

/* ======================================================
   2. FONTS IMPORT
   ====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Serif:wght@400;500;700;900&display=swap');

/* ======================================================
   3. BASE RESETS
   ====================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--am-text);
    background-color: var(--am-bg-deepest);
    margin: 0;
    padding: 0;
}

/* Selection */
::selection {
    background: rgba(77, 124, 255, 0.3);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--am-bg-deepest);
}
::-webkit-scrollbar-thumb {
    background: var(--am-surface-raised);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--am-primary);
}

/* ======================================================
   4. TYPOGRAPHY
   ====================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--am-text-heading);
    line-height: 1.2;
    margin-top: 0;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h6 { font-size: 1rem; }

p {
    margin: 0 0 16px;
    line-height: 1.8;
}

strong {
    font-weight: 700;
    color: var(--am-text-heading);
}

a {
    color: #4d7cff;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #a855f7;
}

/* ======================================================
   5. LAYOUT CONTAINERS
   ====================================================== */
.container,
.site-main,
.am-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header,
.site-main,
.site-footer,
.am-whatsapp-float,
.am-hero {
    position: relative;
    z-index: 1;
}

/* ======================================================
/* ======================================================
   7. HEADER — IMPROVED WITH CTA BUTTONS
   ====================================================== */
.site-header {
    background: rgba(7, 7, 14, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(77, 124, 255, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.am-header.scrolled {
    background: rgba(7, 7, 14, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.am-header.scrolled .header-inner {
    padding: 8px 24px;
}

/* ===== Brand Logo ===== */
.site-branding {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.site-branding:hover {
    opacity: 0.85;
}

.brand-top {
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: none;
}

.brand-dot {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #4d7cff;
    margin: 0 2px;
    text-shadow: 0 0 8px rgba(77, 124, 255, 0.6);
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: none;
}

.brand-logo-img {
    width: 50px;
    height: auto;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ===== Navigation Menu ===== */
.header-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.header-nav .nav-menu li a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 7px 12px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.header-nav .nav-menu li a:hover,
.header-nav .nav-menu li.current-menu-item a {
    color: #4d7cff !important;
    background: rgba(77, 124, 255, 0.1);
    text-shadow: 0 0 12px rgba(77, 124, 255, 0.4);
}

.header-nav .nav-menu li.current-menu-item a {
    background: rgba(77, 124, 255, 0.08);
}

/* ===== CTA Buttons ===== */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.2;
}

/* Primary CTA — Reservar (pink glow) */
.cta-btn-primary {
    background: #ec4899;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 2px 12px rgba(236, 72, 153, 0.3);
}

.cta-btn-primary:hover {
    background: #f472b6;
    box-shadow: 0 4px 24px rgba(236, 72, 153, 0.5), 0 0 40px rgba(236, 72, 153, 0.15);
    transform: translateY(-2px) scale(1.05);
}

/* Outline CTA — Contactar (blue border, transparent bg) */
.cta-btn-outline {
    background: transparent;
    color: #4d7cff !important;
    border: 2px solid #4d7cff;
    box-shadow: none;
}

.cta-btn-outline:hover {
    background: linear-gradient(135deg, #4d7cff, #a855f7);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(77, 124, 255, 0.4), 0 0 40px rgba(77, 124, 255, 0.1);
    transform: translateY(-2px) scale(1.05);
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(77, 124, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: #4d7cff;
    box-shadow: 0 0 12px rgba(77, 124, 255, 0.2);
}

.hamburger-icon .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    margin: 3.5px auto;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.active .hamburger-icon .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-icon .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    .header-inner {
        padding: 10px 16px;
        gap: 16px;

    .brand-text {
        font-size: 1.1rem;
    }

    .brand-sub {
        font-size: 0.75rem;
    }
    }

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

    .header-cta-group {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(7, 7, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 16px 20px;
        border-bottom: 1px solid rgba(77, 124, 255, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
        gap: 10px;
    }

    .header-cta-group.cta-open {
        transform: translateY(0);
        opacity: 1;
    }

    .header-cta-group .cta-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .header-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(7, 7, 14, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 12px 20px;
        border-bottom: 1px solid rgba(77, 124, 255, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }

    .header-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
    }

    .header-nav .nav-menu {
        flex-direction: column;
        gap: 2px;
        align-items: stretch;
    }

    .header-nav .nav-menu li a {
        display: block;
        padding: 12px 14px;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .header-nav .nav-menu li a:hover {
        background: rgba(77, 124, 255, 0.12);
    }


    .brand-sub {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {

    .brand-sub {
        font-size: 0.65rem;
        letter-spacing: 0.15em;

    .brand-text {
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }

    .brand-sub {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }
    }

    .header-inner {
        padding: 8px 12px;
    }
}

/* ======================================================
   8. HERO — 3 SECCIONES HOME
   ====================================================== */
   8. HERO — 3 SECCIONES HOME
   ====================================================== */

/* === HERO SECTIONS (3 full-viewport sections) === */
.am-hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 0;
}

/* Separator gradients between sections */
.am-hero-section:nth-of-type(2) {
    margin-top: 0;
}

.am-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--am-bg-deepest));
    z-index: 2;
    pointer-events: none;
}

.am-hero-section:last-child::after {
    display: none;
}

/* Background image */
.am-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transition: transform 0.05s linear;
}

.am-hero-section-1 .am-hero-bg {
    background-image: url('/wp-content/uploads/2026/08/Eventos-Tenerife.webp');
}

.am-hero-section-2 .am-hero-bg {
    background-image: url('/wp-content/uploads/2026/08/Eventos-Canarias.webp');
}

.am-hero-section-3 .am-hero-bg {
    background-image: url('/wp-content/uploads/2026/08/Dj-tenerife.webp');
}

/* Overlay */
.am-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2,2,5,0.65) 0%,
        rgba(2,2,5,0.4) 40%,
        rgba(2,2,5,0.55) 70%,
        rgba(2,2,5,0.9) 100%
    );
    z-index: 1;
}

/* Hero content with staggered animations */
.am-hero-content {
    position: relative;
    z-index: 5;
    max-width: 920px;
    margin: 0 auto;
    padding: 140px 24px 100px;
    text-align: center;
}

/* Hero badge with glassmorphism */
.am-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin: 0 auto 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.am-hero-section:nth-child(1) .am-hero-badge {
    animation: fadeSlideDown 0.8s var(--ease-out) 0.1s both;
}
.am-hero-section:nth-child(2) .am-hero-badge {
    animation: fadeSlideDown 0.8s var(--ease-out) 0.15s both;
}
.am-hero-section:nth-child(3) .am-hero-badge {
    animation: fadeSlideDown 0.8s var(--ease-out) 0.2s both;
}

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

/* Title */
.am-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
}

.am-hero-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.am-hero-content h1 span,
.am-hero-content h2 span {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.am-hero-content .hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.8);
    margin: 0 0 44px;
    line-height: 1.75;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA buttons */
.am-hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.am-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.am-hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.am-hero-cta:hover::before {
    opacity: 1;
}

.am-hero-cta-primary {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(77, 124, 255, 0.35);
}

.am-hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(77, 124, 255, 0.55), 0 0 60px rgba(77, 124, 255, 0.15);
}

.am-hero-cta-secondary {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
}

.am-hero-cta-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

.am-hero-cta-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
}

.am-hero-cta-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37,211,102,0.6);
}

/* Feature items (pill badges below CTAs) */
.am-hero-features {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.am-feature-item {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: default;
}

.am-feature-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll indicator (functional, smooth scroll) */
.am-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

.am-scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero reveal animation (JS-driven) */
.am-hero-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.am-hero-reveal.am-hero-visible {
    opacity: 1;
    transform: translateY(0);
}

.am-hero-reveal.am-hero-visible .am-hero-badge {
    animation: fadeSlideDown 0.8s var(--ease-out) both;
}

.am-hero-reveal.am-hero-visible .am-hero-content h1,
.am-hero-reveal.am-hero-visible .am-hero-content h2 {
    animation: fadeSlideUp 1s var(--ease-out) 0.2s both;
}

.am-hero-reveal.am-hero-visible .am-hero-content .hero-subtitle {
    animation: fadeSlideUp 1s var(--ease-out) 0.4s both;
}

.am-hero-reveal.am-hero-visible .am-hero-cta-group {
    animation: fadeSlideUp 1s var(--ease-out) 0.6s both;
}

.am-hero-reveal.am-hero-visible .am-hero-features {
    animation: fadeSlideUp 1s var(--ease-out) 0.7s both;
}

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

/* Ken Burns subtle zoom on active hero bg */
.am-hero-section-1 .am-hero-bg,
.am-hero-section-2 .am-hero-bg,
.am-hero-section-3 .am-hero-bg {
    animation: kenBurns 15s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

/* === HERO SINGLE PAGE (static) === */
.am-hero-single {
    min-height: 65vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.am-hero-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2,2,5,0.75) 0%,
        rgba(2,2,5,0.5) 50%,
        rgba(2,2,5,0.9) 100%
    );
    z-index: 1;
}

.am-hero-single .am-hero-content {
    z-index: 3;
    position: relative;
    padding: 100px 24px 80px;
}

/* ======================================================
   10. BUTTONS
   ====================================================== */
button,
.button,
.wp-element-button,
a.button,
input[type="button"],
input[type="submit"] {
    font-family: var(--font-body);
    font-weight: 600;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 32px;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

button:hover,
.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(77, 124, 255, 0.4);
}

/* Outline button */
.button-outline,
button.button-secondary,
a.button-secondary,
.am-hero-cta-secondary {
    background: transparent;
    color: #4d7cff;
    border: 2px solid #4d7cff;
}

.button-outline:hover,
button.button-secondary:hover,
a.button-secondary:hover {
    background: #4d7cff;
    color: var(--am-bg-deepest);
    box-shadow: 0 6px 30px rgba(77, 124, 255, 0.3);
}

/* Accent button */
.button-accent {
    background: var(--grad-warm);
}

.button-accent:hover {
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.4);
}

/* ======================================================
   11. CARDS — GLASSMORPHISM
   ====================================================== */
.am-card {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.am-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(77,124,255,0.2), transparent, rgba(167,85,247,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition);
}

.am-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(77, 124, 255, 0.15);
    border-color: var(--am-border-hover);
}

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

/* Service card */
.am-service-card {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.am-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 50px rgba(77, 124, 255, 0.2);
    border-color: #4d7cff;
}

.am-service-card .card-image-wrapper {
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
}

.am-service-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.am-service-card:hover .card-image {
    transform: scale(1.08);
}

.am-service-card .card-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--am-surface) 0%, transparent 60%);
}

.am-service-card .card-body {
    padding: 24px;
}

.am-service-card .card-body h3 {
    color: var(--am-text-heading);
    font-size: 1.15rem;
    margin: 0 0 10px;
}

.am-service-card .card-body p {
    color: var(--am-text-muted);
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* ======================================================
   12. SERVICES GRID
   ====================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 20px 0;
}

/* ======================================================
   13. SECTIONS
   ====================================================== */
section {
    padding: var(--space-3xl) var(--space-md);
    position: relative;
}

section.alternate-bg {
    background-color: var(--am-bg-deep);
}

section.dark-bg {
    background-color: var(--am-bg-deepest);
}

/* Section header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--am-text-muted);
    font-size: 1.1rem;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--grad-hero);
    border-radius: var(--radius-full);
    margin: 0 auto 20px;
}

/* ======================================================
   14. STATS
   ====================================================== */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    padding: var(--space-xl) 20px;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3.5rem;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--am-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ======================================================
   15. TESTIMONIALS
   ====================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--am-surface);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--am-border);
    border-left: 4px solid #a855f7;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-style: italic;
    margin: 0 0 20px;
    color: var(--am-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-card .author {
    font-weight: 700;
    color: #4d7cff;
    font-style: normal;
}

/* ======================================================
   16. GALLERY
   ====================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ======================================================
   17. CTA SECTION
   ====================================================== */
.cta-section {
    background: var(--grad-hero);
    color: #fff;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 60px rgba(77, 124, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-section h2 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    position: relative;
    z-index: 1;
}

.cta-section .button {
    position: relative;
    z-index: 1;
}

/* ======================================================
   18. WOOCOMMERCE
   ====================================================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
}

.woocommerce ul.products li.product {
    background: var(--am-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--am-border);
    padding: 0;
    transition: all var(--transition);
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(77, 124, 255, 0.15);
    border-color: var(--am-border-hover);
}

.woocommerce ul.products li.product .button {
    width: 100%;
    text-align: center;
    margin: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.woocommerce #review_form #respond {
    border-radius: var(--radius-md);
}

.woocommerce-cart table.cart,
.woocommerce-checkout table.shipping {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--am-surface);
    border: 1px solid var(--am-border);
}

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
    border-color: var(--am-border);
    color: var(--am-text);
}

.woocommerce form .form-row input,
.woocommerce form .form-row textarea {
    background-color: var(--am-surface-raised);
    border: 1px solid var(--am-border);
    color: var(--am-text);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #4d7cff;
    box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.15);
    outline: none;
}

/* ======================================================
   19. WHATSAPP FLOAT
   ====================================================== */
.am-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all var(--transition);
    text-decoration: none;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.am-whatsapp-float:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.am-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ======================================================
   20. FOOTER
   ====================================================== */
.site-footer {
    background-color: var(--am-bg-deepest);
    color: var(--am-text-muted);
    padding: var(--space-3xl) var(--space-lg) var(--space-xl);
    border-top: 1px solid var(--am-border);
}

.site-footer h3,
.site-footer h4 {
    color: var(--am-text-heading);
    margin-bottom: 16px;
}

.site-footer a {
    color: var(--am-accent-warm);
}

.site-footer a:hover {
    color: #4d7cff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--am-text);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.footer-links li a:hover {
    opacity: 1;
    color: #4d7cff;
}

/* Footer Branding Logo */
.footer-branding {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-brand-main {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-transform: none;
}

.footer-brand-dot {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #00e5ff;
    margin: 0 2px;
}

.footer-brand-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: none;
}

.footer-brand-tagline {
    font-size: 0.88rem;
    color: var(--am-text-muted);
    line-height: 1.6;
    margin-top: 12px;
    max-width: 280px;
}

.footer-bottom {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--am-border);
    font-size: 0.85rem;
    color: var(--am-text-dim);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================================================
   21. SCROLL REVEAL ANIMATIONS
   ====================================================== */
.am-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.am-reveal.am-reveal-left {
    transform: translateX(-50px);
}

.am-reveal.am-reveal-right {
    transform: translateX(50px);
}

.am-reveal.am-reveal-scale {
    transform: scale(0.9);
}

.am-reveal.am-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children */
.am-reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.am-reveal-stagger.am-visible > *:nth-child(1) { transition-delay: 0ms; }
.am-reveal-stagger.am-visible > *:nth-child(2) { transition-delay: 80ms; }
.am-reveal-stagger.am-visible > *:nth-child(3) { transition-delay: 160ms; }
.am-reveal-stagger.am-visible > *:nth-child(4) { transition-delay: 240ms; }
.am-reveal-stagger.am-visible > *:nth-child(5) { transition-delay: 320ms; }
.am-reveal-stagger.am-visible > *:nth-child(6) { transition-delay: 400ms; }
.am-reveal-stagger.am-visible > *:nth-child(7) { transition-delay: 480ms; }
.am-reveal-stagger.am-visible > *:nth-child(8) { transition-delay: 560ms; }

.am-reveal-stagger.am-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 100px;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-accent);
    z-index: 101;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(77, 124, 255, 0.5);
}

/* Back to top */
.am-back-to-top {
    position: fixed;
    bottom: 28px;
    right: 100px;
    width: 44px;
    height: 44px;
    background: var(--am-surface-raised);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-full);
    color: var(--am-text-heading);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    text-decoration: none;
}

.am-back-to-top.am-visible {
    opacity: 0.7;
    transform: translateY(0);
}

.am-back-to-top:hover {
    opacity: 1;
    background: #4d7cff;
    color: var(--am-bg-deepest);
    border-color: #4d7cff;
}

/* ======================================================
   22. RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
    .container,
    .site-main,
    .am-hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: clamp(2rem, 8vw, 3rem); }
    h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }

    section {
        padding: var(--space-2xl) var(--space-md);
    }

    .am-hero-carousel { min-height: 90vh; }
    .am-hero-content {
        padding: 100px 20px 70px;
    }
    .am-hero-content .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .am-hero-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .am-hero-single { min-height: 55vh; }
    .am-hero-single .am-hero-content {
        padding: 70px 20px 50px;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .am-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    body { font-size: 15px; }

    .am-hero-carousel { min-height: 80vh; }
    .am-hero-content {
        padding: 70px 16px 50px;
    }
    .am-hero-content h1 {
        font-size: clamp(1.6rem, 9vw, 2.4rem);
    }
    .am-hero-content .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .am-hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .am-hero-single { min-height: 50vh; }

    .section-header {
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .am-service-card .card-body {
        padding: 20px;
    }
}

/* ======================================================
   23. GALLERY
   ====================================================== */

/* Intro SEO text */
.am-gallery-seo-intro,
.am-gallery-seo-bottom {
    padding: var(--space-2xl) var(--space-md);
    background: var(--am-bg-deep);
}

.am-gallery-seo-intro h2,
.am-gallery-seo-bottom h2,
.am-gallery-seo-bottom h3 {
    text-align: center;
    margin: 0 0 20px;
}

.am-gallery-seo-intro p,
.am-gallery-seo-bottom p {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 16px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--am-text);
}

.am-gallery-seo-intro p:last-child,
.am-gallery-seo-bottom p:last-of-type {
    margin-bottom: 0;
}

/* Gallery filters */
.am-gallery-section {
    padding: var(--space-2xl) var(--space-md);
    background: var(--am-bg-deepest);
}

.am-gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.am-filter-btn {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--am-border);
    background: var(--am-surface);
    color: var(--am-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.am-filter-btn:hover {
    border-color: #4d7cff;
    color: #4d7cff;
    background: rgba(77, 124, 255, 0.08);
}

.am-filter-btn.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(77, 124, 255, 0.3);
}

/* Gallery grid */
.am-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.am-gallery-item {
    display: block;
    transition: all var(--transition);
}

.am-gallery-item:hover {
    transform: translateY(-4px);
}

.am-gallery-item-inner {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.am-gallery-item:hover .am-gallery-item-inner {
    border-color: var(--am-border-hover);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(77, 124, 255, 0.12);
}

/* Gallery image */
.am-gallery-img-wrap {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--am-surface-raised);
}

.am-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.am-gallery-item:hover .am-gallery-img {
    transform: scale(1.08);
}

.am-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,2,5,0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.am-gallery-item:hover .am-gallery-overlay {
    opacity: 1;
}

.am-gallery-zoom-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.am-gallery-cat-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    align-self: flex-start;
}

/* Gallery info */
.am-gallery-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.am-gallery-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--am-text-heading);
    margin: 0;
    line-height: 1.4;
}

.am-gallery-info p {
    font-size: 0.88rem;
    color: var(--am-text-muted);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

/* Feature cards */
.am-gallery-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.am-feature-card {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
}

.am-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--am-border-hover);
    box-shadow: var(--shadow-md);
}

.am-feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 14px;
}

.am-feature-card h4 {
    font-size: 1.05rem;
    color: var(--am-text-heading);
    margin: 0 0 10px;
}

.am-feature-card p {
    font-size: 0.88rem;
    color: var(--am-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Gallery bottom CTA */
.am-gallery-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--am-border);
    margin-top: 40px;
}

.am-gallery-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.am-gallery-cta p {
    font-size: 1.05rem;
    color: var(--am-text);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery responsive */
@media (max-width: 900px) {
    .am-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .am-gallery-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .am-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .am-gallery-features {
        grid-template-columns: 1fr;
    }
    .am-gallery-filters {
        gap: 6px;
    }
    .am-filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* ======================================================
   24. SERVICES PAGE — HERO + GRID + PRICING
   ====================================================== */

/* Services section wrapper */
.am-services-section {
    padding: 60px 0 80px;
}

.am-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* SEO Intro */
.am-services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.am-services-intro h2 {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--am-text-heading);
    margin: 0 0 16px;
    line-height: 1.2;
}

.am-services-intro-text {
    font-size: 1.05rem;
    color: var(--am-text-muted);
    line-height: 1.8;
    margin: 0;
}

.am-pricing-notice {
    margin: 28px auto 0;
    padding: 22px 24px;
    text-align: left;
    background: linear-gradient(135deg, rgba(77, 124, 255, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(77, 124, 255, 0.25);
    border-left: 3px solid #4d7cff;
    border-radius: var(--radius-lg);
}

.am-pricing-notice h3 {
    margin: 0 0 8px;
    color: var(--am-text-heading);
    font-family: 'Noto Serif', serif;
    font-size: 1.2rem;
}

.am-pricing-notice p {
    margin: 0 0 8px;
    color: var(--am-text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.am-pricing-notice p:last-child {
    margin-bottom: 0;
    color: var(--am-text);
}

/* Services Grid */
.am-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

/* Service Card */
.am-service-card {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.am-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(77, 124, 255, 0.15), 0 0 0 1px rgba(77, 124, 255, 0.2);
    border-color: rgba(77, 124, 255, 0.3);
}

/* Highlighted card (Boda) */
.am-service-card-highlight {
    border: 2px solid rgba(77, 124, 255, 0.4);
    box-shadow: 0 8px 32px rgba(77, 124, 255, 0.12);
}

.am-service-card-highlight:hover {
    border-color: #4d7cff;
    box-shadow: 0 16px 48px rgba(77, 124, 255, 0.2), 0 0 0 2px #4d7cff;
}

.am-service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #4d7cff, #a855f7);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 2;
}

.am-service-card-inner {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Icon Wrap */
.am-service-icon-wrap {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.am-service-card h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--am-text-heading);
    margin: 0 0 16px;
    line-height: 1.3;
}

/* Price Display */
.am-service-price {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--am-border);
}

.am-price-from {
    display: block;
    font-size: 0.8rem;
    color: var(--am-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 2px;
}

.am-price-value {
    font-family: 'Noto Serif', serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Features List */
.am-service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.am-service-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--am-text);
    line-height: 1.5;
    padding-left: 22px;
    position: relative;
}

.am-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4d7cff;
    font-weight: 700;
    font-size: 0.85rem;
}

/* CTA Button */
.am-service-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: rgba(77, 124, 255, 0.08);
    border: 2px solid rgba(77, 124, 255, 0.25);
    border-radius: var(--radius-md);
    color: #4d7cff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.am-service-cta:hover {
    background: #4d7cff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(77, 124, 255, 0.35);
}

.am-service-cta-highlight {
    background: linear-gradient(135deg, #4d7cff, #a855f7);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(77, 124, 255, 0.3);
}

.am-service-cta-highlight:hover {
    box-shadow: 0 8px 32px rgba(77, 124, 255, 0.5);
    transform: translateY(-3px);
}

/* Services Extra (Complementary) */
.am-services-extra {
    margin-bottom: 70px;
}

.am-services-extra h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--am-text-heading);
    text-align: center;
    margin: 0 0 32px;
}

.am-services-extra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.am-extra-card {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.am-extra-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 124, 255, 0.3);
    box-shadow: 0 8px 24px rgba(77, 124, 255, 0.1);
}

.am-extra-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.am-extra-card h4 {
    font-family: 'Noto Serif', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--am-text-heading);
    margin: 0 0 10px;
    line-height: 1.3;
}

.am-extra-card p {
    font-size: 0.88rem;
    color: var(--am-text-muted);
    margin: 0 0 14px;
    line-height: 1.6;
}

.am-extra-price {
    display: inline-block;
    font-family: 'Noto Serif', serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.am-pricing-disclaimer {
    max-width: 960px;
    margin: -36px auto 56px;
    color: var(--am-text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
}

/* Final CTA Section */
.am-services-cta-section {
    text-align: center;
    padding: 50px 32px;
    background: linear-gradient(135deg, rgba(77, 124, 255, 0.06), rgba(168, 85, 247, 0.06));
    border: 1px solid rgba(77, 124, 255, 0.15);
    border-radius: var(--radius-xl);
}

.am-services-cta-section h2 {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--am-text-heading);
    margin: 0 0 12px;
}

.am-services-cta-section > p {
    font-size: 1.05rem;
    color: var(--am-text-muted);
    margin: 0 0 28px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.am-services-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services responsive */
@media (max-width: 1024px) {
    .am-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .am-services-extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .am-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .am-services-extra-grid {
        grid-template-columns: 1fr;
    }
    .am-service-card-inner {
        padding: 28px 22px 24px;
    }
    .am-price-value {
        font-size: 1.8rem;
    }
    .am-services-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .am-services-cta-section {
        padding: 40px 20px;
    }
    .am-pricing-notice {
        padding: 18px;
    }
    .am-pricing-disclaimer {
        margin: -34px auto 44px;
        text-align: left;
    }
}

/* ======================================================
   26. CONTACT PAGE — FORM + INFO CARDS
   ====================================================== */

/* Contact Section */
.am-contact-section {
    padding: 60px 0 80px;
}

/* Contact Layout: Form + Info Side by Side */
.am-contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
}

/* LEFT: Form Wrapper */
.am-contact-form-wrapper {
    background: var(--am-surface);
    border: 1px solid var(--am-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.am-contact-form-wrapper h2 {
    font-family: 'Noto Serif', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--am-text-heading);
    margin: 0 0 8px;
}

.am-contact-form-desc {
    font-size: 0.95rem;
    color: var(--am-text-muted);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Form Layout */
.am-contact-form .am-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

/* Form Groups */
.am-contact-form .am-form-group {
    margin-bottom: 20px;
}

.am-contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--am-text-heading);
    margin-bottom: 6px;
}

.am-contact-form .am-required {
    color: #ef4444;
}

/* Form Inputs */
.am-contact-form input,
.am-contact-form select,
.am-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--am-border);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--am-text);
    background: var(--am-bg-deep);
    transition: all 0.3s ease;
    outline: none;
}

.am-contact-form input:focus,
.am-contact-form select:focus,
.am-contact-form textarea:focus {
    border-color: #4d7cff;
    box-shadow: 0 0 0 3px rgba(77, 124, 255, 0.12);
    background: var(--am-surface);
}

.am-contact-form input::placeholder,
.am-contact-form textarea::placeholder {
    color: #6b7280;
    font-size: 0.9rem;
}

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

.am-contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Submit Button */
.am-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #123A92, #4d7cff);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(77, 124, 255, 0.3);
    width: 100%;
    justify-content: center;
}

.am-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(77, 124, 255, 0.45);
}

.am-submit-btn svg {
    flex-shrink: 0;
}

/* RIGHT: Contact Info Wrapper */
.am-contact-info-wrapper {
    padding-top: 8px;
}

.am-contact-info-wrapper h2 {
    font-family: 'Noto Serif', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--am-text-heading);
    margin: 0 0 8px;
}

.am-contact-info-desc {
    font-size: 0.95rem;
    color: var(--am-text-muted);
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Contact Cards Grid */
.am-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* Individual Contact Card */
.am-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--am-border);
    background: var(--am-surface);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.am-contact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Card Phone — blue */
.am-contact-card-phone {
    border-left: 4px solid #4d7cff;
}
.am-contact-card-phone:hover {
    border-left-color: #123A92;
    box-shadow: 0 4px 20px rgba(77, 124, 255, 0.15);
}

/* Card Email — purple */
.am-contact-card-email {
    border-left: 4px solid #a855f7;
}
.am-contact-card-email:hover {
    border-left-color: #7c3aed;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15);
}

/* Card WhatsApp — green */
.am-contact-card-whatsapp {
    border-left: 4px solid #25D366;
}
.am-contact-card-whatsapp:hover {
    border-left-color: #20bd5a;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

/* Card Location — terracotta */
.am-contact-card-location {
    border-left: 4px solid #A75D42;
}
.am-contact-card-location:hover {
    border-left-color: #8b4532;
    box-shadow: 0 4px 20px rgba(167, 93, 66, 0.15);
}

/* Card Hours — olive */
.am-contact-card-hours {
    border-left: 4px solid #6F7653;
}
.am-contact-card-hours:hover {
    border-left-color: #555c3d;
    box-shadow: 0 4px 20px rgba(111, 118, 83, 0.15);
}

/* Card Icon */
.am-contact-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(77, 124, 255, 0.06);
}

.am-contact-card-phone .am-contact-card-icon { background: rgba(77, 124, 255, 0.1); }
.am-contact-card-email .am-contact-card-icon { background: rgba(168, 85, 247, 0.1); }
.am-contact-card-whatsapp .am-contact-card-icon { background: rgba(37, 211, 102, 0.1); }
.am-contact-card-location .am-contact-card-icon { background: rgba(167, 93, 66, 0.1); }
.am-contact-card-hours .am-contact-card-icon { background: rgba(111, 118, 83, 0.1); }

/* Card Content */
.am-contact-card-content {
    flex-grow: 1;
}

.am-contact-card-content h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--am-text-heading);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.am-contact-card-content p {
    font-size: 0.95rem;
    color: var(--am-text);
    margin: 0 0 6px;
    line-height: 1.5;
}

.am-contact-card-content p a,
.am-contact-card-link {
    color: var(--am-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.am-contact-card-content p a:hover {
    color: #4d7cff;
}

/* Card Link Button */
.am-contact-card-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #4d7cff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.2s;
}

.am-contact-card-link:hover {
    color: #123A92;
    text-decoration: underline;
}

.am-contact-card-whatsapp .am-contact-card-link {
    color: #25D366;
}
.am-contact-card-whatsapp .am-contact-card-link:hover {
    color: #20bd5a;
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .am-contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .am-contact-form-wrapper .am-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .am-contact-section {
        padding: 40px 0 60px;
    }
    .am-contact-form-wrapper {
        padding: 28px 22px;
    }
    .am-contact-cards {
        gap: 12px;
    }
    .am-contact-card {
        padding: 16px;
        gap: 12px;
    }
    .am-contact-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

/* ======================================================
   28. ABOUT US PAGE — AM-ABOUT CARDS (contact-card style)
   ====================================================== */

/* Section */
.am-about-section {
    padding: 60px 0 80px;
}

/* Section title */
.am-about-intro {
    text-align: center;
    margin-bottom: 36px;
}

.am-about-intro h2 {
    font-family: 'Noto Serif', serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--am-text-heading);
    margin: 0;
}

/* Cards grid */
.am-about-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

/* Individual About Card — same structure as contact-card */
.am-about-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--am-border);
    background: var(--am-surface);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.am-about-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Card Equipos — blue (like contact-card-phone) */
.am-about-card-equipos {
    border-left: 4px solid #4d7cff;
}
.am-about-card-equipos:hover {
    border-left-color: #123A92;
    box-shadow: 0 4px 20px rgba(77, 124, 255, 0.15);
}

/* Card Operarios — green */
.am-about-card-operarios {
    border-left: 4px solid #25D366;
}
.am-about-card-operarios:hover {
    border-left-color: #20bd5a;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

/* Card Servicio integral — purple */
.am-about-card-servicio {
    border-left: 4px solid #a855f7;
}
.am-about-card-servicio:hover {
    border-left-color: #7c3aed;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.15);
}

/* Card Icon — same as contact-card-icon */
.am-about-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(77, 124, 255, 0.06);
}

.am-about-card-equipos .am-about-card-icon { background: rgba(77, 124, 255, 0.1); }
.am-about-card-operarios .am-about-card-icon { background: rgba(37, 211, 102, 0.1); }
.am-about-card-servicio .am-about-card-icon { background: rgba(168, 85, 247, 0.1); }

/* Card Content */
.am-about-card-content {
    flex-grow: 1;
}

.am-about-card-content h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--am-text-heading);
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.am-about-card-content p {
    font-size: 0.95rem;
    color: var(--am-text);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.am-about-cta {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--am-border);
}

.am-about-cta h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--am-text-heading);
    margin: 0 0 12px;
}

.am-about-cta p {
    font-size: 1.05rem;
    color: var(--am-text);
    margin: 0 0 24px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* About responsive */
@media (max-width: 768px) {
    .am-about-section {
        padding: 40px 0 60px;
    }
    .am-about-cards {
        gap: 12px;
    }
    .am-about-card {
        padding: 16px;
        gap: 12px;
    }
    .am-about-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

/* ======================================================
   27. UTILITY CLASSES
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }

.overflow-hidden { overflow: hidden; }

/* ======================================================
   24. PRINT STYLES
   ====================================================== */
@media print {
    .am-hero-carousel,
    .am-hero-single,
    .am-whatsapp-float,
    .am-back-to-top,
    .scroll-progress,
    .am-scroll-indicator {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
    }
}

/* ======================================================
   25. HERO ROUNDED CORNERS + HOVER ANIMATIONS
   ====================================================== */

/* Base: bordes redondeados siempre */
.am-hero-section,
.am-hero-single {
    border-radius: 20px;
    overflow: hidden;
    transition: border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover: sombra + escala */
.am-hero-section:hover,
.am-hero-single:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(1.015);
}

/* Hero sections (Home 3 secciones): zoom de fondo en hover */
.am-hero-bg {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.am-hero-section:hover .am-hero-bg {
    animation: none;
    transform: scale(1.05);
}

/* Contenido se eleva sutilmente en hover */
.am-hero-content {
    transition: transform 0.4s ease;
}
.am-hero-section:hover .am-hero-content,
.am-hero-single:hover .am-hero-content {
    transform: translateY(-4px);
}

/* ======================================================
   HIDE QUADLAYERS WP-WHATSAPP-CHAT PLUGIN BUTTON
   We use the theme's own WhatsApp button instead (correct number: +34 669 621 139)
   ====================================================== */
#qlwapp,
.qlwapp,
.qlwapp-container,
.qlwapp-toggle,
.social-chat-widget {
    display: none !important;
}

/* ======================================================
   MOBILE CTA BUTTONS (Reservar + Contactar in mobile nav)
   ====================================================== */
.mobile-cta-group {
    display: none;
}

@media (max-width: 900px) {
    .mobile-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        max-width: 400px;
        margin: 16px auto 0;
        gap: 10px;
        padding: 10px 0;
        border-top: 1px solid rgba(77, 124, 255, 0.1);
        padding-top: 16px;
    }

    .mobile-cta-group .cta-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }
}


/* ======================================================
   FOOTER — MicroTech AI attribution
   ====================================================== */
.footer-developed-by {
    font-size: 0.7rem;
    color: #888;
    text-align: center;
    margin-top: 8px;
    font-weight: 400;
    letter-spacing: 0;
}

.footer-developed-by a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-developed-by a:hover {
    color: #aaa;
    text-decoration: underline;
}

/* ======================================================
   HOME TITLE CLEANUP
   The generated WordPress title duplicates the hero heading.
   ====================================================== */
.home .entry-title {
    display: none !important;
}

/* ======================================================
   FULL-WIDTH SITE SHELL
   Keep text readable; let the visual sections reach the viewport.
   ====================================================== */
.site-header,
.site-main,
.site-footer {
    width: 100% !important;
    max-width: none !important;
}

.site-main,
.site-main .site-main {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.site-header .header-inner,
.site-footer .footer-inner {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.am-hero-section,
.am-hero-single {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    .site-header .header-inner,
    .site-footer .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}
