/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove list styles globally */
ul, ol, li {
    list-style: none !important;
    list-style-type: none !important;
}

/* Remove any potential bullets from all elements */
* {
    list-style: none !important;
    list-style-type: none !important;
}

/* Specific removal for common elements that might have bullets */
p, div, span, h1, h2, h3, h4, h5, h6 {
    list-style: none !important;
    list-style-type: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: url('../img/avif/bg-hero-site.avif');
    background-image: url('../img/webp/bg-hero-site.webp');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 50px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 30px 0 20px;
}

.profile-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #F5F0E1;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.profile-username {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 500;
}

.username-bold {
    font-weight: 700;
    color: #ffffff;
}

.consultora-text {
    color: rgba(255, 255, 255, 0.5);
}


/* Skip Links for Accessibility */
.skip-links {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10000;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: #FFD700;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: top 0.3s ease;
    z-index: 10001;
}

.skip-link:focus {
    top: 10px;
    left: 10px;
    outline: 3px solid #FFA500;
    outline-offset: 2px;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.social-icon:hover i {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.social-icon i {
    transition: all 0.3s ease;
}

/* Focus Indicators for Accessibility - Estilo mais elegante */
.social-icon:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
    transition: all 0.2s ease;
}

.link-card:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.more-link-card:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.promo-card:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.back-to-top:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    transition: all 0.2s ease;
}

.carousel-prev:focus,
.carousel-next:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    transition: all 0.2s ease;
}

.bullet:focus {
    outline: none;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    transition: all 0.2s ease;
}

/* Remove default focus outline and add custom */
*:focus {
    outline: none;
}

/* Ensure focus is visible for keyboard navigation - Estilo elegante */
.skip-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6) !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3) !important;
    transition: all 0.2s ease !important;
}

.social-icon:focus,
.link-card:focus,
.more-link-card:focus,
.promo-card:focus,
.back-to-top:focus,
.carousel-prev:focus,
.carousel-next:focus,
.bullet:focus {
    outline: none !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
}

/* Section Titles */
.section-title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 25px 0 20px;
}

/* About Section */
.about-section {
    padding: 10px 0;
    margin-bottom: 15px;
}

