/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #dc2626;
    /* Vermelho do logo */
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --card-bg: rgba(220, 38, 38, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --red-accent: #dc2626;
    --red-light: #ef4444;
    --red-dark: #b91c1c;
    --green-accent: #25D366;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--primary-color);
    min-height: 100vh;
    min-height: 100dvh;
    /* Dynamic viewport height for mobile */
}

/* Profile Container */
.profile-container {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow-x: hidden;
}

/* Background */
.profile-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-color);
}

.profile-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-image, url('fundos/fundo1.jpg')) center/cover !important;
    filter: brightness(0.3) contrast(1.1);
}

.skate-park-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

/* Profile Content */
.profile-content {
    position: relative;
    z-index: 1;
    padding: 0px 15px 15px;
    max-width: 380px;
    margin: 0 auto;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Desktop elements - shown by default, styled for desktop */
.desktop-sidebar,
.desktop-main {
    display: block;
}

/* Mobile layout - stack elements vertically */
.desktop-sidebar {
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
}

.desktop-main {
    flex: 1;
}

/* Mobile specific - remove desktop spacing */
.desktop-sidebar .profile-header {
    margin-bottom: 0;
}

.desktop-main .action-buttons {
    margin-top: 0;
    margin-bottom: 3px;
}

.desktop-main .instagram-section,
.desktop-main .facebook-section,
.desktop-main .whatsapp-section,
.desktop-main .telegram-section {
    margin-bottom: 3px;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 0px;
    padding-top: 0px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 2px;
    flex-shrink: 0;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-avatar img {
    width: 63px;
    height: 63px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    object-fit: cover;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: var(--red-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--secondary-color);
    color: white;
    font-size: 9px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.profile-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    display: none;
}

.profile-bio {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    display: block;
    text-align: left;
    margin: 0;
    white-space: normal;
}


/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 0px;
    margin-bottom: 3px;
    flex-shrink: 0;
}

.action-buttons button {
    padding: 10px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    min-height: 40px;
    width: 100%;
    margin: 0 auto;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-accent) 0%, var(--red-light) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: white;
    border: 2px solid var(--red-accent);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(220, 38, 38, 0.2);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: transparent;
    color: white;
    border: 2px solid var(--red-accent);
}

.btn-tertiary:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--red-accent);
    transform: translateY(-2px);
}

/* Social Sections - each button is a full-width row */
.instagram-section,
.facebook-section,
.whatsapp-section,
.telegram-section {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    box-shadow: none;
    border: none;
    backdrop-filter: blur(20px);
}

.modal-header {
    padding: 15px 20px;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.close-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.close-btn:hover {
    background: var(--red-accent);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    background: transparent;
}



/* Instagram Button */
.instagram-section {
    text-align: center;
}

.instagram-btn,
.facebook-btn,
.whatsapp-btn,
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    transition: var(--transition);
    color: white;
    border: none;
    cursor: pointer;
    min-width: 180px;
    justify-content: center;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
    border: none;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.4);
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}

.facebook-btn {
    background: #1877f2;
    color: white;
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.3);
    border: none;
}

.facebook-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(24, 119, 242, 0.4);
    background: #166fe5;
}

.whatsapp-btn {
    background: var(--green-accent);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    border: none;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    background: #20c037;
}

.telegram-btn {
    background: #0088cc;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.3);
    border: none;
}

.telegram-btn i {
    font-size: 14px;
    margin-right: 6px;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.4);
    background: #0077b3;
}

/* About Section */
.about-section {
    margin-bottom: 20px;
}

