body {
    font-family: 'Raleway', sans-serif;
    background-color: #000000;
    color: white;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: float 15s infinite linear;
    border: 2px solid #ff9e00;
}

.shape:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="11" fill="white"/></svg>');
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polygon points="12 2 22 22 2 22" fill="white"/></svg>');
    animation-delay: -5s;
}

.shape:nth-child(3) {
    top: 30%;
    right: 30%;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><rect width="20" height="20" x="2" y="2" fill="white"/></svg>');
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,158,0,0.1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0.1;
    z-index: -2;
    animation: parallax 20s infinite linear;
}

@keyframes parallax {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: #ff9e00;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-asesoria {
    background: linear-gradient(45deg, #ff9e00, #ffc107);
    color: #000000;
    font-weight: 700;
    font-size: 24px;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    margin: 20px auto;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,158,0,0.3);
}

.btn-asesoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,158,0,0.5);
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}
.video-container video {
    width: 100%;
    border-radius: 4px;
}
.btn-primary {
    background: #ff9e00;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,158,0,0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

@keyframes buttonTilt {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(10deg); }
}

.btn-primary:hover {
    animation: buttonTilt 1s infinite;
    transform-origin: center;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 100%;
        height: 100%;
        opacity: 0;
    }
}
.form-container {
    background: #1a1a1a;
    border: 2px solid #ff9e00;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.form-control {
    background: #2a2a2a;
    border: 1px solid #ff9e00;
    color: white;
    padding: 12px;
}
.form-control:focus {
    background: #333;
    border-color: #ffc107;
    color: white;
    box-shadow: 0 0 10px rgba(255,158,0,0.3);
}
footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info {
    display: inline-block;
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #ff9e00;
    margin-right: 10px;
}

.quick-links {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links i {
    color: #ff9e00;
    margin-right: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: #ff9e00;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    footer .col-md-4 {
        margin-bottom: 30px;
    }
    
    .social-links {
        margin-bottom: 20px;
    }
}

/* Nuevos estilos para elementos destacados */
.highlight-box {
    background: linear-gradient(45deg, rgba(26,26,26,0.9), rgba(26,26,26,0.7));
    border-left: 4px solid #ff9e00;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.icon-feature {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon-feature i {
    color: #ff9e00;
    margin-right: 10px;
}

/* Añade estos estilos al bloque de estilos existente */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.9), rgba(26,26,26,0.95));
    border-bottom: 2px solid #ff9e00;
    margin-bottom: 50px;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-col {
    flex: 1;
    min-width: 0;
}

.hero-image-container {
    position: relative;
    padding-right: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 15px;
    border: 3px solid #ff9e00;
    box-shadow: 0 10px 30px rgba(255,158,0,0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.hero-content {
    padding: 20px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff9e00;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: white;
}

.highlight-text {
    color: #ff9e00;
    font-weight: 600;
}

.stats-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255,158,0,0.1);
    border: 1px solid #ff9e00;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9e00;
}

.stat-label {
    font-size: 0.9rem;
    color: white;
}

/* Aseguramos responsividad */
@media (max-width: 991px) {
    .hero-row {
        flex-direction: column;
    }

    .hero-col {
        width: 100%;
    }

    .hero-image-container {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

.journey-section {
    padding: 60px 0;
    position: relative;
    border-top: 1px solid #ff9e00;
    border-bottom: 1px solid #ff9e00;
    background: rgba(0, 0, 0, 0.95);
}

.journey-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.bubble-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    gap: 1rem;
    background: rgba(255,158,0,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,158,0,0.2);
}

.bubble-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,158,0,0.2);
}

.bubble-icon {
    width: 60px;
    height: 60px;
    background: #ff9e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble-icon i {
    font-size: 24px;
    color: #000;
}

.bubble-content {
    flex: 1;
}

.bubble-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff9e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
}

.bubble-content h4 {
    color: #ff9e00;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.bubble-content p {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .bubble-item {
        min-width: 100%;
    }
}

.section-title {
    color: #ff9e00;
    margin-bottom: 2rem;
    position: relative;
}

.journey-steps {
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,158,0,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(255,158,0,0.2);
}

.step-number {
    background: #ff9e00;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: #ff9e00;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.journey-image {
    position: relative;
    padding: 2rem;
}

.journey-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.journey-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed #ff9e00;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.decoration-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #ff9e00;
    border-radius: 20px;
    top: 0;
    left: 0;
    opacity: 0.2;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 991px) {
    .journey-section {
        padding: 40px 0;
    }
    
    .step-item {
        margin-bottom: 1.5rem;
    }
    
    .journey-image {
        margin-top: 3rem;
    }
}

.benefits-section {
    padding: 4rem 0;
    position: relative;
}

.benefits-list {
    position: relative;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255,158,0,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,158,0,0.2);
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    background: #ff9e00;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #000;
    font-size: 1.5rem;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    color: #ff9e00;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.benefit-content p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.benefits-image {
    position: relative;
    padding: 2rem;
}

.benefits-image img {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255,158,0,0.2);
}

.benefits-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px dashed #ff9e00;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@media (max-width: 991px) {
    .benefits-image {
        margin-top: 3rem;
    }
    
    .benefit-item {
        margin-bottom: 1.5rem;
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-section, .benefits-section, .journey-section {
        padding: 20px 0;
    }

    .benefit-item, .bubble-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .hero-title, .section-title {
        font-size: 1.5rem;
    }

    .hero-text, .benefit-content p, .bubble-content p {
        font-size: 0.9rem;
    }
}

.countdown-container {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255,158,0,0.1);
    border-radius: 15px;
    border: 1px solid rgba(255,158,0,0.2);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.8);
    color: #ff9e00;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,158,0,0.3);
}

.countdown-item span {
    font-size: 0.8rem;
    color: #fff;
    margin-top: 5px;
    font-weight: normal;
}

.countdown-item.expired {
    background: rgba(255, 0, 0, 0.2);
    color: #fff;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .countdown {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
        font-size: 1.5rem;
    }

    .countdown-item span {
        font-size: 0.7rem;
    }
}

.text-daa520 {
    color: #ff9e00 !important;
}