.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: var(--smooth);
}

.arrow-main { 
    font-size: 20px; 
    transition: transform 0.3s ease; 
}

.btn-hero:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.btn-hero:hover .arrow-main { 
    transform: translateX(8px); 
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    animation: fadeIn 1.2s ease forwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.trust-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.trust-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
}

.trust-text b { color: var(--white); }

.trust-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.15);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--gold);
    padding: 15px 0;
    transform: rotate(-1.5deg) scale(1.05);
    z-index: 10;
    position: relative;
    margin-top: -30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.service-card {
    background: #0a0a0a;
    height: 700px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #1a1a1a;
    transition: var(--smooth);
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                0 15px 25px rgba(255, 208, 0, 0.1);
}

.card-image-wrapper {
    height: 60%;
    overflow: hidden;
    position: relative;
}

.card-image-wrapper img, 
.wide-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%); 
    transition: filter 0.8s ease, transform 1s ease, opacity 0.8s ease;
    opacity: 0.8;
}

.service-card:hover .card-image-wrapper img,
.service-card:not(.card-wide):hover img {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0%); 
}

.card-tag {
    position: absolute; 
    top: 20px; 
    right: 20px;
    background: var(--gold); 
    color: #000;
    padding: 5px 15px; 
    font-weight: 600; 
    font-size: 12px;
    z-index: 5;
}

.card-body {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, var(--black) 0%, #111 100%);
}

.card-info h3 { 
    font-size: 32px; 
    margin-bottom: 15px; 
    letter-spacing: 1px; 
}

.card-info h3 span { 
    color: var(--gold); 
    font-weight: 300; 
}

.card-info p { 
    color: var(--gray-txt); 
    font-size: 18.5px; 
    font-weight: 300; 
    line-height: 1.6; 
}

.btn-reserva-new {
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--smooth);
    padding: 10px 0;
    border-bottom: 1px solid transparent;
}

.arrow {
    color: var(--gold);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-card:hover .btn-reserva-new {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.service-card:hover .arrow {
    transform: translateX(8px);
}

.btn-wide-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    width: fit-content;
    transition: var(--smooth);
    border-radius: 4px;
}

.btn-wide-contact:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.btn-wide-contact:hover .arrow {
    transform: translateX(8px);
}

.experience-years {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    padding: 15px;
    text-align: center;
    font-family: var(--font-main);
    z-index: 10;
}

.experience-years .num { 
    font-size: 30px; 
    font-weight: 700; 
    display: block; 
    line-height: 1; 
}

.experience-years .txt { 
    font-size: 10px; 
    text-transform: uppercase; 
    font-weight: 600; 
    letter-spacing: 1px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--smooth);
}

.v-line {
    width: 2px;
    background: var(--gold);
    height: 40px;
    transition: 0.4s ease;
}

.value-item:hover .v-line {
    height: 60px;
    box-shadow: 0 0 15px var(--gold);
}

.value-item h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--white);
}

.value-item p { 
    font-size: 14px; 
    color: var(--gray-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--smooth);
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.about-shape-square {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    transition: 0.5s ease;
}

.about-shape-lines {
    position: absolute;
    width: 200px;
    height: 150px;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 208, 0, 0.1),
        rgba(255, 208, 0, 0.1) 2px,
        transparent 2px,
        transparent 10px
    );
    z-index: -1;
    transition: 0.5s ease;
}

.about-visuals:hover .about-shape-square {
    transform: translate(-10px, -10px);
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.25) 0%, transparent 80%);
}

.about-visuals:hover .about-shape-lines {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.5;
}

.vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: 10px;
    color: var(--gold);
    border-left: 1px solid rgba(255,208,0,0.3);
    padding-left: 20px;
    opacity: 0.5;
    text-transform: uppercase;
}

.nav-btn {
    cursor: pointer;
    opacity: 0.35;
    transition: var(--smooth);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
}

.nav-btn .step {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.7;
}

