

:root {
    --pink-100: #fdf0f3;   
    --pink-200: #f9dfe6;   
    --pink-300: #f2c4d0;   
    --pink-400: #e8a5b8;   
    --pink-500: #d4829a;   
    --pink-600: #b5607a;   
    --white:    #ffffff;

    --text-dark:    #4a2d38;   
    --text-mid:     #7a5062;   
    --text-soft:    #a8788a;   

    --font-heading: 'Playfair Display', serif;
    --font-body:    'Poppins', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --shadow-pink: 0 8px 30px rgba(212, 130, 154, 0.20);
    --shadow-card: 0 12px 40px rgba(212, 130, 154, 0.15);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--pink-100);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.divider {
    width: 55px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
    margin: 0.75rem 0 1.5rem;
}
.divider.center { margin: 0.75rem auto 1.5rem; }

.btn-primary {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 130, 154, 0.45);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 130, 154, 0.55);
}

.btn-primary.outline {
    background: transparent;
    border: 2px solid var(--pink-400);
    color: var(--pink-600);
    box-shadow: none;
}
.btn-primary.outline:hover {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.4);
}

.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.4rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--pink-300);
    padding: 0.9rem 0;
    box-shadow: 0 4px 24px rgba(212, 130, 154, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    transition: color 0.4s ease;
}
.header.scrolled .logo { color: var(--pink-600); }

.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}
.header.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--pink-500);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--pink-400) !important; }

.lang-switch {
    display: flex;
    gap: 0.3rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-lg);
    padding: 0.3rem 0.6rem;
    transition: all 0.4s ease;
}
.header.scrolled .lang-switch {
    background: var(--pink-100);
    border-color: var(--pink-300);
}
.lang-switch a {
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.header.scrolled .lang-switch a { color: var(--text-soft); }
.lang-switch a.active,
.lang-switch a:hover {
    background: var(--pink-500);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 26px; height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}
.header.scrolled .hamburger span { background: var(--pink-600); }

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: url('img/aloralogo.png') center / cover no-repeat;
    filter: blur(4px) brightness(1.05);
    transform: scale(1.05);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(249, 223, 230, 0.68) 0%,
        rgba(232, 165, 184, 0.58) 50%,
        rgba(212, 130, 154, 0.50) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    text-shadow: 0 2px 20px rgba(180, 90, 120, 0.35);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 8px rgba(180, 90, 120, 0.25);
    margin-bottom: 2.5rem;
}

.about {
    padding: 7rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-200) 0%, transparent 70%);
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-logo-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    object-fit: contain;
    background: #ffffff;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(212, 130, 154, 0.15);
    border: 1px solid var(--pink-200);
    transition: transform 0.4s ease;
}

.about-logo-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 130, 154, 0.25);
}

.about-text-column {
    display: flex;
    align-items: center;
    width: 100%;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.about-text-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
}

.about-text-content .divider {
    width: 60px;
    height: 4px;
    background: var(--pink-400);
    margin: 1.2rem 0;
    border-radius: 2px;
}

.about-text-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.about-team-wrapper {
    position: relative;
    width: 100%;
    padding: 1rem 0;
}

.team-slider-container {
    position: relative;
    padding: 0 45px; 
}

.team-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.team-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
}

.team-card {
    flex: 0 0 calc(33.333% - 1rem); 
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 8px 25px rgba(212, 130, 154, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 130, 154, 0.2);
}

.team-img-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 1;
}

.team-card:hover .team-img-bg {
    transform: scale(1.08);
}

.team-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 1rem 1.2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.team-overlay h4 {
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.team-overlay span {
    font-size: 0.85rem;
    color: var(--pink-300);
    font-weight: 500;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--pink-200);
    border-radius: 50%;
    color: var(--pink-600);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 130, 154, 0.15);
}

.slider-nav:hover {
    background: var(--pink-600);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(212, 130, 154, 0.3);
}

.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }

.categories {
    padding: 6rem 0 8rem;
    background: var(--pink-100);
    position: relative;
}

.categories::before {
    
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--pink-300), var(--pink-500), var(--pink-300));
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}

.hidden-cat { display: none; }

.glass-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    border: 1px solid var(--pink-200);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    aspect-ratio: 3/4;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 50px rgba(212, 130, 154, 0.30);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glass-card.no-gallery {
    cursor: default;
}
.glass-card.no-gallery:hover {
    transform: none;
    box-shadow: var(--shadow-card);
}

.cat-badge {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.2rem 0.75rem;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
}

