/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap');

:root {
    --dodger-blue: #007BFF;
    --midnight-blue-1: #0C0C0C;
    --midnight-blue-2: #203376;
    --dark-slate-blue: #383A90;
    --cornflower-blue-1: #43BAFF;
    --cornflower-blue-2: #547BFE;
    --dark-slate-gray: #495057;
    --slate-blue: #864DDF;
    --medium-orchid: #A053F9;
    --light-gray: #D7D7D7;
    --white-smoke: #F2F3F4;
    --mint-cream: #F9FCFB;
    --ghost-white: #FAFCFD;
    --sandy-brown-1: #FEB543;
    --sandy-brown-2: #FFCA56;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--midnight-blue-1);
    background-color: var(--ghost-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--midnight-blue-2);
}

.text-gradient {
    background: linear-gradient(135deg, var(--cornflower-blue-1), var(--medium-orchid));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    /*color: var(--midnight-blue-2) !important;*/
    color: var(--medium-orchid) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-slate-gray) !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--dodger-blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    /* background: linear-gradient(135deg, var(--midnight-blue-2) 0%, var(--dark-slate-blue) 100%);*/
    background: linear-gradient(135deg, var(--midnight-blue-2) 0%, var(--medium-orchid) 100%);
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--medium-orchid) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cornflower-blue-1) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-image-container {
    position: relative;
    padding: 2rem 0;
}

.hero-logo {
    max-width: 350px;
    filter: drop-shadow(0 0 20px rgba(67, 186, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Buttons */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--dodger-blue) 0%, var(--cornflower-blue-2) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--midnight-blue-2);
}

/* Social Media Bar */
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white-smoke);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-slate-gray);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--dodger-blue), var(--cornflower-blue-2));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Services */
.section-title {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cornflower-blue-1), var(--medium-orchid));
    transition: height 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(84, 123, 254, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--cornflower-blue-2);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    background-color: var(--white-smoke);
    position: relative;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 10px;
    background-color: var(--mint-cream);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(84, 123, 254, 0.1);
    border-color: var(--cornflower-blue-2);
    background-color: white;
}

/* Footer */
footer {
    background-color: var(--midnight-blue-2);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--sandy-brown-2);
}



/* Back To Top*/
#back-to-top {
    background: #fff;
    color: #43baff;
    border: 0 none;
    border-radius: 2px;
    cursor: pointer;
    width: 42px;
    height: 45px;
    line-height: 45px;
    opacity: 0;
    outline: medium none;
    position: fixed;
    right: 40px;
    bottom: -20px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s ease-out 0s;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.2);
    -webkit-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.2);
    -moz-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.2);
}

#back-to-top.show {
    opacity: 1;
    bottom: 40px;
}

#back-to-top i:after,
#back-to-top i:before {
    font-size: 17px;
}

#back-to-top:hover {
    bottom: 45px;
}

/* Payment Methods Section */
.payment-methods {
    background: linear-gradient(135deg, #ffffff 0%, var(--ghost-white) 100%);
    position: relative;
    overflow: hidden;
}

.payment-icons-container {
    padding: 2rem 0;
}

.payment-item {
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.payment-item i {
    margin-bottom: 10px;
}

.cuotas-badge {
    position: relative;
}

.cuotas-badge .badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 20px;
}

.payment-icons-footer i {
    transition: opacity 0.3s;
}

.payment-icons-footer i:hover {
    opacity: 1;
}

/* Featured Workshops Images */
.featured-workshop-img {
    transition: all 0.4s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    object-fit: cover;
    width: 100%;
}

.featured-workshop-img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}