/* Offer page specific styles */

/* Floating trust badge */
.floating-trust-badge {
    position: fixed;
    top: 160px; 
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 193, 7, 0.2);
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 6s ease-in-out infinite;
}

.floating-trust-badge:hover {
    transform: translateZ(0) translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 193, 7, 0.3);
    border-color: rgba(255, 193, 7, 0.5);
}

.trust-badge-icon {
    font-size: 32px;
    margin-bottom: 10px;
    animation: pulse-glow 2s infinite;
}

.trust-badge-count {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.trust-badge-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
}

.trust-badge-cta {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
    width: 100%;
    text-align: center;
    transition: color 0.3s ease;
}

.trust-badge-cta:hover {
    color: #ffffff;
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 5px rgba(255, 193, 7, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 193, 7, 0.7); }
    100% { text-shadow: 0 0 5px rgba(255, 193, 7, 0.3); }
}

@keyframes float {
    0% { transform: translateZ(0) translateY(0); }
    50% { transform: translateZ(0) translateY(-10px); }
    100% { transform: translateZ(0) translateY(0); }
}

/* Hide on small screens */
@media (max-width: 768px) {
    .floating-trust-badge {
        right: 15px;
        top: unset;
        bottom: 15px;
        max-width: 140px;
        padding: 10px;
    }
    
    .trust-badge-icon {
        font-size: 24px;
    }
    
    .trust-badge-count {
        font-size: 20px;
    }
    
    .trust-badge-text {
        font-size: 12px;
    }
    
    .trust-badge-cta {
        font-size: 11px;
    }
}

/* Animation for pulsing text */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Minified floating code for background elements */
.code-element-mini {
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    font-size: 14px;
    animation: float 15s ease-in-out infinite;
}

/* Oferta-specific styles */
.separator {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px auto;
    max-width: 85%;
}

.offer-section {
    padding: 50px 0;
}

.offer-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
}

.offer-section p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.offer-section strong {
    color: var(--white);
    font-weight: 600;
}

.offer-section ul {
    margin: 30px 0;
    padding-left: 20px;
}

.offer-section li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-box {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 40px;
    width: 45%;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-container {
    margin: 50px 0;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-box {
    background-color: rgba(255, 193, 7, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    margin: 50px 0;
    text-align: center;
}

.guarantee-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.buy-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 20px auto;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.buy-button:hover {
    background-color: #e0aa00;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.5);
}

.pillar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin: 40px 0;
}

.pillar-card {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    width: 30%;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.pillar-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pillar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.pillar-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.topic-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 30px;
    margin: 30px 0;
}

/* Webinar schedule styles */
.webinar-schedule {
    margin: 50px 0;
}

.webinar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.webinar-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.webinar-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.webinar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.webinar-date {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.webinar-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-container {
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

/* Trust banner styles */
.trust-banner {
    background: linear-gradient(to right, #ffc107, #ff9800);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.trust-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 15s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.trust-icon {
    font-size: 28px;
    margin-right: 15px;
    animation: bounce 1.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.trust-message {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    flex-grow: 1;
}

.trust-highlight {
    font-weight: 800;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.trust-cta {
    margin-left: 20px;
}

.trust-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.trust-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Floating code elements positioning */
.code-element-1 {
    top: 12%;
    left: 38%;
}

.code-element-2 {
    top: 35%;
    right: 15%;
}

.code-element-3 {
    bottom: 30%;
    left: 20%;
}

.code-element-4 {
    top: 19%;
    right: 6%;
}

.code-element-5 {
    bottom: 5%;
    right: 10%;
}

/* Tech icons positioning */
.tech-icon.react-icon {
    top: 3%;
    left: 55%;
}

.tech-icon.nodejs-icon {
    bottom: 35%;
    left: 15%;
}

.tech-icon.cursor-icon {
    bottom: 9%;
    left: 30%;
}

.tech-icon.angular-icon {
    top: 40%;
    left: 80%;
}

.tech-icon.typescript-icon {
    bottom: 20%;
    right: 22%;
}

.tech-icon.nextjs-icon {
    top: 25%;
    right: 25%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .trust-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .trust-message {
        margin-bottom: 15px;
    }
    
    .trust-cta {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .trust-button {
        width: 100%;
        padding: 12px;
    }
    
    .topic-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
    
    .pricing-card {
        width: 90%;
    }
    
    .pillar-card {
        width: 90%;
    }
}
