/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: metallicShift 15s ease-in-out infinite;
    color: #e8e8e8;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

#service { color: #fff; background-color: transparent; }
#service option { color: #000; background-color: #fff; }


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(169, 169, 169, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(128, 128, 128, 0.06) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

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

.app {
    position: relative;
    min-height: 100vh;
    z-index: 1;
}

.footer {
    position: relative;
    z-index: 2;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    text-decoration: none;
    display: inline-block;
    min-width: 140px;
    text-align: center;
}

.social-btn .icon {
    width: 18px;
    height: 18px;
    margin-right: 0;
    vertical-align: -3px;
    filter: brightness(0) invert(1);
    display: block;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Background Effects - Liquid Metal */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.liquid-1, .liquid-2, .liquid-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: liquidMetalFloat 12s ease-in-out infinite;
}

.liquid-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.3) 0%, rgba(128, 128, 128, 0.1) 50%, transparent 100%);
    top: 5%;
    left: -15%;
    animation-delay: 0s;
}

.liquid-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(169, 169, 169, 0.25) 0%, rgba(105, 105, 105, 0.08) 50%, transparent 100%);
    top: 50%;
    right: -10%;
    animation-delay: 4s;
}

.liquid-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(211, 211, 211, 0.2) 0%, rgba(169, 169, 169, 0.06) 50%, transparent 100%);
    bottom: 5%;
    left: 15%;
    animation-delay: 8s;
}

@keyframes liquidMetalFloat {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1); 
        opacity: 0.15;
    }
    25% { 
        transform: translate(30px, -40px) rotate(90deg) scale(1.1); 
        opacity: 0.2;
    }
    50% { 
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9); 
        opacity: 0.1;
    }
    75% { 
        transform: translate(40px, 20px) rotate(270deg) scale(1.05); 
        opacity: 0.18;
    }
}

/* Header */
.header {
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 104px;
    width: auto;
    display: block;
}

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 25%, #a9a9a9 50%, #808080 75%, #c0c0c0 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallicGradient 4s ease-in-out infinite;
    text-shadow: none;
    margin-bottom: 10px;
    position: relative;
}

.logo h1::before {
    content: 'SEVENBLADEZ';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: metallicShine 3s ease-in-out infinite;
}

.logo-accent {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #c0c0c0 20%, 
        #e8e8e8 50%, 
        #c0c0c0 80%, 
        transparent 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 
        0 0 15px rgba(192, 192, 192, 0.4),
        0 0 30px rgba(169, 169, 169, 0.2);
    animation: metallicAccent 2s ease-in-out infinite;
}

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

