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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.5;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
}

.text-gold {
    color: #B08A4A;
}

.btn-primary {
    background-color: #B08A4A;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 0.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #96753d;
    transform: translateY(-2px);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
}

.header-initial {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    padding: 1.25rem 0;
}

.header-scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.75rem 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.flex { display: flex; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }

.logo-img {
    height: 4rem;
    width: auto;
    object-fit: contain;
    transition: all 0.5s ease;
}

.header-scrolled .logo-img {
    height: 3rem;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #B08A4A;
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-mobile {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 10rem;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000000, rgba(0, 0, 0, 0.95), transparent);
    z-index: 10;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 20;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-label .line {
    height: 1px;
    width: 3rem;
    background-color: #B08A4A;
}

.hero-label span {
    color: #B08A4A;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.hero-title {
    font-size: 2.25rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 42rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

.btn-hero {
    position: relative;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    overflow: hidden;
}

.btn-shine {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transform: skewX(-12deg) translateX(-100%);
    transition: transform 1s ease;
}

.btn-hero:hover .btn-shine {
    transform: skewX(-12deg) translateX(100%);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.avatars {
    display: flex;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid #000000;
    background-color: #1e293b;
    overflow: hidden;
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-features {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

@media (min-width: 768px) {
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.challenges {
    padding: 6rem 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 1.875rem;
    color: #5E3E20;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    color: #475569;
    font-size: 1.125rem;
}

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

@media (min-width: 768px) {
    .challenges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.challenge-card {
    padding: 2.5rem;
    border: 1px solid #f1f5f9;
    background-color: rgba(249, 247, 242, 0.3);
    border-radius: 0.125rem;
    transition: all 0.5s ease;
}

.challenge-card:hover {
    background-color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #B08A4A;
    transition: all 0.5s ease;
}

.challenge-card:hover .card-icon {
    background-color: #B08A4A;
    color: #ffffff;
}

.challenge-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5E3E20;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.challenge-card:hover h3 {
    color: #B08A4A;
}

.challenge-card p {
    color: #475569;
    font-weight: 300;
}

.challenges-footer {
    margin-top: 4rem;
    text-align: center;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #B08A4A;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    gap: 1.25rem;
}

.about {
    padding: 6rem 0;
    background-color: #F9F7F2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image-container {
    position: relative;
}

.about-frame-top {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    border-top: 2px solid #B08A4A;
    border-left: 2px solid #B08A4A;
    opacity: 0.3;
}

.about-frame-bottom {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    border-bottom: 2px solid #B08A4A;
    border-right: 2px solid #B08A4A;
    opacity: 0.3;
}

.about-img-wrapper {
    position: relative;
    z-index: 10;
    overflow: hidden;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-img {
    width: 100%;
    display: block;
    transition: transform 1s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -2.5rem;
    left: 2.5rem;
    background-color: #000000;
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 20;
    display: none;
}

@media (min-width: 768px) {
    .experience-badge {
        display: block;
    }
}

.badge-title {
    color: #B08A4A;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.badge-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    opacity: 0.6;
}

.about-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(176, 138, 74, 0.1);
    color: #B08A4A;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(176, 138, 74, 0.2);
}

.about-title {
    font-size: 2.25rem;
    color: #5E3E20;
    margin-bottom: 2rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #334155;
    font-size: 1.125rem;
    font-weight: 300;
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    padding: 1rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.about-feature-item span {
    color: #1e293b;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.process {
    padding: 6rem 0;
    background-color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    background-color: #F9F7F2;
    padding: 2.5rem;
    border-radius: 0.125rem;
    border: 1px solid #f1f5f9;
    transition: border-color 0.3s ease;
}

.process-card:hover {
    border-color: #B08A4A;
}

.process-step {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(176, 138, 74, 0.2);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.process-card:hover .process-step {
    color: #B08A4A;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5E3E20;
    margin-bottom: 1rem;
}

.process-card p {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 300;
}

.benefits {
    padding: 6rem 0;
    background-color: #5E3E20;
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-title {
    font-size: 1.875rem;
    margin-bottom: 2.5rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .benefits-title {
        font-size: 3rem;
    }
}

.benefits-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .benefits-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #B08A4A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #B08A4A;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 300;
}

.commitment-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #0f172a;
    position: relative;
}

.card-line {
    width: 4rem;
    height: 4px;
    background-color: #B08A4A;
    margin-bottom: 2rem;
}

.commitment-card h3 {
    font-size: 1.5rem;
    color: #5E3E20;
    margin-bottom: 1.5rem;
}

.commitment-card p {
    color: #475569;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-size: 1.125rem;
}

.quote-box {
    padding: 2rem;
    background-color: #F9F7F2;
    border-left: 4px solid #B08A4A;
}

.quote-box p {
    font-style: italic;
    color: #334155;
    margin-bottom: 0;
}

.card-glow {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(176, 138, 74, 0.2);
    border-radius: 9999px;
    filter: blur(48px);
}

.final-cta {
    padding: 6rem 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background-color: #B08A4A;
    border-radius: 9999px;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-cta h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .final-cta h2 {
        font-size: 3rem;
    }
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-final {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-final .arrow {
    transition: transform 0.3s ease;
}

.btn-final:hover .arrow {
    transform: translateX(0.5rem);
}

.cta-subtext {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    padding-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    height: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-info p {
    font-size: 0.875rem;
    max-width: 20rem;
}

.footer h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #B08A4A;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.75rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    color: #ffffff;
    padding: 1rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.float-ping {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float svg {
    position: relative;
    z-index: 10;
}
