@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/garet');

        html, body {
max-width: 100%;
overflow-x: hidden;
}

:root {
    --primary-dark: #4c0303;
    --primary-red: #66090e;
    --light-gray: #ded6d6;
    --cream: #f8f4f3;
    --medium-gray: #848483;
    --light-pink: #D9C7C6;
    --gold: #C8A97E;
    --dark-gray: #2A2A2A;
    --section-padding: 8rem 0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    background-color: var(--cream);
    line-height: 1.8;
    scroll-behavior: smooth;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Belleza', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    color: var(--primary-dark) !important;
}

p {
    color: #66090e;
    font-weight: 500;
}

.subtitle {
    font-family: 'Garet', sans-serif;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.text-serif {
    font-family: 'Cormorant Garamond', serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

section {
    padding: var(--section-padding);
    position: relative;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(200, 169, 126, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.navbar {
    background-color: rgba(58, 0, 0, 0.95);
    padding: 1.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(58, 0, 0, 0.98) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream) !important;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.4s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--light-gray) !important;
    margin: 0 0.8rem;
    position: relative;
    letter-spacing: 0.5px;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-link:hover::before {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.navbar-toggler:hover .navbar-toggler-icon {
    transform: rotate(90deg);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(58, 0, 0, 0.85), rgba(58, 0, 0, 0.92)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: white;
    padding: 15rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 800px;
    padding-top: 300px !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235c0a0e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 2;
    text-align: center; 
    margin: 0 auto; 
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background-color: var(--gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 3rem auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-bottom: 90px !important;
}

.btn {
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.9rem 2.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-width: 2px;
}

.btn-primary-custom {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: white;
    position: relative;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.3), transparent);
    transition: 0.6s;
    z-index: -1;
}

        .btn-primary-custom2 {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    position: relative;
    border-radius: 4px;

}

        .btn-primary-custom2:hover {
    background-color: var(--primary-dark);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-outline-primary-custom {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    position: relative;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

        .btn-outline-primary-custom2 {
    background-color: var(--gold);
    border: 2px solid var(--primary-red);
    color: var(--primary-dark);
    position: relative;
}

        .btn-outline-primary-custom2:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    margin-bottom: 5rem;
    color: var(--primary-dark);
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

.about-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--light-pink) 0%, rgba(217, 199, 198, 0) 70%);
    opacity: 0.3;
    z-index: 0;
}

.mission-card {
    background-color: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 3rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 10, 14, 0.03) 0%, rgba(200, 169, 126, 0.03) 100%);
    z-index: -1;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.director-card {
    background-color: white;
    border-radius: 0;
    border-bottom: 4px solid var(--gold);
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding-top: 80px !important; 
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 10, 14, 0.03) 0%, rgba(200, 169, 126, 0.03) 100%);
    z-index: 0;
}

.director-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.director-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    margin: -40px auto 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.director-card:hover .director-img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.structure-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.structure-item:hover .structure-icon {
    transform: translateY(-5px) scale(1.1);
}

.activities-section {
    background-color: var(--light-gray);
    position: relative;
}

.activities-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(240, 235, 235, 1), rgba(240, 235, 235, 0));
    z-index: 1;
    pointer-events: none;
}

.activity-card {
    background-color: white;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 0;
    border-top: 4px solid var(--gold);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 10, 14, 0.03) 0%, rgba(200, 169, 126, 0.03) 100%);
    z-index: 0;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.activity-icon {
    font-size: 3.2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    transform: scale(1.15) rotate(5deg);
}

.events-section {
    background-color: white;
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--light-pink) 0%, rgba(217, 199, 198, 0) 70%);
    opacity: 0.3;
    z-index: 0;
}

.event-card {
    border: none;
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 10, 14, 0.03) 0%, rgba(200, 169, 126, 0.03) 100%);
    z-index: 0;
}

.event-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.event-img {
    height: 280px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event-card:hover .event-img {
    transform: scale(1.08);
}

.event-date {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.testimonials-section {
    background-color: var(--cream);
    position: relative;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(200, 169, 126, 0.1);
    font-family: 'Times New Roman', serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin-bottom: 1.5rem;
}

.process-section {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--light-pink) 0%, rgba(217, 199, 198, 0) 70%);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    position: relative;
    padding-left: 120px;
    margin-bottom: 4rem;
    z-index: 1;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    color: white;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(92, 10, 14, 0.2);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: rotate(15deg) scale(1.1);
}

.stats-section {
    background: linear-gradient(rgba(76, 3, 3, 0.9), rgba(76, 3, 3, 0.9)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold);
    font-family: 'Belleza', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-section {
    background-color: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c8a97e' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 1.5rem;
    transition: var(--transition);
}

.contact-info a:hover .contact-icon {
    transform: scale(1.15);
    color: var(--light-pink);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 1rem;
    transition: var(--transition);
    font-size: 1.3rem;
}

.social-icon:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-5px) scale(1.1);
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: white;
    padding: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(200, 169, 126, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    min-height: 180px;
}

footer {
    background-color: var(--primary-dark);
    color: var(--light-gray);
    padding: 6rem 0 4rem;
    font-size: 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 12px;
}

.footer-links a:hover::before {
    width: 8px;
}

.footer-links i {
    margin-right: 10px;
    width: 22px;
    text-align: center;
}

hr.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(92, 10, 14, 0.3);
    border: none;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(92, 10, 14, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.floating-element {
    position: absolute;
    background: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.link-destaque {
text-decoration: none;
transition: color 0.3s;
color: var(--light-gray); font-weight: 400; font-size: 15px
}

.link-destaque:hover {
color: var(--gold);
}

#formSuccess {
background: rgba(255, 255, 255, 0.1);
padding: 2rem;
border-radius: 5px;
text-align: center;
border-left: 4px solid var(--gold);
}

#formSuccess i {
margin-bottom: 1rem;
display: block;
}

#formSuccess h4 {
color: var(--gold) !important;
margin-bottom: 1rem;
}
@media (max-width: 1399.98px) {
    :root {
        --section-padding: 7rem 0;
    }
    
    .hero-section {
        padding: 12rem 0;
    }
}

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 6rem 0;
    }
    
    .hero-section {
        padding: 10rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-step {
        padding-left: 100px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 5rem 0;
    }
    
    .hero-section {
        padding: 8rem 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin: 2rem auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 4rem;
    }
    
    .process-step {
        padding-left: 80px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .director-img {
        width: 140px;
        height: 140px;
        margin: -70px auto 1.5rem;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    .process-step {
        padding-left: 70px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mission-card, .activity-card {
        padding: 2rem;
    }
    
    .event-img {
        height: 220px;
    }
}
.info-card {
    background-color: rgba(200, 169, 126, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}


.floating-element {
    position: absolute;
    background: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}