/**
 * Profile Page Specific Styles
 * Meninas da Capital Theme
 * 
 * @package MeninasDaCapital
 * @author TMR
 * @version 1.0.0
 */

/* Single Profile Layout */
.single-profile {
    padding-top: 0;
}

/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 27, 46, 0.95));
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.profile-hero-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.profile-hero-image {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #00ff00;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-badge.online i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.profile-hero-info {
    padding: 20px 0;
}

.profile-title {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 25px;
    font-weight: bold;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.basic-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 20px;
    color: #cccccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

.info-item i {
    color: #d4af37;
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.location,
.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 1.1rem;
}

.location i,
.availability i {
    color: #d4af37;
    font-size: 1.2rem;
}

.contact-buttons-hero {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-whatsapp-hero,
.btn-phone-hero,
.btn-favorite {
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-whatsapp-hero {
    background: #25d366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-hero:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-phone-hero {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-phone-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-favorite {
    background: rgba(255, 255, 255, 0.1);
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-favorite:hover,
.btn-favorite.favorited {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

.price-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.price-item {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-item i {
    font-size: 1.3rem;
}

/* Profile Content Section */
.profile-content {
    padding: 80px 0;
}

.profile-tabs {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tab-navigation {
    display: flex;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.tab-button {
    flex: 1;
    padding: 20px 30px;
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover,
.tab-button.active {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
}

.tab-content {
    min-height: 500px;
}

.tab-pane {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-pane h2 {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.tab-pane h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

/* About Tab */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-excerpt {
    background: rgba(212, 175, 55, 0.1);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #d4af37;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    font-style: italic;
}

.profile-description {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.profile-description p {
    margin-bottom: 20px;
}

.characteristics,
.specialties {
    margin-bottom: 30px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.tag.specialty {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Gallery Tab */
.gallery-content {
    text-align: center;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    color: #cccccc;
    font-style: italic;
    margin-top: 30px;
}

.gallery-note i {
    color: #d4af37;
    margin-right: 10px;
}

/* Services Tab */
.services-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-options {
    margin-bottom: 40px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.service-item.available {
    border-color: rgba(0, 255, 0, 0.3);
    background: rgba(0, 255, 0, 0.05);
}

.service-item i {
    color: #d4af37;
    font-size: 1.5rem;
}

.service-item.available i {
    color: #00ff00;
}

.pricing-section {
    background: rgba(212, 175, 55, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pricing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.duration {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price {
    color: #d4af37;
    font-size: 2rem;
    font-weight: bold;
}

.pricing-note {
    margin-top: 25px;
    color: #cccccc;
    font-style: italic;
    text-align: center;
}

.pricing-note i {
    color: #d4af37;
    margin-right: 10px;
}

/* Contact Tab */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.contact-method.whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-method.phone {
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-method.email {
    border-color: rgba(66, 165, 245, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.contact-method.whatsapp .contact-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.contact-method.phone .contact-icon {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.contact-method.email .contact-icon {
    background: rgba(66, 165, 245, 0.2);
    color: #42a5f5;
}

.contact-info h3 {
    color: #d4af37;
    margin-bottom: 10px;
    text-align: center;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 20px;
}

.contact-button {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.submit-button {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.contact-notes {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.contact-notes ul {
    list-style: none;
    padding: 0;
}

.contact-notes li {
    color: #cccccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-notes i {
    color: #00ff00;
}

/* Related Profiles */
.related-profiles {
    background: rgba(0, 0, 0, 0.2);
    padding: 80px 0;
    margin-top: 60px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .profile-hero-content {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .profile-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 120px 0 40px;
    }
    
    .profile-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-image {
        height: 350px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .profile-title {
        font-size: 2.2rem;
    }
    
    .basic-info {
        justify-content: center;
    }
    
    .location-info {
        justify-content: center;
    }
    
    .contact-buttons-hero {
        justify-content: center;
    }
    
    .price-info {
        justify-content: center;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 1 50%;
        min-width: 120px;
    }
    
    .tab-pane {
        padding: 20px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .pricing-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-title {
        font-size: 1.8rem;
    }
    
    .basic-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp-hero,
    .btn-phone-hero,
    .btn-favorite {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .tab-button {
        flex: 1 1 100%;
        font-size: 0.95rem;
        padding: 15px 20px;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
}

/* Custom Lightbox */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-lightbox.show {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #d4af37;
    transform: scale(1.1);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: translateX(400px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 350px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #00ff00;
}

.notification-error {
    border-left-color: #ff4444;
}

.notification-warning {
    border-left-color: #ffaa00;
}

.notification-info {
    border-left-color: #4488ff;
}

.notification-close {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #ffffff;
}

