:root {
    --color-primary: #1D4ED8;
    --color-secondary: #F5F5F5;
    --color-primary-hover: #e6eaf7;
}

/* Custom styles for enREDados landing page */

/* General styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}



/* Navbar styles */
#navbar-enredados {
    background-color: #fff;
    border-bottom: 1px solid #E1E1E1;
}
.link-navbar{
    font-size: .9rem;
    padding: 9px 15px;
    min-height: 40px;
    font-weight: 500;
    color: #212121;
    border: none;
    border-radius: 5px;
}
.link-navbar:hover{
    background-color: var(--color-secondary);
}

.h-12 {
    height: 3.2rem;
}

/* Slider styles */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.md\:text-2xl {
    font-size: 1rem !important;
    line-height: 2rem!important;
    font-family: 'Inter'!important;
}
.md\:text-5xl {
    font-size: 2.5rem!important;
    line-height: 1;
    font-family: 'Inter'!important;
    margin-top: 3rem!important;
}
/* Separator */
.separator {
    width: 200px;
    margin-top: 90px;
    margin-bottom: 90px;
}
/* End Separator */

/* Card Features */
.phrase{
    width: 200px;
}
#card-feature1{
    background-color: #E9EDF8;
}
#card-feature2{
    background-color: #DCEBE7;
}
#card-feature3{
    background-color: #002EB3;
}
/* Fin Card Features */


/* FAQ styles */
.rotate-180 {
    transform: rotate(180deg);
}

.faq-answer {
    transition: max-height 0.3s ease-out;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-indicators button.active {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromBottom {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Apply animations to elements */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideInFromBottom 0.8s ease-out;
}

.animate-slide-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInFromRight 0.8s ease-out;
}

/* Custom hover effects */
.hover-grow {
    transition: transform 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.05);
}

/* Custom shadows */
.custom-shadow {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom button styles */
.btn-primary {
    @apply bg-indigo-600 text-white px-6 py-2 rounded-full hover:bg-indigo-700 transition duration-300 shadow-md;
}

.btn-secondary {
    @apply bg-white text-indigo-700 px-6 py-2 rounded-full hover:bg-gray-100 transition duration-300 shadow-md;
}

/* Custom form styles */
input:focus, textarea:focus {
    @apply outline-none ring-2 ring-indigo-500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Custom card styles */
.card {
    @apply bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition duration-300;
}

/* Custom section spacing */
section {
    @apply py-16;
}

/* Custom text gradients */
.text-gradient {
    @apply bg-clip-text text-transparent bg-gradient-to-r from-indigo-600 to-purple-600;
}

/*BOTONES PERSONALIZADOS*/
/* Button Styles */

#btn-access-campus {
    background-color: var(--color-primary);
    font-size: .9rem;
    font-weight: 400;
}

#btn-access-campus:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-primary);
    color: var(--color-primary);
}


