:root {
    --primary-color: #6c48b5;
    --secondary-color: #F9E9F4;
}

.text-primary{
    color: var(--primary-color) !important;
}

.text-secondary{
    color: var(--secondary-color) !important;
}

.bg-primary{
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.bg-secondary{
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
}

body {
    background-color: #f4f4f4;
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

h1 {
    font-size: 3rem;
    font-family: 'Nunito', sans-serif;
    letter-spacing: -1px;
}

h2 {
    font-weight: 900;
    font-size: 2.5rem;
    color: #6c48b5;
    font-family: 'Nunito', sans-serif;
}

h5 {
    font-weight: 900;
    color: #6c48b5;
    font-family: 'Nunito', sans-serif;
}

* {
    font-family: 'Raleway', sans-serif;
}

.hero {
    background-image: url('/img/pattern.png');
    background-color: #EBEBEB;
}
.hero .container {
    
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero p{
    font-size: 1.5rem;
}

.mascota-img {
    /*position: absolute;
    right: 0;
    bottom: 0;
    height: 650px;
    z-index: 1;
    margin-right: 50px;*/
}
.id-card {
    width: 40%;
/*    position: absolute;
    right: 35%;
    bottom: 15%;
    width: 250px;
    height: auto;
    /*box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    z-index: 2;*/
}
.navbar {
/*    background-color: #EAEAEA !important;*/
}

.navbar .nav-link{
    margin-right: 50px;
}

.bg-white-on-scroll {
    background-color: white !important;
    transition: background-color 0.3s ease; /* Transición suave */
}

.bg-transparent {
    transition: background-color 0.3s ease; /* Transición suave */
}


.section {
    background: white;
}
.cta-btn {
    background: #6c48b5;
    color: white;
    /*padding: 12px 80px;
    border-radius: 50px;*/
    /*text-decoration: none;
    display: inline-block;*/
/*    margin-top: 20px;*/
    box-shadow: 4px 4px 0px #E99ACB;
/*    font-weight: 700;*/
}

.nav-cta{
    background: #6c48b5;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    padding-left: 100px;
    padding-right: 100px;
}

.cta-btn:hover {
    background: #573996;
    color: white;
}
.footer {
    background: #4a278d;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.img-placeholder {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, 5px);
    }
    50% {
        transform: translate(-10px, -5px);
    }
    75% {
        transform: translate(5px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.id-card {
    animation: floatAnimation 6s ease-in-out infinite;
}

.bg-purple {
    position: relative;
    background-color: var(--primary-color);
    color: #FFFFFF;
    overflow: hidden;
}

.bg-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/pattern.png');
    opacity: 0.3; /* Ajusta este valor para cambiar la opacidad */
    z-index: 0;
}

.bg-purple > * {
    position: relative;
    z-index: 1;
}

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

.btn-group .btn-outline-primary {
    color: var(--primary-color);
    background-color: #FFFFFF;
    border-color: var(--secondary-color);
    font-weight: bold;
}
.btn-group .btn-outline-primary:hover, .btn-group .btn-check:checked + .btn-outline-primary {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.fs-small{
    font-size: 12px;
}