@keyframes metallicShine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes metallicAccent {
    0%, 100% { 
        box-shadow: 
            0 0 15px rgba(192, 192, 192, 0.4),
            0 0 30px rgba(169, 169, 169, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 25px rgba(192, 192, 192, 0.6),
            0 0 50px rgba(169, 169, 169, 0.4);
    }
}

/* Main Content */
.main {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.section {
    display: none;
    max-width: 400px;
    margin: 0 auto;
}

.section.active {
    display: block;
}

/* Forms - Liquid Metal */
.form {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(15, 15, 15, 0.9) 50%, 
        rgba(26, 26, 26, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(192, 192, 192, 0.1),
        inset 0 -1px 0 rgba(105, 105, 105, 0.1);
    position: relative;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(169, 169, 169, 0.2) 25%, 
        rgba(128, 128, 128, 0.1) 50%, 
        rgba(169, 169, 169, 0.2) 75%, 
        rgba(192, 192, 192, 0.3) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.form h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a9a9a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    position: relative;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input,
.input-group select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-appearance: none;
    appearance: none;
    padding: 18px 25px;
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.9) 0%, 
        rgba(10, 10, 10, 0.95) 50%, 
        rgba(20, 20, 20, 0.9) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    color: #e8e8e8;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(192, 192, 192, 0.1);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border: 2px solid transparent;
    background: linear-gradient(135deg, 
        rgba(30, 30, 30, 0.95) 0%, 
        rgba(15, 15, 15, 0.98) 50%, 
        rgba(30, 30, 30, 0.95) 100%);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(192, 192, 192, 0.3),
        0 0 20px rgba(192, 192, 192, 0.1),
        0 0 40px rgba(169, 169, 169, 0.05);
    transform: translateY(-1px);
}

.input-group input::placeholder {
    color: rgba(192, 192, 192, 0.6);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(192, 192, 192, 0.1) 25%, 
        rgba(169, 169, 169, 0.05) 50%, 
        rgba(192, 192, 192, 0.1) 75%, 
        transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    animation: metallicGlow 2s ease-in-out infinite;
}

.input-group input:focus + .input-glow,
.input-group select:focus + .input-glow {
    opacity: 1;
    animation: metallicGlowFocus 1.5s ease-in-out infinite;
}

@keyframes metallicGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

@keyframes metallicGlowFocus {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Buttons - Liquid Metal */
.btn-primary, .btn-secondary {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, 
        #c0c0c0 0%, 
        #e8e8e8 25%, 
        #a9a9a9 50%, 
        #c0c0c0 75%, 
        #808080 100%);
    color: #1a1a1a;
    box-shadow: 
        0 6px 20px rgba(192, 192, 192, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(128, 128, 128, 0.2);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(192, 192, 192, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(128, 128, 128, 0.3);
    background: linear-gradient(135deg, 
        #d3d3d3 0%, 
        #f0f0f0 25%, 
        #b8b8b8 50%, 
        #d3d3d3 75%, 
        #a0a0a0 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(15, 15, 15, 0.9) 50%, 
        rgba(26, 26, 26, 0.8) 100%);
    color: #e8e8e8;
    border: 2px solid transparent;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(192, 192, 192, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(169, 169, 169, 0.2) 50%, 
        rgba(192, 192, 192, 0.3) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.9) 0%, 
        rgba(25, 25, 25, 0.95) 50%, 
        rgba(40, 40, 40, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(192, 192, 192, 0.2);
}

/* Admin Section - Liquid Metal */
.admin-container {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(15, 15, 15, 0.9) 50%, 
        rgba(26, 26, 26, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(192, 192, 192, 0.1),
        inset 0 -1px 0 rgba(105, 105, 105, 0.1);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.admin-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(169, 169, 169, 0.2) 25%, 
        rgba(128, 128, 128, 0.1) 50%, 
        rgba(169, 169, 169, 0.2) 75%, 
        rgba(192, 192, 192, 0.3) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.admin-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
}

.offline-indicator {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.admin-header h2 {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a9a9a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.admin-stats {
    display: flex;
    justify-content: center;   /* centraliza horizontalmente */
    align-items: center;       /* centraliza verticalmente */
    gap: 15px;
    margin: 0 auto 30px;
    flex-wrap: wrap;           /* permite quebrar em várias linhas */
    max-width: 900px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .admin-stats {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;  /* aumenta limite em telas maiores */
    }
}

@media (min-width: 1024px) {
    .admin-stats {
        gap: 20px;
    }
}

.stat-card {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(192, 192, 192, 0.1),
        inset 0 -1px 0 rgba(105, 105, 105, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.2) 0%, 
        rgba(169, 169, 169, 0.1) 50%, 
        rgba(192, 192, 192, 0.2) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.stat-card h3 {
    font-size: 0.9rem;
    color: rgba(192, 192, 192, 0.8);
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-card span {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a9a9a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 480px) {
    .stat-card span {
        font-size: 1.8rem;
    }
}

.admin-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.admin-actions button {
    max-width: 300px;
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
}

.services-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(10, 10, 10, 0.95) 50%,
        rgba(26, 26, 26, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.popup-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(10, 10, 10, 0.95) 50%,
        rgba(26, 26, 26, 0.9) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popup-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.popup-form-row .input-group {
    flex: 1 1 240px;
}

.popup-form-row .textarea-group {
    flex: 1 1 100%;
}

.popup-form .file-group input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
}

.popup-form .file-group input[type="file"]:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.45);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
}

.popup-image-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.popup-image-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.popup-image-hint[data-state="filled"] {
    color: rgba(0, 255, 136, 0.85);
}

.popup-note {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.btn-link {
    background: none;
    border: none;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-link:hover:not(:disabled) {
    color: rgba(0, 255, 136, 0.9);
}

.btn-link:disabled {
    cursor: default;
    opacity: 0.5;
    text-decoration: none;
}

.popup-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    resize: vertical;
}

.popup-form textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 136, 0.45);
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
}

.popup-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.checkbox-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
}

.checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ff88;
}

.popup-meta {
    display: flex;
    align-items: baseline;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.popup-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.popup-status-badge.active {
    background: rgba(0, 255, 136, 0.18);
    color: #00ff88;
}

.popup-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.form-feedback {
    min-height: 24px;
    font-size: 0.9rem;
    color: rgba(0, 255, 136, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-feedback.visible {
    opacity: 1;
}

.form-feedback[data-type="error"] {
    color: #ff4d88;
}

.popup-preview {
    margin-top: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
    padding: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.popup-preview-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup-preview-image {
    display: none;
    border-radius: 14px;
    overflow: hidden;
}

.popup-preview-image a,
.announcement-popup__image a {
    display: block;
    width: 100%;
    text-decoration: none;
    border-radius: inherit;
}

.popup-preview-image a:not(.active),
.announcement-popup__image a:not(.active) {
    pointer-events: none;
    cursor: default;
}

.popup-preview-image a.active,
.announcement-popup__image a.active {
    cursor: pointer;
}

.popup-preview.has-image .popup-preview-image {
    display: block;
}

.popup-preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-preview-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.popup-preview-body h4 {
    font-size: 1.2rem;
    color: #ffffff;
}

.popup-preview-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.popup-preview-empty {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.popup-preview.is-active {
    border-color: rgba(0, 255, 136, 0.35);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.18);
}

.announcement-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.announcement-popup.visible {
    opacity: 1;
    pointer-events: auto;
}

.announcement-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
}

.announcement-popup__card {
    position: relative;
    z-index: 1;
    width: min(420px, 100%);
    padding: 28px 26px 26px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(20, 20, 20, 0.95) 0%,
        rgba(14, 14, 14, 0.98) 60%,
        rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.55);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.announcement-popup.visible .announcement-popup__card {
    transform: translateY(0);
}

.announcement-popup.is-active .announcement-popup__card {
    border-color: rgba(0, 255, 136, 0.45);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.25);
}

.announcement-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.announcement-popup__close:hover {
    background: rgba(0, 255, 136, 0.35);
    transform: scale(1.05);
}

.announcement-popup__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.announcement-popup__image {
    display: none;
    border-radius: 16px;
    overflow: hidden;
}

.announcement-popup.has-image .announcement-popup__image {
    display: block;
}

.announcement-popup__image img {
    width: 100%;
    height: auto;
    display: block;
}

.announcement-popup__text h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin: 0;
}

.announcement-popup__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .popup-form-row {
        flex-direction: column;
    }

    .popup-form textarea {
        min-height: 140px;
    }

    .popup-form-footer {
        gap: 12px;
    }

    .popup-meta {
        width: 100%;
        justify-content: space-between;
    }

    .popup-image-controls {
        align-items: flex-start;
    }

    .announcement-popup__card {
        padding: 24px;
    }
}


.services-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.services-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e8e8e8;
}

.services-hint {
    color: rgba(232, 232, 232, 0.65);
    font-size: 0.9rem;
}

.service-form {
    margin-bottom: 20px;
}

.service-form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.service-form-row .input-group {
    flex: 1 1 220px;
    margin-bottom: 0;
}

.service-form-row .btn-primary {
    flex: 0 0 auto;
    padding: 14px 24px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg,
        rgba(32, 32, 32, 0.9) 0%,
        rgba(15, 15, 15, 0.95) 50%,
        rgba(32, 32, 32, 0.9) 100%);
}

.service-item-fields {
    display: flex;
    flex: 1 1 280px;
    gap: 12px;
    flex-wrap: wrap;
}

.service-item-fields input {
    flex: 1 1 200px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(15, 15, 15, 0.98) 50%,
        rgba(26, 26, 26, 0.95) 100%);
    color: #e8e8e8;
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
}

.service-item-fields input:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.35);
    box-shadow: 0 0 12px rgba(192, 192, 192, 0.12);
}

.service-item-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
}