.cat-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 2.5rem 1.2rem 1.2rem;
    background: linear-gradient(
        to top,
        rgba(212, 130, 154, 0.92) 0%,
        rgba(232, 165, 184, 0.60) 55%,
        transparent 100%
    );
    text-align: center;
}

.cat-overlay h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 6px rgba(100,30,50,0.3);
}

.view-all-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.footer {
    text-align: center;
    padding: 2.5rem 1rem;
    background: var(--white);
    color: var(--text-soft);
    border-top: 1px solid var(--pink-200);
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(249, 223, 230, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.glass-modal {
    position: relative;
    z-index: 2001;
    width: 90%;
    max-width: 1050px;
    height: 88vh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid var(--pink-300);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 70px rgba(212, 130, 154, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.90) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.close-btn {
    position: absolute;
    top: 14px; right: 22px;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--pink-400);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 10;
    font-weight: 300;
}
.close-btn:hover { color: var(--pink-600); transform: rotate(90deg); }

.glass-modal h2 {
    text-align: center;
    padding-top: 2rem;
    font-size: 2rem;
    color: var(--text-dark);
}

.modal-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem 2rem;
}

.modal-scroll-area::-webkit-scrollbar { width: 6px; }
.modal-scroll-area::-webkit-scrollbar-track { background: var(--pink-100); border-radius: 6px; }
.modal-scroll-area::-webkit-scrollbar-thumb { background: var(--pink-400); border-radius: 6px; }

.modal-grid {
    column-count: 3;
    column-gap: 1.2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.2rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(212, 130, 154, 0.12);
    position: relative;
    cursor: zoom-in;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 165, 184, 0);
    transition: background 0.3s ease;
    border-radius: var(--radius-sm);
    pointer-events: none; 
}
.gallery-item:hover::after { background: rgba(232, 165, 184, 0.18); }

.modal-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.nav-quote-link {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
    color: var(--white) !important;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease !important;
    box-shadow: 0 3px 12px rgba(212, 130, 154, 0.4);
}
.nav-quote-link::after { display: none !important; }
.nav-quote-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 130, 154, 0.55);
}

.company-info {
    background: var(--white);
    padding: 5rem 0;
    border-top: 1px solid var(--pink-200);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    bottom: -120px; left: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--pink-100) 0%, transparent 75%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.5fr;
    gap: 3.5rem;
    align-items: start;
}

.info-logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--pink-600);
    margin-bottom: 0.8rem;
}
.info-brand p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.info-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.info-social {
    display: flex;
    gap: 0.8rem;
}
.social-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--pink-300);
    display: flex; align-items: center; justify-content: center;
    color: var(--pink-500);
    transition: all 0.3s ease;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
    background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 130, 154, 0.35);
}

.info-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 14px;
}
.info-col h4::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 70%;
    background: var(--pink-400);
    border-radius: 2px;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.5;
}
.info-list a {
    color: var(--text-mid);
    transition: color 0.3s;
}
.info-list a:hover { color: var(--pink-600); }

.info-icon {
    width: 36px; height: 36px;
    background: var(--pink-100);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--pink-500);
}
.info-icon svg { width: 16px; height: 16px; }

.info-map-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-address-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 500;
}

.map-address-text {
    color: var(--text-dark);
    font-weight: 500;
}

.map-embed-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--pink-200);
    box-shadow: 0 8px 28px rgba(212, 130, 154, 0.15);
    transition: box-shadow 0.3s ease;
}

.map-embed-wrapper:hover {
    box-shadow: 0 12px 36px rgba(212, 130, 154, 0.25);
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 230px;
    border: 0;
    border-radius: calc(var(--radius-md) - 2px);
    filter: saturate(0.85) hue-rotate(310deg) brightness(1.05);
}

.wizard-section {
    position: relative;
    padding: 4rem 0; 
    background: linear-gradient(135deg, var(--pink-200) 0%, var(--pink-100) 40%, var(--pink-300) 100%);
    overflow: hidden;
    text-align: center;
}

.wizard-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -100px;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 70%);
}
.wizard-section::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,130,154,0.25) 0%, transparent 70%);
}

.wizard-inner {
    position: relative;
    z-index: 1;
    max-width: 800px; 
    margin: 0 auto;
    background: #ffffff;
    padding: 2.5rem 3.5rem; 
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(212, 130, 154, 0.25);
    border: 2px solid var(--pink-100);
}

.wizard-form {
    margin-top: 1.5rem; 
    text-align: left;
}

.wizard-step {
    margin-bottom: 1.6rem; 
}

