:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B89B35;
    --light-gold: #E8C55A;
    --dark-blue-bg: #0A2342;
    --white: #FFFFFF;
    --light-gray: #EEEEEE;
    --medium-gray: #CCCCCC;
    --dark-gray: #333333;
    --logo: #5D283A;
    --font-family: 'Space Grotesk', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--logo);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(to top, var(--logo) 2%, transparent 30%), url('img/4928.jpg');
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
    position: relative;
}

.hero-content {
    max-width: 60%;
}

.logo {
    width: 150px;
    margin-bottom: 80px;
    border-radius: 4px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.main-title {
    font-family: var(--font-family);
    font-size: 68px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.main-title b,
.section-title b {
    color: var(--dark-gold);
    text-decoration: none;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.main-title u,
.section-title u {
    text-decoration: none;
}

.subtitle {
    font-size: 22px;
    font-weight: 400;
    color: var(--light-gray);
    line-height: 1.5;
    margin-top: 22px;
    max-width: 75%;
}

.cta-group {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn {
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    font-family: var(--font-family);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-principal {
    background: var(--primary-gold);
    color: var(--dark-blue-bg);
    border: 1px solid var(--primary-gold);
    box-shadow: var(--box-shadow);
}

.btn-principal:hover {
    background: var(--dark-gold);
    box-shadow: 0px 0px 20px 0px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.testimonials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-pics {
    display: flex;
}

.testimonial-pics img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    margin-left: -10px;
}

.testimonial-pics img:first-child {
    margin-left: 0;
}

.testimonials span {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
}

/* General Section Styling */
section {
    padding: 120px 0;
}

.section-title {
    font-family: var(--font-family);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    max-width: 80%;
    margin-bottom: 40px;
}

.two-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.two-columns>.text-content {
    flex-basis: 60%;
}

.two-columns>.image-content {
    flex-basis: 40%;
}

.two-columns>.image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.two-columns>.image-content img:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.text-content p {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.6;
    margin-top: 22px;
}

.separator,
.separator-footer {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--dark-blue-bg));
}

.separator-footer {
    background: linear-gradient(270deg, var(--primary-gold), var(--dark-blue-bg));
}

/* Exclusive Group Section */
.exclusive-group-section .image-content {
    flex-basis: 30%;
}

.features-list {
    display: flex;
    gap: 30px;
    margin-top: 18px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--primary-gold);
    margin-right: 10px;
    font-size: 20px;
    min-width: 24px;
}

/* Benefits Section */
.benefits-section {
    text-align: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    text-align: left;
}

.section-header .subtitle {
    max-width: none;
    margin-top: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    border: 1px solid var(--primary-gold);
    border-radius: 18px;
    padding: 50px 30px 30px;
    margin-top: 15px;
    text-align: left;
    position: relative;
    background: rgba(13, 42, 79, 0.8);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--light-gold);
}

.card-icon {
    width: 72px;
    height: 72px;
    background-color: var(--primary-gold);
    color: var(--dark-blue-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    position: absolute;
    top: -36px;
    left: 30px;
    box-shadow: var(--box-shadow);
}

.benefit-card h5 {
    color: var(--primary-gold);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 30px;
    font-family: var(--font-family);
}

.benefit-card p {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.6;
    margin-top: 12px;
    flex-grow: 1;
}

.benefit-card a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    transition: var(--transition);
}

.benefit-card a:hover {
    color: var(--light-gold);
    transform: translateX(5px);
}

.benefit-card a i {
    margin-left: 8px;
    transition: var(--transition);
}

.benefit-card a:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background-color: var(--white);
    background-image: url('img/scales-of-justice.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding-top: 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 35, 66, 0.85);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.arrow-icon-wrapper {
    position: relative;
    top: -50px;
}

.arrow-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--dark-blue-bg);
    box-shadow: var(--box-shadow);
}

.cta-section .main-title {
    color: var(--white);
    max-width: 60%;
    margin: 90px auto 0;
}

.cta-section .subtitle {
    color: var(--light-gray);
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
    max-width: 50%;
    margin: 22px auto 0;
}

.cta-section .cta-group {
    justify-content: center;
}

.cta-section .testimonials span.dark-text {
    color: var(--light-gold);
    font-weight: 600;
}

.dark-text {
    text-shadow: 2px 2px 5px rgb(0, 0, 0);
}

/* About Section */
.about-section .text-content {
    flex-basis: 60%;
}

.about-section .image-content {
    flex-basis: 30%;
    position: relative;
}

.about-section .image-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    z-index: -1;
}

.social-icons {
    margin-top: 18px;
    display: flex;
    gap: 18px;
}

.social-icons a {
    color: var(--primary-gold);
    font-size: 24px;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
}

.social-icons a:hover {
    transform: scale(1.1);
    background: rgba(212, 175, 55, 0.2);
    color: var(--light-gold);
}

/* FAQ Section */
.faq-section {
    text-align: center;
}

.faq-section .section-header {
    margin-bottom: 80px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: left;
}

.accordion-item {
    border: 1px solid var(--primary-gold);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--light-gold);
}

.accordion-header {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(212, 175, 55, 0.15);
}

.accordion-header.active {
    color: var(--primary-gold);
    background-color: rgba(212, 175, 55, 0.2);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content p {
    padding: 20px 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logo-footer {
    width: 150px;
    transition: var(--transition);
}

.logo-footer:hover {
    transform: scale(1.05);
}

footer p {
    font-size: 18px;
    font-weight: 400;
}

.webcodex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.webcodex a {
    text-decoration: none;
    color: var(--dark-gold);
    transition: var(--transition);
}

.webcodex a:hover {
    color: var(--light-gold);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--dark-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-gold);
    transform: translateY(-3px);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .main-title {
        font-size: 39px;
    }

    .section-title {
        font-size: 30px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .subtitle {
        max-width: 100%;
    }

    .cta-group {
        flex-direction: column;
    }

    .two-columns {
        flex-direction: column;
    }

    .exclusive-group-section .two-columns {
        flex-direction: column-reverse;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefit-card {
        padding: 30px 20px 20px;
    }

    .benefit-card h5 {
        font-size: 24px;
    }

    .cta-section .main-title {
        max-width: 100%;
    }

    .cta-section .subtitle {
        max-width: 100%;
    }

    .arrow-icon-wrapper {
        top: -30px;
    }

    .arrow-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .about-section .two-columns {
        flex-direction: column;
    }

    .text-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    footer .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 30px;
    }

    .section-title {
        font-size: 24px;
    }

    .features-list {
        flex-direction: column;
        gap: 0;
    }

    .benefit-card {
        text-align: center;
    }

    .card-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .exclusive-group-section .image-content {
        max-width: 80%;
    }

    .about-section .image-content {
        max-width: 60%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 20px;
        left: 20px;
    }
}