/* Disney Page Specific Styles */
.disney-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.disney-section:last-child {
    border-bottom: none;
}

.disney-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.disney-row.reverse {
    flex-direction: row-reverse;
}

.disney-text {
    flex: 1;
}

.disney-text h2 {
    color: var(--primary-color, #004AAD);
    /* Fallback color added */
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.disney-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.disney-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.disney-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.disney-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {

    .disney-row,
    .disney-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .disney-text h2 {
        font-size: 1.75rem;
    }
}

/* FAQ Section Styles */
.disney-faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.disney-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.disney-faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.disney-faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s;
}

.disney-faq-question:hover {
    background-color: #f0f8ff;
}

.disney-faq-question i {
    color: var(--primary-color, #004AAD);
    transition: transform 0.3s;
}

.disney-faq-item.active .disney-faq-question i {
    transform: rotate(45deg);
    /* Transforms plus to x */
}

.disney-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.disney-faq-item.active .disney-faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

/* Disney Price Cards */
.disney-carousel-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for buttons */
}

.disney-price-card {
    min-width: 280px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    text-align: left;
    margin-bottom: 15px;
    /* Spacing */
}

.disney-price-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.disney-card-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.disney-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.disney-card-tag {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.disney-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.disney-card-location {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.disney-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    font-size: 0.85rem;
    color: #555;
}

.disney-card-features li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.disney-card-features i {
    color: #333;
    font-size: 0.8rem;
}

.disney-card-features .highlight {
    color: #28a745;
    font-weight: 600;
}

.disney-card-price {
    margin-top: auto;
    margin-bottom: 15px;
}

.disney-card-price small {
    display: block;
    font-size: 0.75rem;
    color: #777;
}

.disney-card-price strong {
    font-size: 1.2rem;
    color: #333;
}

.disney-btn-site {
    background-color: #ffd700;
    color: #000;
    font-weight: 600;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.disney-btn-site:hover {
    background-color: #ffcc00;
}

.disney-btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    font-weight: 600;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.disney-btn-whatsapp:hover {
    background-color: #128c7e;
}

.disney-card-footer-note {
    font-size: 0.7rem;
    color: #999;
    text-align: center;
    margin-top: 10px;
    display: block;
}

.offer-badge {
    background-color: #cddc39;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 10px rgba(188, 24, 136, 0.3);
    transform: translateY(-2px);
    color: white;
}