.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-gradient);
    z-index: 1;
}

.content { 
    position: relative; 
    z-index: 2; 
    padding: 0 70px 60px;
    max-width: 650px; 
}

.title-group {
    position: relative;
    margin-bottom: 10px;
}

.script {
    font-family: var(--font-accent);
    font-size: 75px;
    color: var(--gold);
    line-height: 1;
    position: relative;
    z-index: 2;
    margin-bottom: -28px;
    white-space: nowrap;
    display: block;
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    display: block;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 35px;
}

.services-section {
    background: var(--dark-bg);
    padding: 100px 70px;
}

.services-header { 
    margin-bottom: 60px; 
}

.subtitle { 
    color: var(--gold); 
    letter-spacing: 4px; 
    font-size: 17px; 
    display: block; 
    margin-bottom: 5px; 
    text-transform: uppercase;
}

.services-header h2 { 
    font-size: 50px; 
    font-weight: 700;
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-wide .wide-image-bg img {
    opacity: 0.45;
}

.card-wide:hover .wide-image-bg img {
    transform: scale(1.05);
    opacity: 0.8;
    filter: grayscale(0%); 
}

.card-wide {
    grid-column: span 2;
    flex-direction: row;
    background: var(--dark-bg);
    cursor: default;
    border: 1px solid #1a1a1a;
}

.card-wide:hover {
    transform: translateY(-10px) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                0 15px 25px rgba(255, 208, 0, 0.1) !important;
}

.wide-image-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.wide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #000 35%, transparent 100%);
    z-index: 2;
}

.wide-content {
    position: relative;
    z-index: 3;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wide-content h3 {
    font-size: 42px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.wide-content h3 span { 
    color: var(--gold); 
    font-weight: 300; 
}

.wide-content p {
    color: var(--gray-txt);
    max-width: 450px;
    margin-bottom: 35px;
    font-size: 18.5px;
}

.about-section {
    background: var(--dark-bg);
    padding: 150px 70px;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-visuals {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.img-large-wrapper {
    width: 80%;
    height: 550px;
    overflow: hidden;
    border: 1px solid rgba(255, 208, 0, 0.1);
    transition: var(--smooth);
}

.img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.8s ease;
}

.img-small-wrapper {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 50%;
    height: 300px;
    border: 10px solid var(--black);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visuals:hover .img-main {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-content h2 {
    font-size: 50px;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--white);
}

.about-content h2 span {
    color: var(--gold);
    font-weight: 300;
}

.about-p {
    color: var(--gray-light);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-values {
    margin-bottom: 50px;
}

.about-section .about-shape-square {
    top: -30px;
    left: -30px;
}

.about-section .about-shape-lines {
    bottom: -40px;
    left: 20%;
}

/* ============================================================
   SECCIÓN PRICING (MODIFICADA)
   ============================================================ */
.pricing {
    min-height: 100vh; /* min-height para que crezca en móvil */
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

/* Fix pixeleado: Aseguramos que la imagen cubra bien */
.bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.05); /* Menos zoom para evitar desenfoque */
}

.bg-slide.active { 
    opacity: 0.3; /* Bajamos un poco para que el texto resalte más */
    transform: scale(1); 
}

.pricing-interface {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    z-index: 2;
}

/* EL BOTÓN (CTA) - Antes no tenía estilo */
.cta-pricing {
    display: inline-block;
    width: 100%;
    background: var(--gold);
    color: #000;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
}

.cta-pricing:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.cta-pricing .arr {
    margin-left: 10px;
    transition: 0.3s;
}

/* PANEL DE DATOS */
.data-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: clamp(30px, 5vw, 60px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 500px; /* Ya no es fijo, es máximo */
    border-radius: 4px;
}

.big-price {
    font-size: clamp(4rem, 10vw, 6rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.cordobas-price {
    font-size: 0.4em; /* Ajusta según el tamaño principal */
    color: #888; /* Un gris elegante que no roba atención */
    font-weight: 500;
    margin-left: 8px;
}

.feat-list {
    list-style: none;
    margin: 30px 0;
}

.feat-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.feat-list .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    display: inline-block;
}

.info-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-btn {
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 15px;
}

.nav-btn.active {
    opacity: 1;
    border-left: 2px solid var(--gold);
    transform: translateX(10px);
}

.nav-btn:hover {
    opacity: 0.8;
}

@keyframes slideInPanel {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section {
    padding: 120px 5%;
    background: var(--dark-bg);
}

.contact-box {
    background: var(--black);
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    gap: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.contact-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(var(--gold), #ffae00);
}

.contact-text h2 {
    font-size: 52px;
    margin: 15px 0 25px;
    line-height: 1.1;
    color: var(--white);
}

.contact-text h2 span {
    color: var(--gold);
}

.contact-features {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.feat {
    color: var(--gray-light);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feat .check {
    color: var(--gold);
    margin-right: 6px;
}

.contact-cta {
    text-align: center;
}