.about-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.about-text i {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Links Section */
.links-section {
    padding: 10px 0;
    margin-bottom: 15px;
}

.link-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.link-card:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.link-card:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.link-card:hover .link-icon,
.link-card:hover .link-content,
.link-card:hover .link-arrow {
    position: relative;
    z-index: 2;
}

.link-card:hover .link-title {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.link-card .link-title {
    transition: all 0.3s ease;
}

.link-card:hover .link-icon i {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.link-card .link-icon i {
    transition: all 0.3s ease;
}

.link-card:hover .link-followers {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transition: all 0.3s ease;
}

.link-card .link-followers {
    transition: all 0.3s ease;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mentoria-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.curso-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.comunidade-icon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mentoria-icon i,
.curso-icon i,
.comunidade-icon i {
    transition: all 0.3s ease;
}

.mentoria-icon:hover,
.curso-icon:hover,
.comunidade-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.blackfriday-icon {
    background: transparent !important;
    color: #FFD700;
    position: relative;
    overflow: visible;
    border: none !important;
    backdrop-filter: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}



.blackfriday-icon i,
.blackfriday-icon svg {
    position: relative;
    z-index: 2;
    color: #FFD700;
}

.blackfriday-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.blackfriday-icon:hover svg {
    transform: scale(1.1);
}


/* Efeito de vidro igual ao card de Eventos & Palestras */
.link-card:has(.blackfriday-icon) {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.link-card:has(.blackfriday-icon)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.link-card:has(.blackfriday-icon):hover {
    background: rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12) !important;
}





.link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Remove background (bolinha) dos ícones específicos */
.link-icon.no-background {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
}

.link-icon.no-background:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
}

.link-emoji {
    font-size: 1.5rem;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    transition: all 0.3s ease;
}

.link-followers {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    opacity: 0.9;
}

.link-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin: 8px 0 0 0;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Method Section */
.promo-section {
    padding: 10px 0;
    margin-bottom: 15px;
}

.promo-card {
    background: #0d0d0d;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.promo-card:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
}

/* Efeito especial para o card do Black Friday na promo section */
.promo-card:has(.blackfriday-icon) {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.promo-card:has(.blackfriday-icon)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.promo-card:has(.blackfriday-icon):hover {
    background: rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.promo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.promo-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Black Friday icon in promo section */
.promo-icon.blackfriday-icon {
    background: transparent !important;
    color: #FFD700;
    position: relative;
    overflow: visible;
    border: none !important;
    backdrop-filter: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

.promo-icon.blackfriday-icon i,
.promo-icon.blackfriday-icon svg {
    position: relative;
    z-index: 2;
    color: #FFD700;
}

.promo-icon.blackfriday-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.promo-icon.blackfriday-icon:hover svg {
    transform: scale(1.1);
}

.promo-icon.blackfriday-icon:hover {
    box-shadow: none !important;
    transform: none !important;
}

.promo-content {
    flex: 1;
}

.promo-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.promo-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    opacity: 0.9;
}

.highlight-link {
    color: #FFA500;
    font-weight: 600;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

.promo-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: scale(1.05);
}

/* More Links Section */
.more-links-section {
    padding: 10px 0;
    margin-bottom: 15px;
}

.more-link-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.more-link-card:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.more-link-card:hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.more-link-card:hover .card-icon,
.more-link-card:hover .card-title,
.more-link-card:hover .card-description {
    position: relative;
    z-index: 2;
}

.more-link-card:hover .card-title {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.more-link-card .card-title {
    transition: all 0.3s ease;
}

.more-link-card:hover .card-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.more-link-card:hover .card-icon i {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.more-link-card .card-icon {
    transition: all 0.3s ease;
}

.more-link-card .card-icon i {
    transition: all 0.3s ease;
}

.more-link-card:hover .card-description {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transition: all 0.3s ease;
}

.more-link-card .card-description {
    transition: all 0.3s ease;
}

.card-icon {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Featured Card */
.featured-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #bb481a;
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.card-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* Image Card */
.image-card {
    padding: 0;
    position: relative;
    min-height: 250px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    border-radius: 0 0 16px 16px;
}

/* Eventos Card */
.eventos-card {
    position: relative;
    overflow: hidden;
}

.eventos-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Dark Card */
.dark-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}


/* Testimonials Section */
.testimonials-section {
    padding: 10px 0;
    margin-bottom: 15px;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: visible; /* Mudado para visible para não cortar o conteúdo */
    border-radius: 16px;
    min-height: 400px; /* Altura mínima fixa para evitar pulos */
    height: 400px; /* Altura fixa para todos os depoimentos */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}


.testimonial-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 15px 0;
    gap: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex: 1;
    text-align: center;
    padding: 0 10px;
    display: block;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    flex-shrink: 0;
}

.testimonial-author strong {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.05rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-prev:active,
.carousel-next:active {
    transform: scale(0.95);
}

.carousel-bullets {
    display: flex;
    gap: 12px;
    align-items: center;
}

.bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.bullet:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.bullet.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.bullet.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
}


/* Responsive Design */
@media (max-width: 768px) {
    
    body {
        background-image: url('../img/avif/bg-hero-mobile.avif');
        background-image: url('../img/webp/bg-hero-mobile.webp');

    }
    .profile-name {
        font-size: 1.5rem;
    }

    .profile-username {
        font-size: 1rem;
    }

    .social-icons {
        gap: 15px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    /* Layout vertical para link-cards no mobile */
    .link-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .link-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .link-content {
        flex: 1;
        gap: 8px;
    }

    .link-arrow {
        display: none; /* Remove o botão de link no mobile */
    }

    /* Layout vertical para promo-card no mobile */
    .promo-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .promo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .promo-content {
        flex: 1;
    }

    .promo-arrow {
        display: none; /* Remove o botão de link no mobile */
    }

    .more-link-card {
        padding: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .carousel-container {
        min-height: 420px;
        height: 420px;
    }

    .carousel-nav {
        gap: 15px;
        margin-top: 20px;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
    }

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

    .bullet.active::after {
        width: 4px;
        height: 4px;
    }

    .section-title {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Partners Section */
.partners-section {
    padding: 10px 0;
    margin-bottom: 15px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partner-item {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-item:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
}

.partner-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.partner-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-name {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Partners */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .partner-item {
        padding: 15px;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Ajustes adicionais para link-cards em telas pequenas */
    .link-card {
        padding: 18px;
        gap: 12px;
    }

    .link-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .link-title {
        font-size: 1.05rem;
    }

    .link-followers {
        font-size: 0.8rem;
    }

    .link-price {
        font-size: 0.85rem;
    }

    /* Ajustes adicionais para promo-card em telas pequenas */
    .promo-card {
        padding: 18px;
        gap: 12px;
    }

    .promo-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .promo-title {
        font-size: 1.05rem;
    }

    .promo-subtitle {
        font-size: 0.8rem;
    }

    .carousel-container {
        min-height: 380px;
        height: 380px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .partner-item {
        padding: 12px;
    }
    
    .partner-logo {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Telas muito pequenas (até 360px) */
@media (max-width: 360px) {
    /* Ajustes finais para link-cards em telas muito pequenas */
    .link-card {
        padding: 15px;
        gap: 10px;
    }

    .link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-followers {
        font-size: 0.75rem;
    }

    .link-price {
        font-size: 0.8rem;
    }

    /* Ajustes finais para promo-card em telas muito pequenas */
    .promo-card {
        padding: 15px;
        gap: 10px;
    }

    .promo-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .promo-title {
        font-size: 1rem;
    }

    .promo-subtitle {
        font-size: 0.75rem;
    }

    .carousel-container {
        min-height: 340px;
        height: 340px;
    }

    .testimonial-card {
        padding: 12px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    .testimonial-author strong {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }
}

/* Footer Section */
.footer-section {
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
}

.footer-text i {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.footer-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 2s ease-in-out infinite;
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 15px 0;
        margin-top: 20px;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
}

/* Selection Color */
::selection {
    background: rgba(230, 126, 34, 0.5);
    color: #ffffff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

.back-to-top.show {
    display: flex;
}

/* Responsive Back to Top */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: loading-shimmer 1.5s infinite;
    z-index: 1;
}

@keyframes loading-shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Image Loading States */
.profile-img {
    transition: opacity 0.3s ease;
}

.profile-img[loading] {
    opacity: 0.7;
}

.profile-img:not([loading]) {
    opacity: 1;
}

/* Image Optimization */
picture {
    display: block;
    width: 100%;
    height: auto;
}

picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

picture img:hover {
    transform: scale(1.02);
}

/* Responsive Images */
@media (max-width: 768px) {
    .profile-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 80px;
        height: 80px;
    }
}

/* Card Loading States */
.link-card.loading,
.promo-card.loading,
.more-link-card.loading {
    position: relative;
    overflow: hidden;
}

.link-card.loading::after,
.promo-card.loading::after,
.more-link-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: card-loading 2s infinite;
    z-index: 1;
}

@keyframes card-loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Spinner Loading */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

/* Skip Links Responsive */
@media (max-width: 768px) {
    .skip-link:focus {
        top: 5px;
        left: 5px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .skip-link:focus {
        top: 3px;
        left: 3px;
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}