.service-item-actions .btn-small {
    min-width: 110px;
}

.empty-state {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(232, 232, 232, 0.7);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .service-form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .service-form-row .btn-primary {
        width: 100%;
    }

    .service-item {
        padding: 16px;
    }

    .service-item-fields {
        flex-direction: column;
    }

    .service-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Earnings Tooltip */
.earnings-tooltip {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 300ms ease;
    z-index: 1001;
}

.earnings-tooltip.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.earnings-content {
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(15, 15, 15, 0.95) 50%,
        rgba(26, 26, 26, 0.9) 100%);
    border-radius: 16px;
    padding: 18px 20px;
    min-width: 240px;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(255,255,255,0.08);
}

.earnings-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a9a9a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earnings-content p {
    margin: 6px 0;
    color: rgba(232,232,232,0.9);
}

.earnings-content strong {
    color: rgba(232,232,232,0.95);
}

.booking-item {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;   /* infos em cima, botões embaixo */
    gap: 12px;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(192, 192, 192, 0.1),
        inset 0 -1px 0 rgba(105, 105, 105, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.booking-info {
    display: flex;
    flex-wrap: nowrap;        /* impede quebra */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.booking-info h4,
.booking-info p {
    white-space: nowrap;      /* evita quebra de linha */
}

.booking-actions {
    display: flex;
    justify-content: flex-end; /* ou center se quiser centralizar */
    gap: 10px;
    width: 100%;
}

.btn-small {
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 5px;
}

.btn-danger {
    background: linear-gradient(135deg, 
        #8b0000 0%, 
        #a52a2a 25%, 
        #dc143c 50%, 
        #a52a2a 75%, 
        #8b0000 100%);
    color: #fff;
    border: none;
    box-shadow: 
        0 4px 15px rgba(139, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-danger:hover {
    background: linear-gradient(135deg, 
        #a52a2a 0%, 
        #dc143c 25%, 
        #ff0000 50%, 
        #dc143c 75%, 
        #a52a2a 100%);
    box-shadow: 
        0 6px 20px rgba(139, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-success {
    background: linear-gradient(135deg, 
        #2e8b57 0%, 
        #3cb371 25%, 
        #00ff7f 50%, 
        #3cb371 75%, 
        #2e8b57 100%);
    color: #fff;
    border: none;
    box-shadow: 
        0 4px 15px rgba(46, 139, 87, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-success:hover {
    background: linear-gradient(135deg, 
        #3cb371 0%, 
        #00ff7f 25%, 
        #00ff00 50%, 
        #00ff7f 75%, 
        #3cb371 100%);
    box-shadow: 
        0 6px 20px rgba(46, 139, 87, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.success-message.active {
    display: flex;
}

.success-content {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(15, 15, 15, 0.95) 50%, 
        rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    max-width: 320px;
    margin: 20px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(192, 192, 192, 0.1);
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(169, 169, 169, 0.2) 25%, 
        rgba(128, 128, 128, 0.1) 50%, 
        rgba(169, 169, 169, 0.2) 75%, 
        rgba(192, 192, 192, 0.3) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.success-content h3 {
    background: linear-gradient(135deg, #3cb371 0%, #00ff7f 50%, #2e8b57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: 1.6rem;
    text-shadow: 0 0 20px rgba(60, 179, 113, 0.3);
}

.success-content p {
    margin-bottom: 25px;
    color: rgba(192, 192, 192, 0.9);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .form {
        padding: 20px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-card {
        padding: 15px;
        min-width: 0;
    }
    
    
    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .booking-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Scrollbar Styling - Liquid Metal */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(20, 20, 20, 0.8) 100%);
    border-radius: 5px;
    box-shadow: inset 0 1px 0 rgba(192, 192, 192, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        #c0c0c0 0%, 
        #e8e8e8 25%, 
        #a9a9a9 50%, 
        #c0c0c0 75%, 
        #808080 100%);
    border-radius: 5px;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(128, 128, 128, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        #d3d3d3 0%, 
        #f0f0f0 25%, 
        #b8b8b8 50%, 
        #d3d3d3 75%, 
        #a0a0a0 100%);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(128, 128, 128, 0.3);
}

/* Calendar Styles */
.calendar-container {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(20, 20, 20, 0.8) 100%);
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    border: 2px solid transparent;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(192, 192, 192, 0.1),
        inset 0 -1px 0 rgba(105, 105, 105, 0.1),
        0 4px 15px rgba(0, 0, 0, 0.3);
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.2) 0%, 
        rgba(169, 169, 169, 0.1) 50%, 
        rgba(192, 192, 192, 0.2) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a9a9a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    margin: 0;
}

.calendar-nav-btn {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.8) 0%, 
        rgba(15, 15, 15, 0.9) 50%, 
        rgba(26, 26, 26, 0.8) 100%);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #e8e8e8;
    padding: 8px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
}

.calendar-nav-btn:hover {
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.9) 0%, 
        rgba(25, 25, 25, 0.95) 50%, 
        rgba(40, 40, 40, 0.9) 100%);
    transform: translateY(-1px);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
}

.calendar-day-header {
    background: linear-gradient(135deg, 
        rgba(64, 64, 64, 0.8) 0%, 
        rgba(48, 48, 48, 0.9) 50%, 
        rgba(64, 64, 64, 0.8) 100%);
    color: #e8e8e8;
    padding: 10px 5px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
}

.calendar-day {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(20, 20, 20, 0.8) 100%);
    color: #e8e8e8;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.calendar-day:hover {
    background: linear-gradient(135deg, 
        rgba(40, 40, 40, 0.9) 0%, 
        rgba(25, 25, 25, 0.95) 50%, 
        rgba(40, 40, 40, 0.9) 100%);
    transform: translateY(-2px);
}

.calendar-day.other-month {
    color: rgba(232, 232, 232, 0.3);
}

.calendar-day.today {
    background: linear-gradient(135deg, 
        rgba(64, 64, 64, 0.9) 0%, 
        rgba(48, 48, 48, 0.95) 50%, 
        rgba(64, 64, 64, 0.9) 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
}

.calendar-day.has-bookings {
    background: linear-gradient(135deg, 
        rgba(60, 179, 113, 0.2) 0%, 
        rgba(46, 139, 87, 0.3) 50%, 
        rgba(60, 179, 113, 0.2) 100%);
}

.calendar-day.has-bookings:hover {
    background: linear-gradient(135deg, 
        rgba(60, 179, 113, 0.3) 0%, 
        rgba(46, 139, 87, 0.4) 50%, 
        rgba(60, 179, 113, 0.3) 100%);
}

.booking-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: #3cb371;
    border-radius: 50%;
}

/* Day Details Modal */
.day-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.day-details-modal.active {
    display: flex;
}

.day-details-content {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.9) 0%, 
        rgba(15, 15, 15, 0.95) 50%, 
        rgba(26, 26, 26, 0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(192, 192, 192, 0.1);
}

.day-details-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.3) 0%, 
        rgba(169, 169, 169, 0.2) 25%, 
        rgba(128, 128, 128, 0.1) 50%, 
        rgba(169, 169, 169, 0.2) 75%, 
        rgba(192, 192, 192, 0.3) 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    z-index: -1;
}

.day-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.day-details-header h4 {
    background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a9a9a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #e8e8e8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.day-booking-item {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.8) 0%, 
        rgba(10, 10, 10, 0.9) 50%, 
        rgba(20, 20, 20, 0.8) 100%);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.day-booking-item h5 {
    color: #e8e8e8;
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.day-booking-item p {
    color: rgba(232, 232, 232, 0.8);
    margin: 4px 0;
    font-size: 0.9rem;
}

.block-hours-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.block-hours-section h5 {
    color: #e8e8e8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#block-hours-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

#block-hours-controls select {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.9) 0%, 
        rgba(10, 10, 10, 0.95) 50%, 
        rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e8e8e8;
    padding: 8px 12px;
    font-size: 0.9rem;
}

#block-hours-controls select:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.1);
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-container {
        padding: 15px;
    }
    
    .calendar-day {
        min-height: 50px;
        padding: 10px 3px;
        font-size: 0.9rem;
    }
    
    .day-details-content {
        padding: 20px;
        width: 95%;
    }
    
    #block-hours-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    #block-hours-controls select {
        width: 100%;
    }
}
.booking-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.booking-phone span {
    word-break: break-all;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    display: block;
}
