:root {
    /* Paleta de colores minimalista y futurista */
    --primary-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-solid: #667eea;
    --primary-dark: #5a6fd8;
    --secondary-color: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --secondary-solid: #f093fb;
    --accent-color: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --accent-solid: #4facfe;
    --neutral-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Tonos neutros modernos */
    --background: #fafafa;
    --background-secondary: #f5f5f7;
    --background-card: rgba(255, 255, 255, 0.8);
    --background-glass: rgba(255, 255, 255, 0.1);
    
    /* Texto con alta legibilidad */
    --text-primary: #1d1d1f;
    --text-secondary: #515154;
    --text-muted: #86868b;
    --text-light: rgba(255, 255, 255, 0.9);
    
    /* Bordes y sombras futuristas */
    --border-color: rgba(102, 126, 234, 0.1);
    --border-glass: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(102, 126, 234, 0.08);
    --shadow-md: 0 8px 32px rgba(102, 126, 234, 0.12);
    --shadow-lg: 0 16px 64px rgba(102, 126, 234, 0.16);
    --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.3);
    
    /* Tipografía moderna */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Geometría moderna */
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Transiciones suaves */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 50%, #fafafa 100%);
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-glass);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: -0.01em;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--primary-solid);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Añadir botón hamburguesa */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Contenedor principal moderno */
main {
    width: 100%;
    margin-top: 100px;
    position: relative;
    z-index: 1;
    padding: 0;
}

section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    position: relative;
}

#inicio {
    max-width: none;
    padding: 0;
    margin-top: -100px;
    padding-top: 100px;
}

h1, h2, h3 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.04em;
    position: relative;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    background: var(--neutral-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.servicios-grid, .productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.servicio, .producto {
    background: var(--background-card);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.servicio::before, .producto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-color);
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.servicio::after, .producto::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

.servicio:hover, .producto:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.3);
}

.servicio:hover::before, .producto:hover::before {
    opacity: 1;
}

.servicio:hover::after, .producto:hover::after {
    width: 300px;
    height: 300px;
}

.servicio img, .producto img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    transition: var(--transition);
    filter: grayscale(20%) contrast(1.1);
}

.servicio:hover img, .producto:hover img {
    filter: grayscale(0%) contrast(1.2) brightness(1.1);
    transform: scale(1.05);
}

.producto h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.producto p {
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::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: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.15);
}

.btn-primary:hover::before {
    left: 100%;
}

.contacto-info {
    background: var(--background-card);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem;
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacto-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.contacto-info p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: var(--transition);
}

.contacto-info p:hover {
    color: var(--primary-solid);
    transform: translateX(8px);
}

footer {
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background) 100%);
    border-top: 1px solid var(--border-glass);
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-color);
}

/* Animaciones futuristas */
.light-beam, .running-dog {
    position: fixed;
    opacity: 0.4;
    z-index: 1001;
}

.light-beam {
    top: 0;
    left: -100%;
    width: 80px;
    height: 100vh;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), rgba(79, 172, 254, 0.1), transparent);
    animation: lightBeam 12s linear infinite;
    filter: blur(1px);
}

.running-dog {
    top: 20px;
    left: -100px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, rgba(79, 172, 254, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: runningDog 25s linear infinite, pulse 2s ease-in-out infinite;
}

/* Swiper Styles - Diseño futurista */
.swiper {
    width: 100%;
    height: 80vh;
    position: relative;
    margin-bottom: 6rem;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(79, 172, 254, 0.2) 50%, rgba(240, 147, 251, 0.3) 100%);
    z-index: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 700px;
    width: 90%;
    box-shadow: var(--shadow-lg);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.slide-content h2::after {
    display: none;
}

.slide-content p {
    font-size: 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: white;
    opacity: 1;
    transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Services Detail */
.servicios-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.servicio-detalle {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem;
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.servicio-detalle img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.servicio-detalle h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
}

.servicio-detalle p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* WhatsApp Button futurista */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-button a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.whatsapp-button img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
    z-index: 1;
    transition: var(--transition);
}

.whatsapp-button:hover a {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

.whatsapp-button:hover a::before {
    opacity: 1;
}

.whatsapp-button:hover img {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(29, 29, 31, 0.9);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    pointer-events: none;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.ver-mas {
    text-align: center;
    margin-top: 3rem;
}

/* Efectos adicionales futuristas */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* Efectos de scroll suaves */
html {
    scroll-behavior: smooth;
}

/* Mejoras en la transición de elementos */
* {
    transition: var(--transition-fast);
}

*:hover {
    transition: var(--transition);
}

/* Grid moderno para secciones */
.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Efectos de partículas sutiles */
.particles-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(79, 172, 254, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(240, 147, 251, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 60px 60px;
    animation: floatParticles 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(10px, -10px); opacity: 0.7; }
    50% { transform: translate(-5px, 10px); opacity: 0.5; }
    75% { transform: translate(15px, 5px); opacity: 0.8; }
}

/* Mejoras en la accesibilidad */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Estados de focus modernos */
button:focus, 
a:focus, 
input:focus, 
select:focus {
    outline: 2px solid var(--accent-solid);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* Aplicar efectos de partículas a secciones específicas */
section {
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(79, 172, 254, 0.02) 100%);
}

section:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes lightBeam {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(calc(100vw + 100%)) skewX(-20deg); }
}

@keyframes runningDog {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: var(--shadow-glow); }
}

.light-beam-reverse {
    position: absolute;
    bottom: 0;
    right: -100%;
    width: 80px;
    height: 120px;
    background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), rgba(102, 126, 234, 0.1), transparent);
    animation: lightBeamReverse 12s linear infinite;
    filter: blur(1px);
}

.running-dog-reverse {
    position: absolute;
    bottom: 20px;
    right: -100px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.3) 0%, rgba(79, 172, 254, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: runningDogReverse 25s linear infinite, pulse 2.5s ease-in-out infinite;
}

@keyframes lightBeamReverse {
    0% { transform: translateX(100%) skewX(20deg); }
    100% { transform: translateX(-100%) skewX(20deg); }
}

@keyframes runningDogReverse {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 120px 30px 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        border-left: 1px solid var(--border-color);
    }

    nav.active ul {
        right: 0;
    }

    nav.active .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    nav.active .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.active .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav ul li {
        margin: 20px 0;
    }

    .swiper {
        height: 50vh;
    }

    .slide-content {
        padding: 2rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .servicios-grid, .productos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servicio-detalle {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .servicio-detalle h2 {
        text-align: center;
    }

    section {
        padding: 3rem 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .swiper {
        height: 40vh;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
    }
}

/* Form Styles */
.formulario-cita {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--background);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.form-agendamiento {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-grupo label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

.form-grupo input,
.form-grupo select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    background: var(--background);
    transition: var(--transition);
    font-size: 1rem;
}

.form-grupo input:focus,
.form-grupo select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.025em;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
