:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 72px;
    color: var(--dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.casting-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border: none;
    padding: 0.5rem 1.5rem;
}

.btn-primary:hover {
    background: linear-gradient(to right, #5a0db3, #1a65e5);
}

.testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.requisitos-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.requisitos-list li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    text-align: center;
    line-height: 36px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Animaciones */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}