:root {
    --primary-color: #8E44AD;
    --secondary-color: #16A085;
    --accent-color: #F39C12;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-color: #34495E;
    --gradient-start: #9B59B6;
    --gradient-end: #8E44AD;
    --card-bg: rgba(236, 240, 241, 0.9);
    --section-padding: 100px 0;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.4);
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

header {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(135deg, #8E44AD20, #16A08520);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    opacity: 0.1;
    z-index: -1;
}

.hero-image {
    position: relative;
    height: 400px;
}

.floating-element {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.8;
    animation: float 6s infinite ease-in-out;
}

.floating-element:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
    animation-delay: 0s;
    transform: rotate(45deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-element:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 0;
    left: 180px;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.floating-element:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 200px;
    left: 250px;
    animation-delay: 4s;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

#recursos {
    background: linear-gradient(135deg, rgba(22, 160, 133, 0.1), rgba(142, 68, 173, 0.1));
    position: relative;
    overflow: hidden;
}

#recursos::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    top: -150px;
    right: -150px;
    opacity: 0.1;
}

#recursos::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    bottom: -100px;
    left: -100px;
    opacity: 0.1;
}

.feature-card {
    border: none;
    border-radius: 20px;
    transition: all 0.4s ease;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2));
    top: -50%;
    left: -50%;
    transform: rotate(35deg);
}

.feature-icon i {
    font-size: 2.2rem;
    color: white;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

#como-funciona {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

#como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.timeline {
    position: relative;
    padding: 40px 0;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -3px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(22, 160, 133, 0.3);
}

.timeline-item {
    padding: 30px 0 30px 100px;
    position: relative;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(142, 68, 173, 0.4);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-number {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
    transition: all 0.3s ease;
}

.timeline-content {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(142, 68, 173, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .badge.bg-primary {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.4);
}

.benefit-card {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    margin-right: 20px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 20px 10px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 6rem;
    position: absolute;
    top: 10px;
    left: 20px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.contact-form {
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
    border-color: var(--primary-color);
}

.contact-info {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer h3, .footer h4 {
    color: white;
}

.footer a {
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner a {
    color: var(--accent-color);
}

.privacy-section {
    padding-top: 120px;
    padding-bottom: 50px;
}

.privacy-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 991.98px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-number {
        left: 5px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .mnu {
        margin-top: 100px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
} 