.nav-btn .label {
    font-size: 16px;
    color: var(--gray-dark);
    text-transform: uppercase;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.nav-btn .label span {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.nav-btn.active {
    opacity: 1;
    transform: translateX(20px);
}

.nav-btn.active .label {
    color: var(--white);
}

.nav-btn.active .step {
    opacity: 1;
}

.nav-btn:hover {
    opacity: 0.8;
}

.nav-btn:hover .label {
    color: var(--white);
}

.big-price {
    font-size: 110px;
    font-family: var(--font-main);
    line-height: 0.85;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.plan-name {
    font-size: 20px;
    letter-spacing: 6px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.feat-list {
    list-style: none;
    margin-bottom: 40px;
}

.feat-list li {
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--smooth);
}

.feat-list li:hover {
    color: var(--white);
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 208, 0, 0.6);
}

.cta {
    display: block;
    background: var(--white);
    color: var(--black);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 2px;
    transition: var(--smooth);
    text-transform: uppercase;
}

.cta:hover { 
    background: var(--gold); 
}

.btn-main-contact {
    background: linear-gradient(135deg, var(--gold), #ffae00);
    color: #000;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: var(--smooth);
}

.btn-main-contact:hover {
    background: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255,255,255,0.15);
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 208, 0, 0.2);
    border-color: var(--gold);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.rating-badge .stars {
    color: var(--gold);
    margin-right: 10px;
    letter-spacing: 2px;
}

.rating-badge .rating-text {
    font-family: var(--font-main);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
}

.scroll-indicator p {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-family: var(--font-main);
}

.mouse {
    width: 20px;
    height: 35px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--gold);
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 20px; }
}

.level-bar {
    width: 100%;
    height: 4px;
    background: #222;
    margin-top: 10px;
}

.level-fill {
    height: 100%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    transition: width 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.faq-card {
    position: relative;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 40px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-card:hover {
    border-color: var(--gold);
    background: #111;
}

.faq-bg-num {
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 15rem;
    font-family: var(--font-main);
    font-weight: 900;
    color: rgba(255, 215, 0, 0.02);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: 0.4s ease;
}

.faq-card:hover .faq-bg-num {
    color: rgba(255, 215, 0, 0.05);
    transform: scale(1.1);
}

.faq-plus {
    width: 30px;
    height: 30px;
    position: relative;
}

.faq-plus::before, .faq-plus::after {
    content: '';
    position: absolute;
    background: var(--gold);
    transition: 0.3s;
}

.faq-plus::before { width: 100%; height: 2px; top: 14px; left: 0; }
.faq-plus::after { width: 2px; height: 100%; left: 14px; top: 0; }

.faq-card.active .faq-plus { transform: rotate(45deg); }

.btn-main-contact {
    display: inline-flex;
    align-items: center;
    background: #ffd000;
    color: #000 !important;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
}

.btn-main-contact:hover {
    background: #ffffff !important;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 208, 0, 0.3);
    color: #000 !important;
}

.btn-main-contact:hover .arrow {
    transform: translateX(8px);
}

.btn-main-contact .arrow {
    margin-left: 15px;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-subtext {
    margin-top: 30px;
    color: #444;
    font-family: var(--font-main);
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.id-experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    background: var(--gold);
    color: #000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 20px 20px 0px rgba(255, 215, 0, 0.1);
    z-index: 5;
}

.exp-num {
    font-family: var(--font-main);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.exp-txt {
    font-size: 0.7rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.f-icon {
    font-family: var(--font-main);
    font-size: 1.5rem;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.f-info h3 {
    font-family: var(--font-main);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.f-info p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin: 0;
}

.services-cta-section, 
.cta-container {
    position: relative;
    z-index: 5;
}

.btn-main-contact {
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
    display: inline-flex !important;
    background-color: #ffd000 !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.btn-main-contact:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(255, 208, 0, 0.4) !important;
    cursor: pointer !important;
}