/* ============================================================================
   AURORA DEL PLATA — STRUCTURAL STYLES
   Layout, spacing, animations, and component structure.
   Fonts: Michroma (display) · Roboto (body)  —  set in barebones.css
   ============================================================================ */

/* ============================================================================
   PANTONE
   ============================================================================  

    #48004c
    #930096
    #5a2754
    #5fa365
    #0a0409
    #434444
    #f4f4f4
    
   ============================================================================ */
h3 {
    display: flex;
    align-items: center;
    margin: 0 0 2rem;
}

p {
    margin-bottom: 0rem;
}

/* ============================================================================
   HEADER — Transparent-to-Solid Scroll Transition
   ============================================================================ */
.header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        padding 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* ── Header inner layout ── */
.header-inner {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 52px;
}

/* ── Logo: hidden + shifted left at top, reveals on scroll ── */
.header-logo {
    opacity: 0;
    transform: translateX(-18px);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    /* flex-shrink: 0; */
    /* margin-right: auto; */
    width: 200px;
}

/* ── Nav wrap: centered at top, shifts naturally right when logo appears ── */
.header-nav-wrap {
    display: flex;
    align-items: center;
    /* gap: 1rem; */
    /* position: absolute; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    flex-grow: 1;
    align-items: end;
    justify-content: end;
}

/* ── Transparent state (at top) ── */
.header--transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header--transparent .top-menu a {
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.header--transparent .top-menu a::after {
    background: #fff;
}

.header--transparent .burger-line {
    background-color: #fff;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); */
}

.header--transparent .logo-light {
    display: block;
}

.header--transparent .logo-dark {
    display: none;
}

.header--transparent .btn-cta {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
}

.header--transparent .btn-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ── Scrolled state ── */
.header--scrolled {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0.65rem 0;
}

/* Logo visible; nav-wrap un-anchored from center and sits naturally to the right */
.header--scrolled .header-logo {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.header--scrolled .header-nav-wrap {
    position: static;
    transform: none;
    margin-left: auto;
    /* push to the right edge */
}

.header--scrolled .top-menu a {
    color: #0a0409;
    text-shadow: none;
}

.header--scrolled .top-menu a::after {
    background: #0a0409;
}

.header--scrolled .burger-line {
    background-color: #0a0409;
    box-shadow: none;
}

.header--scrolled .logo-light {
    display: none;
}

.header--scrolled .logo-dark {
    display: block;
}

.header--scrolled .btn-cta {
    background: linear-gradient(135deg, #930096 0%, #48004c 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(147, 0, 150, 0.3);
}

.header--scrolled .btn-cta:hover {
    background: linear-gradient(135deg, #5a2754 0%, #930096 100%);
    box-shadow: 0 6px 20px rgba(147, 0, 150, 0.4);
}

.hide-mobile {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ── Header actions container ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 200px;
    align-items: start;
    justify-content: end;
    align-self: center;
}

/* ── CTA Button ── */
.btn-cta {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-flex;
    /* align-items: center; */
    /* gap: 0.5rem; */
    /* padding: 0.6rem 1.4rem; */
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-weight: 100;
    /* align-items: center; */
    /* justify-content: center; */
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-cta:hover::before {
    width: 200px;
    height: 200px;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.btn-cta:active {
    transform: translateY(0);
}

.btn-cta i {
    font-size: 26px;
    transition: transform 0.3s ease;
    margin: 0 4px 0 4px;
}

.btn-cta span {
    line-height: 0;
    letter-spacing: 1px;
    padding: 0 8px 0 0;
}

.btn-cta:hover i {
    transform: scale(1.15);
}

/* ── Subtle pulse animation for CTA ── */
@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(147, 0, 150, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(147, 0, 150, 0);
    }
}

.header--scrolled .btn-cta {
    animation: ctaPulse 3s ease-in-out infinite;
}

.header--scrolled .btn-cta:hover {
    animation: none;
}

/* ── Default logo visibility ── */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.header-logo img,
.header .logo img {
    max-height: 58px;
    width: auto;
}

/* ============================================================================
   TOP MENU
   ============================================================================ */
.top-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.top-menu a {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 0 0.47rem;
    display: block;
    position: relative;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.top-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.top-menu a:hover::after,
.top-menu a.active::after {
    width: 100%;
}

/* ============================================================================
   BURGER BUTTON
   ============================================================================ */
.burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.burger-line {
    display: block;
    width: 100%;
    height: 2px;
    /* border-radius: 0; */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.is-active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.is-active .burger-line:nth-child(2) {
    opacity: 0;
}

.is-active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ============================================================================
   ASIDE — Premium Dark Side Panel
   ============================================================================ */

/* ── Panel shell ── */
.aside {
    position: fixed;
    top: 0;
    right: -105%;
    /* slightly further to hide box-shadow on entry */
    width: 340px;
    max-width: 88vw;
    height: 100%;
    z-index: 400;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(160deg, #0a0409 0%, #48004c 60%, #0a0409 100%);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.45);
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Subtle left border accent */
    border-left: 1px solid rgba(147, 0, 150, 0.25);
}

body.aside-open {
    overflow: hidden;
}

body.aside-open .aside {
    right: 0;
}

body.aside-open .aside-nav-item {
    animation: asideItemIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(0.06s * var(--item-index, 0) + 0.15s);
}

@keyframes asideItemIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Decorative background blob ── */
.aside-blob {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(147, 0, 150, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Close button ── */
.aside-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.aside-close:hover {
    background: rgba(45, 138, 78, 0.25);
    color: #fff;
    transform: rotate(90deg);
}

/* ── Brand / Logo area ── */
.aside-brand {
    display: block;
    padding: 1.75rem 1.5rem 1.25rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}


.aside-logo-img {
    max-height: 83px;
    width: auto;
    opacity: 0.9;
    margin: 30px auto 20px;
}

/* ── Nav section ── */
.aside-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem 1rem 1rem;
    position: relative;
    z-index: 1;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 0, 150, 0.4) transparent;
}

.aside-nav::-webkit-scrollbar {
    width: 4px;
}

.aside-nav::-webkit-scrollbar-track {
    background: transparent;
}

.aside-nav::-webkit-scrollbar-thumb {
    background: rgba(147, 0, 150, 0.4);
    border-radius: 6px;
}

.aside-nav-label {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 0.75rem;
    margin-bottom: 0.75rem;
}

.aside-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aside-nav-item {
    /* opacity starts at 0 for stagger animation — set by JS adding aside-open */
    opacity: 0;
}

/* Keep items visible after animation */
body.aside-open .aside-nav-item {
    opacity: 1;
    /* animation handles it */
}

.aside-nav-link {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 0.75rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
    position: relative;
    letter-spacing: 0.03em;
}

.aside-nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding-left: 1rem;
}

.aside-nav-link.is-active {
    background: rgba(147, 0, 150, 0.2);
    color: #930096;
    border: 1px solid rgba(147, 0, 150, 0.35);
}

.aside-nav-link.is-active .aside-nav-icon {
    color: #930096;
}

.aside-nav-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: background 0.22s ease, color 0.22s ease;
}

.aside-nav-link:hover .aside-nav-icon {
    background: rgba(147, 0, 150, 0.2);
    color: #930096;
}

.aside-nav-text {
    flex: 1;
}

.aside-nav-arrow {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.22s ease, color 0.22s ease;
}

.aside-nav-link:hover .aside-nav-arrow {
    transform: translateX(3px);
    color: rgba(255, 255, 255, 0.5);
}

/* ── CTA block ── */
.aside-cta-wrap {
    padding: 0.75rem 1.5rem 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.aside-cta-btn {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #930096 0%, #48004c 100%);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 100;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(147, 0, 150, 0.35);
    border: 1px solid #930096;
}

.aside-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(147, 0, 150, 0.5);
}

.aside-cta-btn:active {
    transform: translateY(0);
}

/* ── Footer ── */
.aside-footer {
    padding: 1.25rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 1rem;
    flex-shrink: 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.aside-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.85rem;
    width: 70%;
    text-align: center;
}

.aside-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.aside-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.aside-social-link:hover {
    background: rgba(45, 138, 78, 0.25);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Overlay backdrop ── */
.aside-overlay {
    position: fixed;
    inset: 0;
    z-index: 350;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.aside-open .aside-overlay {
    opacity: 1;
    visibility: visible;
}

/* Remove the old body::after overlay (replaced by .aside-overlay) */
body::after {
    display: none;
}

/* ============================================================================
   SECTION BASE
   ============================================================================ */
.section {
    padding: 0;
    position: relative;
    overflow: hidden;
}



.section-label {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 2rem;
    font-weight: 300;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* ============================================================================
   SCROLL ANIMATIONS
   ============================================================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-up {
    transform: translateY(40px);
}

.fade-down {
    transform: translateY(-40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.zoom-in {
    transform: scale(0.95);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
    will-change: auto;
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.03em;
    margin: 4rem 0;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 2.35rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.5;
    text-shadow: 1px 2px 0px #000 !important;
}

.btn-hero {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid currentColor;
    transition: all 0.3s ease;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 100;
    margin: 4rem auto 0px;
    -webkit-backdrop-filter: blur(11px);
    backdrop-filter: blur(20px);
}

.btn-hero:hover {
    transform: translateY(-3px);
}




/* ============================================================================
   ABOUT GRID — 3-Column Cards
   ============================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(147, 0, 150, 0.12);
    border: 1px solid rgba(147, 0, 150, 0.8);
}

.about-card__img-wrap {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;

}

.about-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;

}

.about-card:hover .about-card__img-wrap img {
    transform: scale(1.08);
}

.about-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 4, 9, 0.6) 0%, rgba(10, 4, 9, 0) 60%);
    pointer-events: none;
}

.about-card__icon-badge {
    position: absolute;
    top: 180px;
    right: 34px;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #930096 0%, #48004c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(147, 0, 150, 0.4);
    z-index: 2;
    transition: transform 0.4s ease;
    border: 1px solid rgba(147, 0, 150, 0.8);
}

.about-card__icon-badge .material-icons-sharp {
    font-size: 36px;
}

.about-card:hover .about-card__icon-badge {
    transform: scale(1.15) rotate(5.5deg);
}

.about-card__body {
    padding: 2.5rem 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-card__title {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
}

.about-card__divider {
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #930096, #5fa365);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.about-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    flex: 1;
}


















































.panel-content__number {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(147, 0, 150, 0.08);
    line-height: 1;
    letter-spacing: -0.02em;
}

.panel-content__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-content__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(147, 0, 150, 0.15));
}

.panel-content__title {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.panel-content__divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #930096, #5a2754);
    border-radius: 6px;
    margin-bottom: 1.25rem;
}

.panel-content__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
}




.panel-item {
    width: 100% !important;
    min-height: auto;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.panel-item:first-child {
    border-radius: 6px 6px 0 0;
}

.panel-item:last-child {
    border-radius: 0 0 6px 6px;
    border-bottom: none;
}

/* Strip becomes horizontal on mobile */
.panel-strip {
    position: relative;
    flex-direction: row;
    padding: 1.15rem 1.25rem;
    gap: 0.85rem;
}

.panel-strip__title {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    transform: none;
    font-size: 0.7rem;
    flex: 1;
}

.panel-strip__arrow {
    opacity: 0.5;
    transform: none;
    transition: transform 0.3s ease;
}

.panel-item.is-active .panel-strip {
    display: none;
}

/* Content stacks vertically */
.panel-content {
    flex-direction: column;
    transform: none;
}

.panel-item.is-active .panel-content {
    opacity: 1;
}

.panel-item:not(.is-active) .panel-content {
    display: none;
}

.panel-content__img-wrap {
    width: 100%;
    height: 200px;
    min-height: auto;
}

.panel-content__img-overlay {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, transparent 60%);
}

.panel-content__body {
    padding: 1.5rem;
}

.panel-content__number {
    font-size: 1.8rem;
}

.panel-content__title {
    font-size: 1.2rem;
}

.tab-btn {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.tab-btn:hover {
    transform: translateY(-2px);
}

.tab-pane {
    display: none;
    border-top: 1px solid;
    animation: tabFadeIn 0.45s ease forwards;
    padding: 1.5rem 0;
    border-bottom: 1px solid;
    min-height: 408px;
}

.tab-pane.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.floating-img {
    animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ============================================================================
   ZIGZAG / PROCESS
   ============================================================================ */
.process-img-wrap {
    max-width: 380px;
    margin: 0 auto;
    position: relative;
}

.process-img-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 115%;
    height: 115%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    z-index: -1;
    animation: morphBlob 10s ease-in-out infinite alternate;
}

@keyframes morphBlob {
    0% {
        border-radius: 6px;
    }

    100% {
        border-radius: 6px;
    }
}

.process-img-wrap img {
    width: 100%;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.step-badge {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* ============================================================================
   PARALLAX BANNER
   ============================================================================ */
.section--banner {
    padding: 0;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.banner-overlay {
    width: 100%;
    padding: 6rem 0;
    display: flex;
    align-items: center;
}


.banner-quote {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 900px;
    margin: 2rem auto 0;
    line-height: 1.6;
    position: relative;
}

.quote-deco {
    font-size: 1.5rem;
    opacity: 0.4;
    vertical-align: super;
    margin: 0 0.5rem;
}



/* ============================================================================
   SERVICES GRID
   ============================================================================ */

section#servicios {
    background: #eee;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}



.service-card {
    padding: 2.5rem 2rem;
    border-radius: 6px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h4 {
    font-weight: 500;
    line-height: auto;
    margin-bottom: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-size: 23px !important;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    margin: 24px auto;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    /* flex-grow: 0; */
}

.service-icon i {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 72px;
    margin: 0;
}

.service-card:hover .service-icon i {
    transform: scale(1.15);
}

.service-card p {
    margin: 0;
    border-top: 1px solid #aaa;
    padding: 24px 0 0;
    text-align: justify;
}

/* ============================================================================
   TAG CLOUD
   ============================================================================ */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 16px;
    padding: 0;
}

.tag-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.08);
    cursor: default;
    transition: all 0.3s ease;
    flex-grow: 0;
    width: 24%;
    box-sizing: border-box;
    justify-content: start;
    background: #efefef;
}

.tag-pill:hover {
    transform: scale(1.06) translateY(-2px);
}

.tag-pill i {
    font-size: 21px;
}

.tag-pill--clickable .tag-pill__arrow {
    justify-self: flex-end;
    position: relative;
    right: 20px;
    left: auto;
    position: absolute;
}

/* ── Clickable tag-pill variant ── */
.tag-pill--clickable {
    cursor: pointer;
    /* background: none; */
    font-family: inherit;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.tag-pill--clickable:hover {
    box-shadow: 0 4px 18px rgba(147, 0, 150, 0.18);
    border-color: rgba(147, 0, 150, 0.3);
}

.tag-pill__arrow {
    font-size: 0.6rem !important;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s ease;
}

.tag-pill--clickable:hover .tag-pill__arrow {
    opacity: 0.6;
    transform: translateX(0);
}

/* ── Pathology modal styles ── */
.modal-icon-wrap--patologia {
    background: linear-gradient(135deg, #930096 0%, #5a0060 100%);
}

.pat-modal-section {
    margin-bottom: 1.25rem;
}

.pat-modal-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #930096;
    margin-bottom: 0.85rem;
}

.pat-modal-section-title i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pat-modal-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
}

.pat-modal-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    background: rgba(45, 138, 78, 0.06);
    border: 1px solid rgba(45, 138, 78, 0.12);
    font-size: 0.82rem;
    line-height: 1.6;
    color: #555;
    margin-top: 1rem;
    justify-self: flex-end;
    align-self: flex-end;
    margin: auto 0 0;
}

.pat-modal-content {
    display: flex;
    flex-flow: column;
    height: 100%;
}

.pat-modal-disclaimer i {
    color: #2d8a4e;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pat-modal-disclaimer p {
    margin: 0;
}

#pat-modal-compound-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

#pat-modal-compound-wrap i {
    font-size: 0.75rem;
    color: #930096;
}

#pat-modal-compound {
    color: #930096;
}

/* ============================================================================
   SPLIT SECTION (Veterinario)
   ============================================================================ */
.section--split {
    padding: 0;
}

.split-img-col {
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

.split-text-col {
    display: flex;
    padding: 4rem 3rem;
}

.split-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.btn-outline {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid currentColor;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-outline:hover {
    transform: translateY(-2px);
}

/* ============================================================================
   NEWS / NOVEDADES
   ============================================================================ */

.article-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.news-card {
    border-radius: 6px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    width: 31%;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    height: 100%;
    min-width: 320px;
}

.news-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.news-card-header {
    margin-bottom: 0;
    background: #eee;
    padding: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ccc;
    position: relative;
}

.news-badge {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.3rem 0 10px;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-block .article-read-more {
    text-align: center;
    width: auto;
    border: 1px solid #2d8a4e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d8a4e;
    font-weight: 100;
    font-size: 15px;
    padding: 12px;
    margin: 0 auto;
}



.check-list {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.check-list i {
    margin-top: 0.2rem;
    font-size: 0.8rem;
}

/* ============================================================================
   CONTACT FORM
   ============================================================================ */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-top: 0.15rem;
}

.form-card {
    padding: 2.5rem;
    border-radius: 6px;
    background: linear-gradient(160deg, #0a0409 -110%, #48004c 50%, #0a0409 170%);
    box-shadow: 0 60px 58px -40px rgba(0, 0, 0, 0.45);
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(147, 0, 150, 1);
}

.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-floating-last {
    flex-grow: 1;
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    width: 100%;
    justify-content: end;
}

.form-input {
    width: 100%;
    height: 3.5rem;
    padding: 1.25rem 1rem 0.35rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: currentColor;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.form-textarea {
    height: auto;
    min-height: 130px;
    padding-top: 1.5rem;
    resize: vertical;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem;
    pointer-events: none;
    font-size: 0.95rem;
    transition: all 0.15s ease;
    transform-origin: 0 0;
    opacity: 0.6;
}

.form-floating>.form-input:focus~label,
.form-floating>.form-input:not(:placeholder-shown)~label {
    transform: scale(0.8) translateY(-0.4rem);
    opacity: 0.5;
}

.btn-primary {
    font-family: 'Michroma', 'Roboto', sans-serif;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.form-status {
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-card .btn-primary {
    background-color: #1b6b38;
    color: #fff;
    font-weight: 100;
    font-size: 15px;
    border: 2px solid #2d8a4e;
    width: auto;
    margin: 0 0 0 0;
    flex-grow: 0;
    height: auto;
    align-self: flex-end;
}

.form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0px 25px -6px #2d8a4e;
}

/* ============================================================================
   REUSABLE CARD COMPONENT
   ============================================================================ */
.card {
    padding: 2rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.card-cta:hover {
    gap: 0.8rem;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    padding-top: 5rem;
    background: linear-gradient(to bottom, #0a0409 0%, #0a0409 100%);
    background-color: #0a0409;
    color: #f4f4f4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 0, 150, 0.06) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 0;
}

.footer-top,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: block;
    margin-bottom: 1.5rem;
    margin-top: -28px;
}

.footer-logo img {
    width: 128px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    margin: 0 auto;
    display: block;
}

.footer-desc {
    max-width: 320px;
    line-height: 1.7;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.footer-heading {
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #2d8a4e;
    border-radius: 6px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    padding-left: 0.4rem;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-links a:hover i {
    color: #930096;
}

.footer-links li:hover .color-green {
    color: #930096;
}

.footer-links li:hover .color-purple {
    color: #5fa365;
}

.footer-links i {
    font-size: 21px;
    transition: color 0.3s ease;
    margin: 0 -4px 0 -2px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
    line-height: 1.5;
    justify-content: start;
}

.footer-contact i {
    font-size: 24px;
    margin-top: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin: 1rem auto 0;
    justify-content: center;
}

.footer-social .social-links {
    display: flex;
    border-top: 1px solid #ccc6;
    padding: 1rem 0 0;
}

.footer-social a {
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    /* background: rgba(255, 255, 255, 0.05); */
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer-social a:hover {
    background: #930096;
    border-color: #930096;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(147, 0, 150, 0.4);
}

.footer-social span.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom {
    padding: 1.75rem 0;
    background: linear-gradient(-160deg, #1b6b38 -30%, #0e2416 30%, #220524 70%, #930096 130%);
    box-shadow: 0 60px 58px -40px rgba(0, 0, 0, 0.45);
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(147, 0, 150, 0.25);
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
    color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-bottom-links a:nth-child(1) {
    padding-right: 20px;
}

.footer-bottom-links a:nth-child(2) {
    border-left: 1px solid #fff3;
    border-right: 1px solid #fff3;
    padding: 0 20px;
}

.footer-bottom-links a:nth-child(3) {
    border-right: 1px solid #fff3;
    padding: 0 20px;
}

.footer-bottom-links a:nth-child(4) {
    padding-left: 20px;
}

.footer-bottom .fs-sm {
    font-size: 0.875rem;
    padding: 0;
    margin: 0;
}




/* ============================================================================
   MINI SLIDER / CAROUSEL
   ============================================================================ */
.mini-slider {
    position: relative;
}

.slider-viewport {
    border-radius: 6px;
}

.slider-track-inline {
    display: flex;
    transition: transform 0.4s ease;
}

.slider-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-slide img {
    width: 100%;
    border-radius: 6px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.slider-prev:hover,
.slider-next:hover {
    transform: scale(1.1);
}

/* ============================================================================
   HERO SLIDER (full viewport)
   ============================================================================ */


.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

#hero-gl-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
}

.hero-slider .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .04) 40%, rgba(0, 0, 0, .22) 100%);
    pointer-events: none;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, transparent 70%);
    padding: 4rem;
    border-radius: 6px;
    transform: translate(0, -10%);
}

.hero-slider .hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .hero-subtitle {
    text-shadow: 0 1px 10px rgba(0, 0, 0, .25);
}


.hero-content .btn-hero i {
    font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' -25, 'opsz' 24;
    font-size: 50px;
    margin: 0;
    padding: 0;
    margin: 0 -12px 0;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: rotate(0deg);
}

.slider-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: .6rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all .3s;
}

.slider-dot.active {
    background: rgba(255, 255, 255, .9);
    transform: scale(1.3);
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 5;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: rgba(255, 255, 255, .55);
    transition: width .1s linear;
    margin: 0 auto;
}

/* ============================================================================
   SECTION HERO BANNER (full-width per content block)
   ============================================================================ */
.section-hero {
    position: relative;
    width: 100%;
    height: 420px;
    min-height: 320px;
    max-height: 520px;
    overflow: hidden;
}

.section-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.section-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.18) 40%,
            rgba(0, 0, 0, 0.50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 12.5rem; */
    height: 100%;
}

.section-hero__label {
    font-family: 'Michroma', 'Roboto', sans-serif;
    /* display: inline-flex; */
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    flex-flow: column;
    display: flex;
}

.section-hero__label i {
    font-size: 5rem;
}

/* Banner bg image for normativo */
.section-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}



/* ============================================================================
   SECTION HEADING ICONS (next to h2 and h3)
   ============================================================================ */
.section-heading-icon {
    display: inline-block;
    /* margin-right: 0.6rem; */
    font-size: 2.7em;
    /* opacity: 0.55; */
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
    margin-bottom: 30px;
}

h2:hover .section-heading-icon {
    opacity: 0.85;
    transform: scale(1.15);
}

.section-heading-icon--sm {
    display: inline-block;
    margin-right: 0.45rem;
    font-size: 0.65em;
    opacity: 0.45;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

h3:hover .section-heading-icon--sm,
h4:hover .section-heading-icon--sm {
    opacity: 0.75;
    transform: scale(1.12);
}

/* ============================================================================
   SECTION SIDE IMAGES (real photos next to content)
   ============================================================================ */
.section-side-img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.section-side-img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.section-side-img--rounded {
    border-radius: 6px;
    max-width: 460px;
}

.section-split-content {
    padding: 3rem 0;
}



/* ============================================================================
   SERVICE CARD IMAGE (inside each card)
   ============================================================================ */
.service-card__img-wrap {
    width: 100%;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    /* margin-bottom: 1.25rem; */
}

.service-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
}

/* ============================================================================
   VETERINARY SECTION RESTYLE (replacing old split layout)
   ============================================================================ */
.section--vet {
    padding-top: 0;
}

.section--vet .section-label {
    margin-bottom: 0.75rem;
}



/* ============================================================================
   MODAL SYSTEM
   ============================================================================ */

/* ── Overlay ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ── Container ── */
.modal-container {
    background: #fff;
    border-radius: 6px;
    max-width: 720px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18),
        0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
    opacity: 0;
    padding: 0;
    display: flex;
    margin: 0;
    flex-flow: column;
}

.modal-overlay.is-active .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-container--sm {
    max-width: 480px;
}

/* ── Container scrollbar ── */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

/* ── Header ── */
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    background: #ededed;
    z-index: 2;
    width: 100%;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2d8a4e 0%, #1b6b38 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.modal-icon-wrap--success {
    background: linear-gradient(135deg, #5fa365 0%, #5fa365 100%);
}

.modal-icon-wrap--contact {
    background: linear-gradient(135deg, #5a2754 0%, #48004c 100%);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #1a1a1a;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin: 0.15rem 0 0;
}

.modal-close {
    width: 38px;
    height: 38px;
    border-radius: 60px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    transform: rotate(90deg);
}

/* ── Body ── */
.modal-body {
    padding: 1.5rem 2rem 2rem;
    flex-grow: 1;
    display: block;
    overflow-y: auto;
}

/* ── Form sections ── */
.form-section {
    flex-grow: 1;
}

.form-section.edge {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    flex-grow: 1;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ccc;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #2d8a4e;
    margin-bottom: 1.25rem;
    justify-content: start;
}

.form-section-title i {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ── Form rows ── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}



/* ── Checkbox ── */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #434444;
    line-height: 1.5;
    margin: 10px 0 0;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    accent-color: #930096;
    margin-top: 0.1rem;
}

.form-link {
    color: #2d8a4e;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(147, 0, 150, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s ease;
}

.form-link:hover {
    text-decoration-color: #930096;
}

/* ── Submit button ── */
.modal-submit {
    font-family: 'Michroma', 'Roboto', sans-serif;
    padding: 1rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(147, 0, 150, 0.35);
    background: linear-gradient(193deg, #48004c 0%, #930096 100%);
    color: #fff;
    /* text-transform: uppercase; */
    font-weight: 100;
    font-size: 15px;
    /* gap: 20px; */
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 0, 150, 0.35);

}

.modal-submit:active {
    transform: translateY(0);
}

/* ── Close action button ── */
.modal-close-action {
    background: linear-gradient(135deg, #2d8a4e 0%, #1b6b38 100%);
    color: #fff;
}



/* ── Body no-scroll when modal open ── */
body.modal-open {
    overflow: hidden;
}



/* ============================================================================
   SPLIT HERO SECTION (Full Width 2-Column)
   ============================================================================ */
.section-split-hero {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 50vh;
    background-color: #f4f4f4;
    overflow: hidden;
}

.section-split-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    z-index: 2;
}

.section-split-hero__image-wrap {
    position: relative;
    min-height: 400px;
    width: 50%;
}

.section-split-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}




.item-icon {
    display: flex;
    margin-right: 1rem;
    font-size: 0.7em;
    opacity: 0.55;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 40px;
}

h2:hover .item-icon {
    opacity: 0.85;
    transform: scale(1.15);
}

.item-icon--sm {
    display: inline-block;
    margin-right: 0.45rem;
    font-size: 0.65em;
    opacity: 0.45;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

h3:hover .item-icon--sm,
h4:hover .item-icon--sm {
    opacity: 0.75;
    transform: scale(1.12);
}


.color-darkpurple {
    color: #48004c;
}

.color-purple {
    color: #930096;
}

.color-softpurple {
    color: #5a2754;
}

.color-green {
    color: #5fa365;
}

.color-black {
    color: #0a0409;
}

.color-gray {
    color: #434444;
}

.color-white {
    color: #f4f4f4;
}


.section-split-hero h2 {
    text-align: center;
    margin: 0 auto 60px;
}

.divider {
    display: block;
    border-bottom: 1px solid;
    margin: 0 auto;
    max-width: 1220px;
    margin: 80px auto 0;
}

.footer-bottom .container>.col:last-child {
    width: 100%;
    min-width: 280px;
    display: block;
    position: relative;
    white-space: nowrap;
}

#contacto .section-lead {
    font-size: 1.7em;
}

.footer-bottom .col {
    display: flex;
    align-items: center;
}


.news-block {
    background: #eee;
    padding: 20px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ccc;
    position: relative;
}

.news-block h4 {
    border-bottom: 1px solid;
    padding: 0 0 20px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
}

.news-block h4 i.material-icons-sharp {
    font-size: 62px;
    margin: 0 0 0 -24px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-block h4:after {
    content: "";
    background: #ddd;
    width: 48px;
    height: 48px;
    right: -24px;
    z-index: 100;
    position: absolute;
    top: -24px;
    transform: rotate(45deg);
}

/*
.news-block h4:before {
    content: "";
    background: #ddd;
    width: 48px;
    height: 48px;
    left: -24px;
    z-index: 100;
    position: absolute;
    bottom: -24px;
    transform: rotate(45deg);
}
*/
.form-intro-text {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 26px;
    border-bottom: 1px solid #930096;
}

.form-intro-text p {
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
    padding: 0 10px 0 12px;
}

.form-intro-text i.material-icons-sharp {
    font-size: 40px;
    margin: 0 0 0px -2px;
}


i.pusher {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    font-weight: 100;
    margin: -50px 0 50px;
    font-variation-settings:
        'FILL' 0,
        'wght' 100,
        'GRAD' -25,
        'opsz' 24
}



#article-modal-content img {
    display: block;
    width: 100%;
    margin-top: -2rem
}


.form-card form {
    display: flex;
    flex-wrap: wrap;
}




.modal-form {
    display: flex;
    flex-wrap: wrap;
}

.form-section-last {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: end;
}

.form-status.form-status--error {
    display: block;
    text-align: center;
    width: 100%;
    flex-grow: 1;
    background: darkred;
    color: #fff;
    border: 2px solid #f00;
}

.form-status.form-status--success {
    display: block;
    text-align: center;
    width: 100%;
    flex-grow: 1;
    background: darkgreen;
    color: #fff;
    border: 2px solid #0f0;
}


/* ============================================================================
   RESPONSIVE RULES — UNIFIED
   All breakpoint-specific overrides consolidated here, grouped by query.
   ============================================================================ */

/* ── min-width: 769px (desktop-only rules) ── */
@media (min-width: 769px) {

    .split-img-col,
    .split-text-col {
        min-height: 55vh;
    }
}

/* ── max-width: 768px (mobile / tablet) ── */
@media (max-width: 768px) {

    /* Section base */
    .section {
        padding: 0;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    /* About grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card__img-wrap {
        height: 200px;
    }

    .about-card__icon-badge {
        width: 48px;
        height: 48px;
        bottom: -20px;
        right: 20px;
    }

    .about-card__icon-badge .material-icons-sharp {
        font-size: 24px;
    }

    .about-card__body {
        padding: 2.25rem 1.5rem 1.75rem;
    }

    /* Parallax banner */
    .section--banner {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .banner-quote {
        font-size: 1.15rem;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* News grid */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer {
        padding-top: 4rem;
    }

    .footer-top .grid {
        gap: 2.5rem;
    }

    .footer-bottom .grid {
        text-align: center;
        gap: 1.5rem;
        flex-direction: column-reverse;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-heading {
        text-align: center;
        padding-bottom: 1rem;
    }

    .footer-desc {
        text-align: center;
        margin: 0 auto;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    /* Section hero banner */
    .section-hero {
        height: 35vh;
        min-height: 220px;
        max-height: 360px;
        margin-bottom: 0;
    }

    .section-hero__label {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    /* Section side image */
    .section-side-img {
        max-width: 320px;
        margin: 2rem auto 0;
    }

    .section-split-content {
        padding: 1.5rem 0;
    }

    /* Veterinary section */
    .section--vet .grid {
        flex-direction: column;
    }

    /* Split hero section */
    .section-split-hero {
        flex-direction: column-reverse;
        margin-bottom: 0rem;
    }

    .section-split-hero__content {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .section-split-hero__image-wrap {
        min-height: auto;
        width: 100%;
    }

    .section-banner-bg {
        position: relative;
        width: 100%;
        height: auto;
        display: block;
    }

    .col {
        display: flex;
        overflow: hidden;
        flex-flow: column;
        flex-grow: 1;
        width: auto;
        max-width: 100%;
    }

    .section-lead {
        font-size: 1.6rem;
        margin: 1rem auto 2.5rem;
    }

    .content-padding {
        padding: 2rem 0;
    }

    .mt-4 {
        margin-top: 2rem;
    }

    .service-card {
        padding: 1rem;
        width: auto;
        max-width: 100%;
        display: flex;
        flex-grow: 1;
    }

    .mt-5 {
        margin-top: 0;
    }

    .divider {
        margin: 1rem auto 0;
    }

    .hero-slider .hero-content {
        position: relative;
        padding: 0 4rem;
        transform: translate(0, 0);
        height: 100vh;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        flex-flow: column;
    }

    .btn-hero {
        margin: 0 auto;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-hero i {
        font-size: 40px;
    }

    i.pusher {
        margin: -2rem 0 0px;
    }

    p.fs-xl {
        margin-bottom: 0rem;
    }

    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 0;
        justify-content: center;
        flex-wrap: wrap;
        flex-flow: column;
        text-align: center;
    }

    .contact-info.mt-4 {
        margin: 0;
    }

    #contacto .container.grid {
        flex-direction: column-reverse;
    }

    .form-floating-last {
        flex-flow: column;
        gap: 1.5rem;
    }

    .form-card .btn-primary {
        width: 100%;
    }

    .footer-bottom-links a {
        padding: 0 0.75rem !important;
        margin: 0 !important;
    }

    .footer-bottom .col {
        padding: 0;

    }

    .footer-bottom .col p {
        font-size: 0.8rem;
    }

    h2 span {
        font-size: 1.5rem;
        padding-top: 20px;
    }

    .modal-container {
        max-height: 100vh;
        border-radius: 0;
        height: 100%;
    }

    /* Modal */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .modal-header {
        border-radius: 6px;
        padding: 1.25rem 1.25rem 1rem;
    }

    .modal-body {
        padding: 1rem 1.25rem 1.5rem;
    }

    /* Form row */
    .form-row {
        grid-template-columns: 1fr;
    }

    .tag-pill {
        width: 100%;
    }

}


.header-actions #btn-asociate {
    display: none;
}

#btn-asociate {
    font-family: 'Michroma', 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    background: linear-gradient(135deg, #930096 0%, #48004c 100%);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 100;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(147, 0, 150, 0.35);
    border: 1px solid #930096;
}

#btn-asociate i.material-icons {
    font-size: 32px;
}

#btn-asociate:before {
    width: 100%;
    height: 0px;
}

#btn-asociate:hover::before {
    width: 100%;
    height: 200px;
}

/* ============================================================================
   CHATBOT
   ============================================================================ */
.chatbot-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.chatbot-wrapper.closed {
    transform: translateY(120%) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.chatbot-header {
    background: linear-gradient(135deg, #930096 0%, #48004c 100%);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Michroma', 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.chatbot-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.chatbot-close-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.chatbot-body {
    flex: 1;
    padding: 20px;
    background: #f4f4f4;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chatbot-message.received {
    align-self: flex-start;
}

.chatbot-message.sent {
    align-self: flex-end;
}

.msg-bubble {
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chatbot-message.received .msg-bubble {
    background: #fff;
    color: #434444;
    border-top-left-radius: 0;
}

.chatbot-message.sent .msg-bubble {
    background: #5fa365;
    color: #fff;
    border-top-right-radius: 0;
}

.msg-time {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
    margin-bottom: 5px;
}

.chatbot-message.sent .msg-time {
    text-align: right;
}

.chatbot-footer {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eee;
}

.chatbot-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

#chatbot-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s;
    background: #fff;
}

#chatbot-input:focus {
    border-color: #930096;
}

.chatbot-send-btn {
    background: #930096;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.chatbot-send-btn:hover {
    background: #5a2754;
    transform: scale(1.05);
}

.chatbot-send-btn:active {
    transform: scale(0.95);
}

/* Subtle styling to the footer button that opens the chat */
@keyframes chatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(147, 0, 150, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(147, 0, 150, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(147, 0, 150, 0);
    }
}

.btn-chat {
    background: rgba(147, 0, 150, 0.1);
    color: #d100d5;
    border: 1px solid rgba(147, 0, 150, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-size: 0.9em;
    animation: chatPulse 2s infinite;
}

.btn-chat:hover {
    background: #930096;
    color: #fff;
    box-shadow: 0 4px 10px rgba(147, 0, 150, 0.2);
    animation: none;
}

.btn-chat i {
    font-size: 22px;
    margin: 0px 0px -3px -4px !important;
}

.btn-chat span {
    font-size: 13px;
}