/* Variables de colores */
:root {
    --primary-pink: #eeb4c7;
    --accent-pink: #da3b85;
    --light-pink: #f8d7e3;
    --white: #ffffff;
    --shadow: rgba(218, 59, 133, 0.2);
}

/* Animación de carga inicial */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    position: relative;
}

/* Mano que se dibuja */
.hand-drawing {
    margin-bottom: 30px;
}

.hand-svg {
    width: 200px;
    height: 200px;
    opacity: 0;
    animation: handAppear 2s ease-in-out forwards;
}

.hand-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawHand 2.5s ease-in-out 0.5s forwards;
}

.nail-dot {
    opacity: 0;
    animation: nailAppear 0.5s ease-in-out forwards;
}

.nail-dot:nth-child(2) { animation-delay: 2.8s; }
.nail-dot:nth-child(3) { animation-delay: 3.0s; }
.nail-dot:nth-child(4) { animation-delay: 3.2s; }
.nail-dot:nth-child(5) { animation-delay: 3.4s; }

@keyframes handAppear {
    to { opacity: 1; }
}

@keyframes drawHand {
    to { stroke-dashoffset: 0; }
}

@keyframes nailAppear {
    to { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Pinceles que giran */
.brushes-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.brush {
    position: absolute;
    animation: brushRotate 3s linear infinite;
}

.brush-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.brush-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.brush-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

.brush-handle {
    width: 4px;
    height: 40px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 2px;
    position: relative;
}

.brush-tip {
    width: 8px;
    height: 12px;
    background: var(--accent-pink);
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: -10px;
    left: -2px;
    transform-origin: bottom center;
}

@keyframes brushRotate {
    0% { transform: rotate(0deg) scale(0.8); }
    25% { transform: rotate(90deg) scale(1); }
    50% { transform: rotate(180deg) scale(0.8); }
    75% { transform: rotate(270deg) scale(1); }
    100% { transform: rotate(360deg) scale(0.8); }
}

/* Gotas de esmalte */
.nail-polish-drops {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.drop {
    position: absolute;
    width: 8px;
    height: 12px;
    background: var(--accent-pink);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    animation: dropFall 2s ease-in infinite;
}

.drop-1 { left: 20%; animation-delay: 0.5s; }
.drop-2 { left: 35%; animation-delay: 1s; }
.drop-3 { left: 50%; animation-delay: 1.5s; }
.drop-4 { left: 65%; animation-delay: 2s; }
.drop-5 { left: 80%; animation-delay: 2.5s; }

@keyframes dropFall {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translateY(100px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(200px) scale(0.5);
    }
}

/* Logo que aparece con animación */
.loading-logo {
    margin: 40px 0;
    text-align: center;
}

.logo-image {
    max-width: 300px;
    height: auto;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    filter: drop-shadow(0 10px 20px var(--shadow));
    animation: logoAppear 1.5s ease-out 1s forwards;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Barra de progreso */
.progress-container {
    margin-top: 30px;
}

.progress-bar {
    width: 300px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 15px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-pink), var(--primary-pink));
    border-radius: 10px;
    width: 0%;
    animation: progressFill 3s ease-in-out forwards;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: progressShine 1s ease-in-out infinite;
}

@keyframes progressFill {
    to { width: 100%; }
}

@keyframes progressShine {
    to { left: 100%; }
}

.progress-text {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    animation: textAppear 0.5s ease-out 0.5s forwards;
}

@keyframes textAppear {
    to { opacity: 1; }
}

/* Estrellas que aparecen */
.loading-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: starTwinkle 2s ease-in-out infinite;
}

.star-1 { top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.star-3 { top: 60%; left: 20%; animation-delay: 1s; }
.star-4 { top: 70%; right: 25%; animation-delay: 1.5s; }
.star-5 { top: 40%; left: 50%; animation-delay: 2s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--light-pink) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animación de brillos */
.sparkles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: sparkle 3s infinite;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.sparkle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 40%; left: 20%; animation-delay: 1s; }
.sparkle:nth-child(4) { top: 60%; left: 70%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 80%; left: 30%; animation-delay: 2s; }
.sparkle:nth-child(6) { top: 15%; left: 60%; animation-delay: 2.5s; }
.sparkle:nth-child(7) { top: 70%; left: 90%; animation-delay: 0.3s; }
.sparkle:nth-child(8) { top: 30%; left: 40%; animation-delay: 0.8s; }
.sparkle:nth-child(9) { top: 90%; left: 60%; animation-delay: 1.3s; }
.sparkle:nth-child(10) { top: 50%; left: 85%; animation-delay: 1.8s; }
.sparkle:nth-child(11) { top: 25%; left: 15%; animation-delay: 0.2s; }
.sparkle:nth-child(12) { top: 75%; left: 85%; animation-delay: 0.7s; }
.sparkle:nth-child(13) { top: 45%; left: 75%; animation-delay: 1.2s; }
.sparkle:nth-child(14) { top: 85%; left: 45%; animation-delay: 1.7s; }
.sparkle:nth-child(15) { top: 35%; left: 25%; animation-delay: 2.2s; }

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Contenedor principal */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-container {
    width: 100%;
    max-width: 500px;
}

/* Tarjeta principal */
.main-card {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--primary-pink), var(--accent-pink));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

