@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



/* ------ UTILITIES ------ */
:root {

    --vib-dark-green-1: #007939;
    --vib-dark-green-2: #006C3C;

    --vib-light-green-1: #7FD047;
    --vib-light-green-2: #63C349;

    --vib-dark-blue-1: #000B3D;
    --vib-dark-blue-2: #000000;

    --vib-light-blue-1: #00AADE;
    --vib-light-blue-2: #006F89;

    --vib-white: #FFFFFF;
    --vib-black: #000000;
    --vib-gray: #eff0f1;

    --font-family-1: "Open Sans", sans-serif;
    --font-family-2: "Open Sans", sans-serif;

    /*
    --font-family-1: "Roboto", sans-serif;
    --font-family-2: "Roboto", sans-serif;
    */
}


.slider-section {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    background: var(--vib-white);
}

.slider-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .375rem .875rem;
    background: var(--vib-white);
    border: 1px solid var(--vib-black);
    border-radius: 50px;
    white-space: nowrap;
    font-family: var(--font-family-2);
    font-size: 1rem;
}

.slider-item i {
    display: flex;
    color: var(--ghosxt-red-1);
    font-size: 1.5rem;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family-1);
}


/* ------ SCROLL TO TOP BUTTON ------ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    color: var(--vib-dark-blue-1);
    background: var(--vib-light-green-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    font-size: 1.25rem;
    color: var(--vib-dark-blue-1);
    display: flex;
}
/* ------ COOKIE BANNER ------ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--vib-white);
    border-top: 2px solid var(--vib-dark-blue-1);
    z-index: 1000;
    padding: 1.5rem 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: var(--vib-light-green-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 1.5rem;
    color: var(--vib-dark-blue-1);
    display: flex;
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-message {
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    color: var(--vib-dark-blue-1);
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.cookie-link {
    font-family: var(--font-family-2);
    font-size: 0.875rem;
    color: var(--vib-dark-blue-1);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: fit-content;
}

.cookie-link:hover {
    opacity: 0.7;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-secondary {
    background: var(--vib-white);
    color: var(--vib-dark-blue-1);
}

.cookie-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

.cookie-btn-primary {
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 0 var(--vib-dark-blue-1);
}

/* Adjust scroll-to-top button when banner is visible */
.cookie-banner.visible ~ .scroll-to-top {
    bottom: 140px;
    transition: bottom 0.4s ease, all 0.3s ease;
}

/* Responsive */
@media (max-width: 968px) {
    .cookie-banner-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-content {
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 1.25rem 24px;
    }

    .cookie-icon {
        width: 45px;
        height: 45px;
    }

    .cookie-icon i {
        font-size: 1.35rem;
    }

    .cookie-message {
        font-size: 0.9rem;
    }

    .cookie-actions {
        flex-direction: column;
        gap: 0.625rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem 24px;
    }

    .cookie-message {
        font-size: 0.85rem;
    }

    .cookie-link {
        font-size: 0.8rem;
    }
}

/* ------ TOP BANNER ------ */
.top-banner {
    top: 0;
    left: 0;
    right: 0;
    background: var(--vib-dark-blue-1);
    color: var(--vib-white);
    z-index: 1001;
    padding: 0 24px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-text {
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--vib-white);
}

