body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Scroll Indicator */
#scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 100;
}

#scroll-indicator-bar {
    height: 100%;
    background-color: #989081;
    width: 0%;
    transition: width 0.3s ease-out;
}

/* Animations */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, transform 0.3s ease-out;
    opacity: 0;
    transform: translateY(-10px);
}

.accordion-content.active {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

/* Image hover effect */
.image-container {
    overflow: hidden;
}

.image-container img {
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Active section indicator */
.nav-link.active {
    color: #989081;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #989081;
}

/* Logo animation */
.logo-container {
    transition: transform 0.5s ease;
}

.logo-container:hover {
    transform: rotate(45deg);
}

/* Button hover animation */
.btn-arrow i {
    transition: transform 0.3s ease;
}

.btn-arrow:hover i {
    transform: translateX(4px);
}

/* Mobile menu */
#mobile-menu {
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}

#mobile-menu.active {
    max-height: 300px;
}

/* Philosophy section decorative elements */
.philosophy-section {
    position: relative;
    overflow: hidden;
}

.circle-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    border: 1px solid #989081;
    top: -100px;
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: #989081;
    bottom: -100px;
    right: -100px;
}

.line-element {
    position: absolute;
    background-color: #989081;
    opacity: 0.1;
    z-index: 0;
}

.line-1 {
    width: 150px;
    height: 2px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.line-2 {
    width: 2px;
    height: 150px;
    top: 30%;
    left: 30%;
}

.dot-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#989081 1px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 0;
}

.dot-pattern-1 {
    top: 10%;
    right: 10%;
}

.dot-pattern-2 {
    bottom: 10%;
    left: 5%;
}

.philosophy-image-container {
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(33, 33, 33, 0.1);
    transition: transform 0.5s ease;
}

.philosophy-image-container:hover {
    transform: translateY(-10px);
}

.philosophy-content {
    position: relative;
    z-index: 1;
}

.floating-element {
    position: absolute;
    z-index: 0;
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    top: 20%;
    right: 5%;
}

.floating-element-2 {
    bottom: 15%;
    left: 10%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Detail Section Styles */
.services-detail-section {
    position: relative;
    overflow: hidden;
}

.service-item {
    position: relative;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* Ajuste para contenedor de imagen */
.service-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-container {
    position: relative;
    /* overflow: hidden; */
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(33, 33, 33, 0.1);
    width: 100%;
    height: auto;
    max-height: 100%;
}

.service-image-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 350px;
    /* Altura máxima para las imágenes */
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.service-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-decorative-element {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.service-circle {
    border-radius: 50%;
}

.service-circle-1 {
    width: 150px;
    height: 150px;
    border: 2px solid #989081;
    top: -50px;
    right: -50px;
}

.service-circle-2 {
    width: 80px;
    height: 80px;
    background-color: #989081;
    bottom: -20px;
    left: 30%;
}

.service-line {
    background-color: #989081;
}

.service-line-1 {
    width: 100px;
    height: 2px;
    top: 30%;
    left: -50px;
}

.service-line-2 {
    width: 2px;
    height: 100px;
    bottom: 20%;
    right: 50px;
}

.service-dot-pattern {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#989081 1px, transparent 2px);
    background-size: 12px 12px;
    top: 50%;
    right: -50px;
}

.service-badge {
    position: absolute;
    background-color: #989081;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
    top: -10px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(33, 33, 33, 0.1);
    z-index: 2;
}

.service-icon-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(33, 33, 33, 0.1);
    z-index: 2;
}

.service-icon-accent-1 {
    bottom: -15px;
    left: 20px;
}

.service-icon-accent-2 {
    top: 20px;
    left: -15px;
}

.service-highlight {
    position: relative;
    display: inline-block;
}

.service-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(152, 144, 129, 0.2);
    z-index: -1;
}

/* FAQ Section Styles */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-container {
    position: relative;
    z-index: 1;
}

.faq-item {
    position: relative;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(33, 33, 33, 0.05);
}

.faq-item:hover {
    box-shadow: 0 10px 15px rgba(33, 33, 33, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    text-align: left;
    background-color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:focus {
    outline: none;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.faq-question.active::before {
    background-color: #989081;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
    color: #989081;
}

.faq-answer {
    padding: 0 20px 20px 20px;
}

.faq-decorative-element {
    position: absolute;
    z-index: 0;
    opacity: 0.05;
}

.faq-circle {
    border-radius: 50%;
}

.faq-circle-1 {
    width: 300px;
    height: 300px;
    border: 2px solid #989081;
    top: -150px;
    right: -100px;
}

.faq-circle-2 {
    width: 200px;
    height: 200px;
    background-color: #989081;
    bottom: -100px;
    left: -100px;
}

.faq-line {
    background-color: #989081;
}

.faq-line-1 {
    width: 150px;
    height: 2px;
    top: 30%;
    right: 10%;
}

.faq-line-2 {
    width: 2px;
    height: 150px;
    bottom: 20%;
    left: 10%;
}

.faq-dot-pattern {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#989081 1px, transparent 2px);
    background-size: 15px 15px;
    top: 20%;
    left: 5%;
}

.faq-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(152, 144, 129, 0.1);
    color: #989081;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-category {
    background-color: rgba(152, 144, 129, 0.2);
}

.faq-search {
    position: relative;
    margin-bottom: 30px;
}

.faq-search input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    border: 1px solid #D8D6D0;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: #989081;
    box-shadow: 0 0 0 3px rgba(152, 144, 129, 0.1);
}

.faq-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #989081;
}

/* Location Section Styles */
.location-section {
    position: relative;
    overflow: hidden;
}

.location-content {
    position: relative;
    z-index: 1;
}

.location-map-container {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(33, 33, 33, 0.1);
    height: 100%;
    min-height: 300px;
}

.location-decorative-element {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.location-circle {
    border-radius: 50%;
}

.location-circle-1 {
    width: 200px;
    height: 200px;
    border: 2px solid #989081;
    top: -50px;
    right: 10%;
}

.location-circle-2 {
    width: 100px;
    height: 100px;
    background-color: #989081;
    bottom: -30px;
    left: 20%;
}

.location-line {
    background-color: #989081;
}

.location-line-1 {
    width: 100px;
    height: 2px;
    top: 40%;
    left: -30px;
}

.location-dot-pattern {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#989081 1px, transparent 2px);
    background-size: 12px 12px;
    bottom: 10%;
    right: 5%;
}

.location-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(152, 144, 129, 0.1);
    color: #989081;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 8px;
}

.location-highlight {
    position: relative;
    display: inline-block;
}

.location-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(152, 144, 129, 0.2);
    z-index: -1;
}

@media (max-width: 768px) {

    .circle-1,
    .circle-2,
    .line-1,
    .line-2,
    .dot-pattern,
    .service-decorative-element,
    .faq-decorative-element,
    .location-decorative-element {
        display: none;
    }

    .service-image-container img {
        max-height: 250px;
    }

    .location-map-container {
        margin-top: 30px;
        min-height: 250px;
    }
}