.wizard-step h3 {
    font-family: var(--font-text);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.wizard-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wiz-radio-label, .wiz-check-label {
    cursor: pointer;
    position: relative;
}

.wiz-radio-label input, .wiz-check-label input {
    display: none;
}

.wiz-box {
    display: inline-block;
    padding: 0.75rem 1.4rem;
    border: 2px solid var(--pink-200);
    border-radius: var(--radius-md);
    background: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-mid);
    transition: all 0.3s ease;
}

.wiz-radio-label input:checked + .wiz-box,
.wiz-check-label input:checked + .wiz-box {
    border-color: var(--pink-500);
    background: var(--pink-100);
    color: var(--pink-600);
    box-shadow: 0 4px 15px rgba(212, 130, 154, 0.2);
    transform: translateY(-2px);
}

.wiz-box:hover {
    border-color: var(--pink-400);
    color: var(--pink-500);
}

.wiz-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--pink-200);
    border-radius: var(--radius-md);
    font-family: var(--font-text);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
}

.wiz-input:focus {
    border-color: var(--pink-400);
    box-shadow: 0 4px 15px rgba(212, 130, 154, 0.15);
}

.wiz-input-group {
    display: flex;
    gap: 15px;
    width: 100%;
}

.wizard-submit {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--pink-200);
}

@media (max-width: 768px) {
    .wizard-inner {
        padding: 2rem 1.2rem;
    }
    .wiz-box {
        width: 100%;
        text-align: center;
    }
    .wiz-input-group {
        flex-direction: column;
    }
}

.quote-badge {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid var(--pink-300);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--pink-600);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.quote-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.quote-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.9;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #25d366, #1da851);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.40);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }

.quote-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-soft);
}
.quote-note svg { color: var(--pink-500); }

.stats-section {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--pink-200);
    text-align: center;
}

.stats-section {
    padding: 6rem 0 2rem;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--white), var(--pink-100));
    box-shadow: 0 4px 15px rgba(212, 130, 154, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--pink-600);
    margin-bottom: 0.5rem;
}

.stat-plus {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--pink-400);
    vertical-align: top;
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-mid);
    font-weight: 500;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.99) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;
    display: none; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--pink-400);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--pink-500);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.floating-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.scroll-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--pink-500);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 130, 154, 0.4);
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--pink-600);
    transform: translateY(-3px);
}

.nav-links a.active-link {
    color: var(--pink-600) !important;
}

@media (max-width: 960px) {
    .about-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .about-text-card { max-width: 100%; aspect-ratio: auto; min-height: 380px; padding: 2rem; }
    .team-card { flex: 0 0 calc(50% - 0.75rem); }
    .team-slider-track { gap: 1.5rem; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-grid { column-count: 2; }
    .info-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .info-brand { grid-column: 1 / -1; }
    .info-map-col { grid-column: 1 / -1; }
    .map-embed-wrapper iframe { height: 260px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .hamburger { 
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 32px;
        height: 22px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75%; height: 100vh;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--pink-200);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--text-dark) !important; font-size: 1.15rem; }

    .cat-grid { grid-template-columns: 1fr; }
    .about-text-card { max-width: 100%; aspect-ratio: auto; min-height: 420px; padding: 1.5rem; }
    .team-card { flex: 0 0 100%; }
    .team-slider-container { padding: 0 35px; }
    .team-slider-track { gap: 0; }
    .modal-grid { column-count: 1; }
    .glass-modal { width: 96%; height: 92vh; }
    .hero-title { font-size: 2.4rem; }

    
    .info-grid { grid-template-columns: 1fr; gap: 2rem; }
    .info-brand { grid-column: auto; }
    .info-map-col { grid-column: auto; }
    .map-embed-wrapper iframe { height: 210px; }
    .quote-section { padding: 5rem 0; }
    .btn-whatsapp { padding: 0.9rem 1.8rem; font-size: 0.95rem; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .lightbox-prev { left: 1rem; width: 45px; height: 45px; font-size: 2rem; }
    .lightbox-next { right: 1rem; width: 45px; height: 45px; font-size: 2rem; }
    .lightbox-close { top: 1rem; right: 1.5rem; font-size: 2.5rem; }
    
    .floating-wa { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .floating-wa svg { width: 26px; height: 26px; }
    .scroll-top { width: 45px; height: 45px; bottom: 80px; right: 20px; font-size: 1.2rem; }
}

.stand-info-box {
    background: var(--pink-200);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    border: 1px solid var(--pink-300);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(212, 130, 154, 0.1);
}

