/* Price Pages Styling */

.price-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.price-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.price-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.price-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.price-hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Breadcrumb */
.price-breadcrumb {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-breadcrumb a {
    color: #667eea;
    text-decoration: none;
    margin-right: 8px;
}

.price-breadcrumb a:hover {
    text-decoration: underline;
}

.price-breadcrumb span {
    color: #666;
    margin: 0 5px;
}

/* Price Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.price-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.price-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.price-card-content {
    padding: 20px;
}

.price-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.price-card-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price-card-features {
    margin-bottom: 15px;
}

.price-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card-features li {
    padding: 5px 0;
    color: #555;
    font-size: 0.9rem;
}

.price-card-features li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

.price-card-price {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.price-unit {
    font-size: 0.9rem;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
}

.price-cta-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.price-cta-btn:hover {
    background: #218838;
    transform: scale(1.02);
    color: white;
}

.price-cta-btn i {
    margin-right: 8px;
}

/* SEO Content Section */
.price-seo-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.price-seo-content h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.price-seo-content h3 {
    color: #444;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.price-seo-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.price-seo-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.price-seo-content ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* FAQ Section */
.price-faq {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.price-faq h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 15px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.price-contact-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.price-contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.price-contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn-whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.05);
    color: white;
}

.contact-btn-call {
    background: white;
    color: #667eea;
}

.contact-btn-call:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-hero h1 {
        font-size: 1.8rem;
    }
    
    .price-hero p {
        font-size: 1rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .price-seo-content,
    .price-faq,
    .price-contact-cta {
        padding: 25px 20px;
    }
    
    .price-seo-content h2,
    .price-faq h2 {
        font-size: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Loading Animation */
.price-loading {
    text-align: center;
    padding: 50px;
}

.price-loading i {
    font-size: 3rem;
    color: #667eea;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State */
.price-empty {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.price-empty i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.price-empty h3 {
    color: #666;
    margin-bottom: 10px;
}

.price-empty p {
    color: #999;
}
