/* ====================================
   SEÇÕES DO SITE
   ==================================== */

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1560869713-e0b1e4d55b21?auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(192, 192, 192, 0.25) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
}

.highlight {
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--silver));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.hero p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Sobre Section */
.sobre {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--gray) 100%);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 90%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(192, 192, 192, 0.06) 0%, transparent 50%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sobre-image {
    position: relative;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--gold), var(--silver));
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(20px);
}

.sobre-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.25);
    transition: transform 0.4s ease;
}

.sobre-image:hover img {
    transform: scale(1.02) rotate(1deg);
}

.sobre-text p {
    margin-bottom: 2rem;
    color: var(--silver-light);
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(192, 192, 192, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-text {
    color: var(--silver-light);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Prótese Section */
.protese {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--light-gray) 100%);
    position: relative;
}

.protese-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.protese-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--silver-light);
    text-align: justify;
    line-height: 1.8;
}

.benefits {
    display: grid;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(17, 17, 17, 0.9));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), var(--gold-light));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit:hover::before {
    transform: scaleY(1);
}

.benefit:hover {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.9));
    transform: translateX(15px);
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.benefit i {
    color: var(--gold);
    font-size: 1.5rem;
    padding: 15px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.benefit span {
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.protese-image {
    position: relative;
}

.protese-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--silver), var(--gold));
    border-radius: 25px;
    opacity: 0.2;
    z-index: -1;
    filter: blur(20px);
}

.protese-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(192, 192, 192, 0.25);
}

/* Serviços Section */
.servicos {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.servico-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(17, 17, 17, 0.8));
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.servico-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servico-card:hover::after {
    opacity: 1;
}

.servico-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.servico-card p {
    color: var(--silver-light);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Galeria Section */
.galeria {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--dark-gray) 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.galeria-item {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(10, 10, 10, 0.8));
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.galeria-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--silver), var(--gold-light), var(--gold));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.galeria-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.35);
}

.antes-depois {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.antes, .depois {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.antes::before, .depois::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.25) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.antes:hover::before, .depois:hover::before {
    opacity: 1;
}

.antes img, .depois img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.antes:hover img, .depois:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 5px 15px rgba(255, 215, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.antes:hover .label, .depois:hover .label {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Avaliações Section */
.avaliacoes {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
}

.avaliacoes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.06) 0%, transparent 60%);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.avaliacao-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(17, 17, 17, 0.8));
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.avaliacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.avaliacao-card:hover::before {
    opacity: 1;
}

.avaliacao-card p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--silver-light);
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
}

.avaliacao-card p::before {
    content: '"';
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: 'Playfair Display', serif;
    opacity: 0.3;
}

.author strong {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author span {
    display: block;
    color: var(--silver);
    font-size: 0.9rem;
    margin-top: 5px;
    font-style: italic;
}

/* Localização Section */
.localizacao {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray) 0%, var(--light-gray) 100%);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.localizacao-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.35);
}

.endereco, .horarios {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(17, 17, 17, 0.9));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.endereco h3, .horarios h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.endereco p {
    color: var(--silver-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.endereco i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

.horario {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--silver-light);
    font-size: 1rem;
}

.horario:last-child {
    border-bottom: none;
}

.mapa {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.25);
}

.mapa::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--gold), var(--silver));
    border-radius: 25px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(20px);
}

.mapa iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* Contato Section */
.contato {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.18) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(192, 192, 192, 0.1) 0%, transparent 60%);
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.contato-card {
    cursor: pointer;
}

.contato-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contato-card:hover::after {
    opacity: 1;
}

.contato-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contato-card p {
    color: var(--silver-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.contato-card .btn-primary {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Social Section */
.social-section {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(10, 10, 10, 0.5));
    border-radius: 30px;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    pointer-events: all;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(192, 192, 192, 0.08) 0%, transparent 60%);
    border-radius: 30px;
    z-index: -1;
}

.social-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px, 90px 90px;
    animation: particleFloat 20s linear infinite;
    opacity: 0.3;
    z-index: 0;
    border-radius: 30px;
}

@keyframes particleFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.social-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 3rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
}

.social-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.social-card {
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(0) scale(1);
    cursor: pointer;
    z-index: 10;
    pointer-events: all;
    animation: socialFloat 6s ease-in-out infinite;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    transition: all 0.4s ease;
    z-index: 1;
}

.social-card::after {
    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) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.social-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card.instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-card.instagram::before {
    background: linear-gradient(135deg, #a64ac9 0%, #ff4444 50%, #ffd966 100%);
}

.social-card.tiktok {
    background: linear-gradient(135deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
}

.social-card.tiktok::before {
    background: linear-gradient(135deg, #1a1a1a 0%, #ff3366 50%, #33ffee 100%);
}

.social-card.youtube {
    background: linear-gradient(135deg, #0d0000 0%, #ff0000 50%, #660000 100%);
}

.social-card.youtube::before {
    background: linear-gradient(135deg, #2a0000 0%, #ff3333 50%, #990000 100%);
}

.social-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 11;
}

.social-card.instagram:hover {
    box-shadow:
        0 25px 50px rgba(253, 29, 29, 0.3),
        0 0 30px rgba(252, 176, 69, 0.4);
}

.social-card.tiktok:hover {
    box-shadow:
        0 25px 50px rgba(255, 0, 80, 0.3),
        0 0 30px rgba(0, 242, 234, 0.4);
}

.social-card.youtube:hover {
    box-shadow:
        0 25px 50px rgba(255, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 0, 0.2);
}

.social-card:active {
    animation: none;
    transform: translateY(-10px) scale(0.98);
}

.social-card i {
    font-size: 4rem;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    pointer-events: none;
    user-select: none;
}

.social-card:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.social-card span {
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    user-select: none;
}

.social-card:hover span {
    transform: translateY(-3px);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.social-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 3;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-align: center;
    line-height: 1.5;
}

.social-card:hover p {
    opacity: 1;
}

@keyframes socialFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.social-card:nth-child(1) { animation-delay: 0s; }
.social-card:nth-child(2) { animation-delay: 2s; }
.social-card:nth-child(3) { animation-delay: 4s; }