.product-item {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.product-item p {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
}

/* Services Section */
.services-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item i {
    font-size: 16px;
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-item p {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
}

/* Map Section in Sidebar */
.desktop-sidebar .map-section {
    margin-top: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.desktop-sidebar .map-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.desktop-sidebar .map-info p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.desktop-sidebar .route-btn {
    padding: 10px 16px;
    font-size: 12px;
    min-height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Interactive Map Section */
.map-section {
    text-align: center;
    margin-top: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.map-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.map-info {
    margin-bottom: 6px;
}

.map-info p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.map-info i {
    color: var(--accent-color);
    font-size: 14px;
    width: 16px;
}

.route-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    margin: 0 auto;
    padding: 8px 12px;
    background: var(--red-accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(220, 38, 38, 0.3);
}

.route-btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(220, 38, 38, 0.4);
}

.route-btn i {
    font-size: 14px;
}

/* Responsive Design - Tablets */
@media (max-width: 1024px) {
    /* Show hidden sections on mobile */
    .desktop-main,
    .desktop-services,
    .desktop-actions {
        display: block;
        width: 100%;
        margin-bottom: 20px;
    }

    /* Stack sidebar elements */
    .desktop-sidebar {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    /* Style content sections as cards */
    .about-item,
    .product-item,
    .service-item {
        display: block;
        padding: 20px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }

    .about-item h4,
    .product-item h4,
    .service-item h4 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--text-primary);
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-item p,
    .product-item p,
    .service-item p {
        font-size: 14px;
        line-height: 1.6;
        color: var(--text-primary);
        margin-bottom: 10px;
        text-align: justify;
    }

    .profile-content {
        display: flex !important;
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .desktop-sidebar {
        order: 1;
    }

    .desktop-actions {
        order: 2;
    }

    .desktop-main {
        order: 3;
    }

    .desktop-services {
        order: 4;
    }

    .profile-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .profile-avatar {
        margin-bottom: 15px;
    }

    .profile-avatar img {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .profile-bio {
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }

    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .action-buttons button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 16px;
        min-height: 50px;
    }

    .social-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .instagram-btn,
    .facebook-btn,
    .whatsapp-btn,
    .telegram-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 16px;
        min-height: 50px;
    }

    .carousel-section {
        margin-bottom: 30px;
    }

    .carousel-container {
        height: 300px;
        border-radius: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .map-section {
        margin-bottom: 20px;
    }

}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .profile-content {
        padding: 15px;
    }

    .profile-avatar img {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .action-buttons button {
        font-size: 14px;
        padding: 12px 16px;
        min-height: 48px;
    }

    .instagram-btn,
    .facebook-btn,
    .whatsapp-btn,
    .telegram-btn {
        font-size: 14px;
        padding: 12px 16px;
        min-height: 48px;
    }

    .carousel-container {
        height: 250px;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .profile-content {
        padding: 12px;
    }

    .profile-avatar img {
        width: 80px;
        height: 80px;
    }

    .verified-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .profile-name {
        font-size: 20px;
    }

    .profile-bio {
        font-size: 13px;
    }

    .action-buttons button {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 180px;
        min-height: 48px;
    }

    .instagram-btn,
    .facebook-btn,
    .whatsapp-btn,
    .telegram-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-width: 180px;
        min-height: 48px;
    }

    .carousel-container {
        height: 200px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

}

.route-btn {
    padding: 12px 16px;
    font-size: 12px;
    min-width: 180px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.product-info h3 {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 14px;
}

.dot {
    width: 10px;
    height: 10px;
}

@media (max-width: 360px) {
    .action-buttons button,
    .instagram-btn,
    .facebook-btn,
    .whatsapp-btn,
    .telegram-btn,
    .route-btn {
        min-width: 240px;
        max-width: 280px;
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.product-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    position: relative;
    flex-shrink: 0;
}

.product-slide img {
    max-width: 100%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
}

.product-slide:hover img {
    transform: scale(1.02);
}

.product-info {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
    padding: 40px 20px 15px;
    text-align: center;
    color: white;
}

.product-info h3 {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-info p {
    font-size: clamp(12px, 3vw, 14px);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.carousel-btn:hover {
    background: var(--red-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

.carousel-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.dot.active {
    background: var(--red-accent);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 480px) {
    .profile-content {
        padding: 15px;
    }

    .profile-header {
        padding-top: 40px;
        margin-bottom: 30px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-bio {
        font-size: 14px;
    }

    .profile-picture img {
        width: 100px;
        height: 100px;
    }

    .verified-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .action-buttons {
        margin-bottom: 30px;
        gap: 12px;
    }

    .action-buttons button {
        padding: 16px 20px;
        font-size: 12px;
        min-height: 52px;
    }

    .social-links {
        gap: 20px;
        padding: 30px 0 40px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .profile-content {
        max-width: 600px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

.profile-header,
.action-buttons,
.social-links {
    animation: fadeInUp 0.6s ease-out;
}

.action-buttons { animation-delay: 0.1s; }
.social-links { animation-delay: 0.2s; }

/* Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Desktop Layout */
@media (min-width: 1024px) {
    body {
        overflow: hidden; /* Remove scroll */
        height: 100vh;
    }

    .profile-content {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        padding: 20px;
        display: grid;
        /* 4 Columns Layout: Sidebar | Main | Services | Actions */
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: 1fr;
        grid-template-areas:
            "sidebar main services actions";
        gap: 20px;
        align-items: start; /* Align content to top */
        overflow: hidden;
        justify-content: center;
        margin: 0 auto;
    }

    /* Assign Grid Areas */
    .desktop-sidebar {
        grid-area: sidebar;
        position: relative;
        height: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        background: transparent;
        padding: 0;
        border: none;
        gap: 20px;
        overflow-y: auto; /* Fallback scroll */
        scrollbar-width: none;
    }

    .desktop-main {
        grid-area: main;
        height: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        overflow-y: auto; /* Fallback scroll */
        scrollbar-width: none;
    }

    .desktop-services {
        grid-area: services;
        height: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        overflow-y: auto; /* Fallback scroll */
        scrollbar-width: none;
    }

    .desktop-actions {
        grid-area: actions;
        position: relative;
        height: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 15px;
        overflow-y: auto; /* Fallback scroll */
        scrollbar-width: none;
    }

    /* Hide scrollbars for cleaner look but keep functionality */
    .desktop-sidebar::-webkit-scrollbar,
    .desktop-main::-webkit-scrollbar,
    .desktop-services::-webkit-scrollbar,
    .desktop-actions::-webkit-scrollbar {
        display: none;
    }

    /* Hide mobile elements on desktop */
    .profile-header {
        display: none;
    }

    .desktop-sidebar .profile-header {
        display: block;
        text-align: center;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .profile-avatar {
        position: relative;
        margin-bottom: 20px;
        display: inline-block;
    }

    .profile-avatar img {
        width: 180px;
        height: 180px;
        border-radius: 50%;
        border: 4px solid rgba(255, 255, 255, 0.3);
        object-fit: cover;
    }

    .verified-badge {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-width: 3px;
        right: 5px;
        bottom: 5px;
    }

    .profile-name {
        font-size: 34px;
        font-weight: 800;
        margin-top: 15px;
        margin-bottom: 5px;
        color: #ffffff;
        font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        letter-spacing: 3px;
        text-transform: uppercase;
        line-height: 1.1;
        display: none;
    }

    .profile-bio {
        font-size: 22px;
        margin-top: 12px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        letter-spacing: 1.5px;
        line-height: 1.3;
        display: block;
        text-align: center;
    }

    /* Action Buttons */
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 0;
    }

    .action-buttons button {
        height: 100%;
        min-height: 60px;
        font-size: 14px;
        width: 100%;
        max-width: none;
    }

    /* Botões sociais na coluna de ações */
    .instagram-section,
    .facebook-section,
    .whatsapp-section,
    .telegram-section {
        margin-bottom: 0;
        display: block;
    }

    .instagram-btn,
    .facebook-btn,
    .whatsapp-btn,
    .telegram-btn {
        width: 100%;
        min-height: 50px;
        font-size: 13px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
    }

    /* Desktop Content Sections - Wrappers */
    .about-section,
    .services-section {
        padding: 0;
        margin-bottom: 0;
        background: transparent;
        border-radius: 0;
    }

    /* Apply Glassmorphism to specific containers */
    .about-item,
    .service-item,
    .desktop-sidebar .map-section {
        padding: 30px;
        background: rgba(20, 20, 20, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .desktop-sidebar .map-section {
        margin-top: 20px;
    }

    .about-item {
        display: block;
    }

    .about-item:hover,
    .service-item:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .about-item h4 {
        font-size: 24px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 15px;
        text-align: center;
    }

    .about-item p {
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-primary);
        margin-bottom: 15px;
        text-align: justify;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

    .product-item {
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .product-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 8px;
    }

    .product-item p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-primary);
        margin: 0 0 8px 0;
    }

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

    .service-item {
        display: block;
    }

    .service-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .service-item p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-primary);
        margin-bottom: 10px;
    }

    .action-buttons button {
        height: 100%;
        min-height: 70px;
        font-size: 16px;
        width: 100%;
        max-width: none;
    }

    .instagram-section,
    .facebook-section,
    .whatsapp-section,
    .telegram-section {
        margin-bottom: 0;
        display: block;
    }

    .instagram-btn,
    .facebook-btn,
    .whatsapp-btn,
    .telegram-btn {
        width: 100%;
        height: 100%;
        padding: 20px;
        font-size: 16px;
        justify-content: center;
        border-radius: 12px;
    }

    .map-section {
        grid-column: auto;
        margin-top: 20px;
        padding: 20px;
    }

    .route-btn {
        width: auto;
        padding: 12px 30px;
        font-size: 14px;
    }

    .map-info p {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Modal Adjustments for Desktop */
    .modal-content {
        width: 90%;
        height: 90%;
        max-width: 1200px;
        max-height: 800px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .modal-header {
        border-radius: 20px 20px 0 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .carousel-container {
        border-radius: 0 0 20px 20px;
    }

    .product-slide img {
        max-height: 60vh;
    }
}