.main-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(238, 180, 199, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(218, 59, 133, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Sección del logo */
.logo-section {
    margin-bottom: 5px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(238, 180, 199, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
}

.main-logo {
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    will-change: transform, filter;
}

.main-logo:hover {
    transform: scale(1.08) rotate(1deg);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.tagline {
    font-size: 1.05rem;
    color: #4a4a4a;
    font-weight: 500;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
}

.tagline::before {
    content: '✨';
    margin-right: 8px;
    animation: sparkle 2s ease-in-out infinite;
}

.tagline::after {
    content: '✨';
    margin-left: 8px;
    animation: sparkle 2s ease-in-out infinite 1s;
}

/* Descripción del servicio */
.service-description {
    margin-bottom: 20px;
    text-align: center;
    padding: 0 10px;
}

.service-description p {
    color: #2c2c2c;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(238, 180, 199, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 12px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(218, 59, 133, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.service-description p:hover::before {
    left: 100%;
}

.service-description p:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(218, 59, 133, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(238, 180, 199, 0.15) 100%);
    border-color: rgba(218, 59, 133, 0.3);
}

/* Texto de ubicación */
.location-text {
    color: #4a4a4a;
    font-size: 0.75rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Botones unificados de redes sociales y contacto */
.unified-buttons {
    margin-bottom: 20px;
}

.unified-buttons h3 {
    color: var(--accent-pink);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.unified-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    border-radius: 18px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    will-change: transform;
}

.unified-btn:hover,
.unified-btn:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: var(--white);
    outline: 2px solid rgba(218, 59, 133, 0.5);
    outline-offset: 2px;
}

.unified-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.unified-btn i {
    font-size: 16px;
    margin-right: 6px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.unified-btn:hover i {
    transform: scale(1.1);
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tiktok {
    background: linear-gradient(45deg, #000000, #25f4ee, #fe2c55);
}

.facebook {
    background: linear-gradient(45deg, #1877f2, #42a5f5);
}

.youtube {
    background: linear-gradient(45deg, #ff0000, #ff4444);
}

.whatsapp {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.phone {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.email {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    border: 1px solid rgba(233, 30, 99, 0.3);
}



/* Botón de contacto principal */
.contact-section {
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(218, 59, 133, 0.2);
    letter-spacing: 0.5px;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-pink));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.contact-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-pink), var(--primary-pink), var(--accent-pink));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-btn:hover::before {
    transform: translateX(0);
}

.contact-btn:hover::after {
    opacity: 1;
}

.contact-btn:hover,
.contact-btn:focus {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(218, 59, 133, 0.3),
        0 8px 15px rgba(0, 0, 0, 0.2);
    color: var(--white);
    border-color: transparent;
    outline: 2px solid rgba(218, 59, 133, 0.5);
    outline-offset: 2px;
}

.contact-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 8px 20px rgba(218, 59, 133, 0.25),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-btn span {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.contact-btn i {
    font-size: 20px;
    margin-right: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.contact-btn:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Texto alternativo de contacto */
.alternative-contact {
    font-size: 0.85rem;
    color: #666;
    margin-top: 12px;
    text-align: center;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
    transform: scale(1.05);
}

.whatsapp-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #25D366;
    transition: width 0.3s ease;
}

.whatsapp-link:hover::after {
    width: 100%;
}

/* Botón de catálogo */
.catalog-section {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-pink);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 59, 133, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.catalog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 59, 133, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.catalog-btn:hover,
.catalog-btn:focus {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(218, 59, 133, 0.3);
    box-shadow: 
        0 4px 15px rgba(218, 59, 133, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--accent-pink);
    outline: 2px solid rgba(218, 59, 133, 0.2);
    outline-offset: 2px;
}

.catalog-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(218, 59, 133, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.catalog-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.catalog-btn i {
    font-size: 14px;
    margin-right: 6px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.catalog-btn:hover i {
    transform: scale(1.1);
    opacity: 1;
}



/* Responsive */
@media (max-width: 768px) {
    .main-card {
        padding: 40px 25px;
        margin: 10px;
        border-radius: 25px;
    }
    
    .service-description p {
        font-size: 0.8rem;
        padding: 10px 16px;
        line-height: 1.3;
    }
    
    .main-logo {
        max-width: 150px;
    }
    
    .logo-container::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
    
    .buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }
    
    .unified-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .unified-btn i {
        font-size: 16px;
        margin-right: 6px;
    }
    

    
    .location-text {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
    
    .contact-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .catalog-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-card {
        padding: 35px 20px;
        border-radius: 20px;
    }
    
    .service-description p {
        font-size: 0.75rem;
        padding: 8px 14px;
        line-height: 1.3;
    }
    
    .main-logo {
        max-width: 120px;
    }
    
    .logo-container::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .location-text {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }
    

    
    .contact-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .catalog-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .alternative-contact {
        font-size: 0.75rem;
        margin-top: 8px;
    }
    
    .unified-btn {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .unified-btn i {
        font-size: 14px;
        margin-right: 5px;
    }
    
    /* Responsive para animación de carga */
    .hand-svg {
        width: 150px;
        height: 150px;
    }
    
    .logo-image {
        max-width: 200px;
    }
    
    .progress-bar {
        width: 250px;
    }
    
    .brushes-container {
        width: 250px;
        height: 250px;
    }
    
    .brush-handle {
        height: 30px;
    }
    
    .brush-tip {
        width: 6px;
        height: 10px;
    }
}
