/* ============================================
   VPS Windows Barato Page Styles
   Modern, economy-focused design
   ============================================ */

/* Hero Section Container */
.vps-windows-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vps-windows-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(106, 126, 157, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vps-windows-hero .container {
    position: relative;
    z-index: 1;
}

/* Hero Section Styles */
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #455061;
}

.gradient-text {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.hero-feature:hover {
    border-color: #51a7ff;
    background: #eff6ff;
    transform: translateX(4px);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    stroke: #51a7ff;
    stroke-width: 2.5;
}

.hero-feature span {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Price Badge - Economy theme with project colors */
.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #455061 0%, #6a7e9d 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(69, 80, 97, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(69, 80, 97, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(106, 126, 157, 0.5);
    }
}

.price-badge svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Economy Highlight Section */
.economy-section {
    margin: 48px 0;
}

.economy-highlight {
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8ed 100%);
    border-left: 4px solid #455061;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.economy-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(69, 80, 97, 0.15);
}

.economy-highlight h3 {
    color: #455061;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.economy-highlight p {
    color: #6a7e9d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.economy-highlight ul {
    margin-top: 16px;
    padding-left: 24px;
    color: #455061;
}

.economy-highlight ul li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
}

.economy-highlight ul li::marker {
    color: #6a7e9d;
    font-weight: bold;
}

/* Savings Comparison Table */
.savings-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin: 32px 0;
    border: 1px solid rgba(81, 167, 255, 0.1);
}

.savings-table table {
    width: 100%;
    border-collapse: collapse;
}

.savings-table th {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    padding: 18px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.savings-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: #374151;
    vertical-align: middle;
}

.savings-table tr:last-child td {
    border-bottom: none;
}

.savings-table tr:hover {
    background: #f9fafb;
}

.savings-table td:first-child {
    font-weight: 600;
    color: #1f2937;
}

.savings-table strong {
    color: #455061;
    font-size: 18px;
    font-weight: 700;
}

.check-icon {
    color: #51a7ff;
    font-weight: bold;
    font-size: 18px;
}

.x-icon {
    color: #6a7e9d;
    font-weight: bold;
    font-size: 18px;
    opacity: 0.5;
}

/* Perfect For Section */
.perfect-for-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 64px 0;
    margin: 64px 0;
    position: relative;
    overflow: hidden;
}

.perfect-for-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(81, 167, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

/* Use Case Cards */
.use-case-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    transition: height 0.3s ease;
}

.use-case-card:hover::before {
    height: 100%;
}

.use-case-card:hover {
    border-color: #51a7ff;
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(81, 167, 255, 0.2);
}

.use-case-card h4 {
    color: #455061;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.use-case-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(81, 167, 255, 0.3);
    transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 12px rgba(81, 167, 255, 0.4);
}

.use-case-card h4 {
    color: #455061;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.use-case-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Hero CTA Enhancement for Barato page */
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta .btn-primary,
.hero-cta .btn-lg {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(81, 167, 255, 0.3);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 167, 255, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.hero-cta .btn-primary svg {
    width: 20px;
    height: 20px;
}

.hero-cta .btn-outline {
    background: transparent;
    color: #51a7ff;
    border: 2px solid #51a7ff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.hero-cta .btn-outline:hover {
    background: #51a7ff;
    color: white;
    transform: translateY(-2px);
}

/* Plan Cards - Economy Theme */
.vps-plans-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #51a7ff 0%, #3b82f6 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-card:hover::before {
    transform: scaleX(1);
}

.plan-card:hover {
    border-color: #51a7ff;
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(81, 167, 255, 0.15);
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #455061;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: #51a7ff;
}

.plan-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: #51a7ff;
}

.plan-price .period {
    font-size: 16px;
    color: #6b7280;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 24px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.plan-feature:hover {
    background: #f9fafb;
}

.plan-feature svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #51a7ff;
    margin-top: 2px;
}

.plan-feature span {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(81, 167, 255, 0.3);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(81, 167, 255, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.benefit-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #f9fafb;
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(81, 167, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(81, 167, 255, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #455061;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(81, 167, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #51a7ff;
    box-shadow: 0 4px 12px rgba(81, 167, 255, 0.1);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 600;
    color: #455061;
    margin: 0;
    flex-grow: 1;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: #51a7ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(81, 167, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.final-cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(81, 167, 255, 0.4);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(81, 167, 255, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.cta-buttons .btn-primary svg {
    width: 20px;
    height: 20px;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.guarantee-text svg {
    width: 18px;
    height: 18px;
    color: #51a7ff;
}

/* Section Titles */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #455061;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #6a7e9d;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vps-windows-hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }

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

    .final-cta-content h2 {
        font-size: 32px;
    }

    .savings-table {
        overflow-x: auto;
    }

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

    .cta-buttons .btn-primary,
    .cta-buttons .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

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

    .final-cta-content h2 {
        font-size: 28px;
    }

    .economy-section {
        margin: 32px 0;
    }

    .economy-highlight {
        padding: 24px 20px;
    }

    .economy-highlight h3 {
        font-size: 20px;
    }

    .economy-highlight ul {
        padding-left: 20px;
    }

    .use-case-card {
        padding: 20px;
    }

    .plan-card {
        padding: 24px;
    }

    .perfect-for-section {
        padding: 48px 0;
    }

    .why-choose-section,
    .faq-section,
    .vps-plans-section {
        padding: 60px 0;
    }
}
