:root {
    --electric-blue: #005CFF; /* Nuevo Azul Eléctrico */
    --electric-blue-hover: #0046c7;
    --soft-sky: #D7E6FF; /* Nuevo Azul Cielo Suave */
    --pure-white: #FFFFFF;
    --charcoal: #31343A; /* Nuevo Gris Carbón */
    --beige: #F5F1EB; /* Nuevo Beige Elegante */
    --text-main: #31343A;
    --text-muted: #6B7280;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--pure-white);
    /* Custom Scissors Cursor */
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23005CFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='6' r='3'/><circle cx='6' cy='18' r='3'/><line x1='20' y1='4' x2='8.12' y2='15.88'/><line x1='14.47' y1='14.48' x2='20' y2='20'/><line x1='8.12' y1='8.12' x2='12' y2='12'/></svg>") 16 16, auto;
}

a, button, .btn, .gallery-item {
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='%23005CFF' stroke='%23005CFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='6' cy='6' r='3'/><circle cx='6' cy='18' r='3'/><line x1='20' y1='4' x2='8.12' y2='15.88'/><line x1='14.47' y1='14.48' x2='20' y2='20'/><line x1='8.12' y1='8.12' x2='12' y2='12'/></svg>") 16 16, pointer;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Colors & Backgrounds */
.bg-soft-sky {
    background-color: var(--soft-sky);
}

.bg-beige {
    background-color: var(--beige);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.text-electric-blue {
    color: var(--electric-blue);
}

.text-charcoal {
    color: var(--charcoal);
}

/* Buttons */
.btn-electric-blue {
    background-color: var(--electric-blue);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-electric-blue:hover {
    background-color: var(--electric-blue-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-outline-electric-blue {
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-electric-blue:hover {
    background-color: var(--electric-blue);
    color: white;
}

/* Navbar */
.navbar-nav .nav-link {
    color: var(--charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--electric-blue);
}

/* Footer Links */
.hover-white:hover {
    color: white !important;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

/* Hero */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
}

@media (max-width: 768px) {
    .hero-overlay {
        background: rgba(255,255,255,0.85);
    }
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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