.banner-btn {
    padding: 0.375rem 0.875rem;
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    border: 2px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.banner-btn:hover {
    transform: translateY(-2px);
}

.banner-btn i {
    display: flex !important;
}

.banner-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--vib-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.banner-close:hover {
    opacity: 0.7;
}

.navbar {
    top: 48px;
    transition: top 0.3s ease;
}

.top-banner.hidden ~ .navbar {
    top: 0;
}

.hero-section {
    padding-top: 142px; /* 48px banner + 70px navbar + 24px extra */
    transition: padding-top 0.3s ease;
}

.top-banner.hidden ~ * .hero-section,
body:has(.top-banner.hidden) .hero-section {
    padding-top: 94px; /* 70px navbar + 24px extra */
}


/* ------ NAVBAR ------ */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 2px dashed rgba(13, 33, 58, 0.1);
    z-index: 1000;
    padding: 12px 24px;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.navbar-left {
    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--vib-black);
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-logo img {
    width: 150px;
    height: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    color: var(--vib-dark-blue-1);
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-link:hover {
    color: var(--vib-light-blue-1);
}

.navbar-dropdown {
    position: relative;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.navbar-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--vib-white);
    border: 1px solid var(--vib-black);
    border-radius: 2px;
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 2px 2px 0 0 var(--vib-black);
}

.navbar-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-item {
    display: block;
    padding: 0.625rem 0.875rem;
    color: var(--vib-black);
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.navbar-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-right {
    display: flex;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--vib-black);
    border-radius: 100px;
    padding: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-track {
    position: relative;
    width: 56px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
}

.toggle-icon {
    font-size: 0.75rem;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.moon-icon {
    color: var(--vib-black);
    opacity: 0.3;
}

.sun-icon {
    color: var(--vib-black);
    opacity: 1;
}

.toggle-thumb {
    position: absolute;
    left: 2px;
    width: 24px;
    height: 24px;
    background: var(--vib-black);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.theme-toggle.dark .toggle-thumb {
    transform: translateX(28px);
}

.theme-toggle.dark .moon-icon {
    opacity: 1;
}

.theme-toggle.dark .sun-icon {
    opacity: 0.3;
}

.navbar-btn {
    padding: 1rem 1.25rem;
    border: 1px dashed var(--vib-dark-blue-1);
    border-radius: 2px;
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: stretch;
    gap:10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-whatsapp {
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    border: 2px dashed var(--vib-dark-blue-1);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 var(--vib-dark-blue-1);
}


.navbar-mobile-toggle {
    display: none;
    background: var(--vib-dark-blue-1);
    border: 1px solid var(--vib-dark-blue-1);
    border-radius: 2px;
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
}

.navbar-mobile-toggle i {
    display: flex;
    color: var(--vib-light-green-1);
}

.navbar-mobile-menu {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background: var(--vib-white);
    border-bottom: 1px solid var(--vib-black);
    max-height: calc(100vh - 71px);
    overflow-y: auto;
    padding: 1rem 24px;
    flex-direction: column;
    gap: 0.5rem;
}

.navbar-mobile-menu.active {
    display: flex;
    background: var(--vib-gray);
    z-index: 100;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.navbar-overlay {
    position: fixed;
    top: 119px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.navbar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.top-banner.hidden ~ .navbar-overlay {
    top: 71px;
}

@media (max-width: 968px) {
    .navbar-overlay {
        top: 160px;
    }
}

@media (max-width: 640px) {
    .navbar-overlay {
        top: 130px;
    }

    .top-banner.hidden ~ .navbar-overlay {
        top: 61px;
    }
}

.mobile-link {
    padding: 0.75rem 1rem;
    color: var(--vib-black);
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.mobile-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-accordion {
    border-radius: 4px;
    overflow: hidden;
}

.mobile-accordion-trigger {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--vib-white);
    border: none;
    color: var(--vib-black);
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-accordion-trigger i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.mobile-accordion.active .mobile-accordion-trigger i {
    transform: rotate(180deg);
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
}

.mobile-accordion.active .mobile-accordion-content {
    max-height: 500px;
}

.mobile-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--vib-black);
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-btn {
    padding: 0.75rem 1rem;
    border: 1px solid var(--vib-black);
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.mobile-btn.btn-whatsapp {
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    border: 2px dashed var(--vib-dark-blue-1);
}


/* ------ FOOTER SECTION ------ */
.footer {
    background: var(--vib-dark-blue-1);
    color: var(--vib-white);
    padding: 4rem 24px 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Footer Grid - 4 columnas */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-column-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vib-light-green-1);
    font-family: var(--font-family-2);
    margin: 0;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a,
.footer-links li {
    color: var(--vib-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-family-2);
    transition: all 0.3s ease;
    opacity: 1;
}

.footer-links hr{
    opacity: 0.2;
}

.footer-links li a:hover {
    color: var(--vib-light-green-1);
    opacity: 1;
    padding-left: 5px;
}

/* Footer Bottom - 3 Columnas */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Columna 1 - Logo y Nombre */
.footer-bottom-left {
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vib-light-green-1);
    font-family: var(--font-family-2);
}

/* Columna 2 - Copyright (Centrado) */
.footer-bottom-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: var(--vib-white);
    font-family: var(--font-family-2);
    opacity: 0.85;
}

/* Columna 3 - Desarrollado por (Derecha) */
.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.footer-developed {
    margin: 0;
    font-size: 0.875rem;
    color: var(--vib-white);
    font-family: var(--font-family-2);
}

.footer-dev-link {
    color: var(--vib-light-green-1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-dev-link:hover {
    text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
    .footer {
        padding: 3rem 24px 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        justify-content: center;
    }

    .footer-bottom-right {
        text-align: center;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 24px 1.5rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .footer-links li a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        gap: 1rem;
    }

    .footer-logo {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-copyright,
    .footer-developed {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-column-title {
        font-size: 1rem;
    }

    .footer-links li a {
        font-size: 0.875rem;
    }

    .footer-logo span {
        font-size: 1rem;
    }

    .footer-copyright,
    .footer-developed {
        font-size: 0.75rem;
    }
}


/* ------ RESPONSIVE NAVBAR ------ */
@media (max-width: 1100px) {
    .navbar-menu {
        gap: 1.5rem;
    }

    .navbar-link {
        font-size: 0.95rem;
    }

    .navbar-btn {
        font-size: 0.95rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (max-width: 968px) {
    .navbar-menu,
    .navbar-buttons .navbar-btn {
        display: none;
    }

    .navbar-mobile-toggle {
        display: block;
    }

    .navbar-buttons {
        gap: 0.75rem;
    }

    .navbar-right {
        flex-direction: row-reverse;
    }

    .navbar-mobile-menu {
        max-height: calc(100vh - 157px);
        padding: 12px 24px 24px 24px;
        top: 156px;
    }
}

@media (max-width: 640px) {
    .navbar-container {
        height: 60px;
    }

    .navbar-logo {
        font-size: 1.25rem;
    }

    .navbar-logo img {
        width: 100px;
        height: auto;
    }

    .navbar-mobile-menu {
        max-height: calc(100vh - 129px);
        padding: 12px 24px 24px 24px;
        top: 129px;
    }

    .theme-toggle {
        padding: 3px;
    }

    .toggle-track {
        width: 48px;
        height: 24px;
        padding: 0 4px;
    }

    .toggle-icon {
        font-size: 0.7rem;
    }

    .toggle-thumb {
        width: 20px;
        height: 20px;
    }

    .theme-toggle.dark .toggle-thumb {
        transform: translateX(24px);
    }

}

@media (max-width: 480px) {
    .navbar-logo span {
        font-size: 1.125rem;
    }
}

/* ------ RESPONSIVE SCROLL TO TOP ------ */
@media (max-width: 640px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    .scroll-to-top i {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top i {
        font-size: 1rem;
    }
}


/* ------ RESPONSIVE BANNER ------ */
@media (max-width: 640px) {
    .top-banner {
        padding: 0 16px;
    }

    .banner-container {
        height: 44px;
    }

    .banner-text {
        font-size: 0.85rem;
    }

    .banner-btn {
        padding: 0.3rem 0.75rem;
        font-size: 0.85rem;
    }

    .banner-close {
        font-size: 0.9rem;
        padding: 0.375rem;
    }

  
}

@media (max-width: 480px) {
    .banner-content {
        gap: 0.75rem;
    }

    .banner-text {
        font-size: 0.8rem;
    }

    .banner-btn {
        padding: 0.25rem 0.625rem;
        font-size: 0.8rem;
    }
}











/* ------ FAQ SECTION ------ */
.faq-section {
    padding: 5rem 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--vib-white);
}

.faq-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.faq-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 2px dashed var(--vib-dark-blue-1);
    width: fit-content;
    background: var(--vib-white);
}

.faq-badge-text {
    color: var(--vib-dark-blue-1);
    font-size: 1rem;
    font-family: var(--font-family-2);
    font-weight: 600;
}

.faq-badge i {
    display: flex;
    align-items: center;
    color: var(--vib-dark-blue-1);
    font-size: 1.125rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vib-dark-blue-1);
    line-height: 1.2;
    margin: 0;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 2px dashed var(--vib-dark-blue-1);
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 2px dashed var(--vib-dark-blue-1);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.4;
}

.faq-question i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--vib-light-green-1);
    color: var(--vib-dark-blue-1);
    border-radius: 50%;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 1.75rem 0;
    margin: 0;
    font-size: 1rem;
    color: var(--vib-dark-blue-1);
    font-family: var(--font-family-2);
    line-height: 1.6;
    opacity: 0.8;
}

/* Active State */
.faq-item.active .faq-question {
    color: var(--vib-dark-green-1);
}

/* Responsive */
@media (max-width: 968px) {
    .faq-section {
        padding: 4rem 24px;
    }

    .faq-container {
        gap: 2.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question span {
        font-size: 1.125rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .faq-container {
        gap: 2rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-question i {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 0 1.5rem 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 24px;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 0;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

