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

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Cursor personalizado */
.cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    background: #ff6b9d;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.cursor.hover {
    transform: scale(1.5);
}

/* ─── Header ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff6b9d, #ffa726, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff6b9d;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b9d;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ff6b9d, #ffa726);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        z-index: 1050;
        list-style: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 24px;
        font-weight: 700;
        background: linear-gradient(135deg, #ff6b9d, #ffa726, #66bb6a);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Remove o underline animado no menu mobile */
    .nav-links a::after {
        display: none;
    }
}

/* ─── Hero Section ─── */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 50%, #fd79a8 100%);
    background-image: url('img/gallery/5.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero.reduced {
    height: 25vh;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.6) 0%,
        rgba(255, 167, 38, 0.6) 50%,
        rgba(102, 187, 106, 0.6) 100%
    );
}

.hero.reduced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: white;
}

.hero.reduced .hero-content {
    margin-top: 40px;
}

.hero h1 {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    margin-bottom: 20px;
    color: #7e397e;
    text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.8);
    animation: gentlePulse 4s ease-in-out infinite;
}

.hero p {
    color: #251125 !important;
    text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.8) !important;
}

.hero.reduced h1 {
    font-size: clamp(30px, 4vw, 50px);
    margin-top: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero.reduced p {
    font-size: 16px;
}

@keyframes gentlePulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

/* ─── heroCover ─── */
.heroCover {
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.6) 0%,
        rgba(255, 167, 38, 0.6) 50%,
        rgba(102, 187, 106, 0.6) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}

.heroCover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.heroCover-content {
    text-align: center;
    z-index: 2;
    color: white;
    margin-top: 40px;
}

.heroCover h1 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: gentlePulse 4s ease-in-out infinite;
    margin-top: 20px;
}

.heroCover p {
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

/* ─── CTA Button ─── */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #7e397e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #7e397e;
    color: #fff;
}

.cta-button.gradient {
    background: linear-gradient(135deg, #ff6b9d, #ffa726);
    color: white;
    border-radius: 30px;
    font-size: 16px;
    margin: 0 10px;
}

.cta-button.gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff6b9d;
    color: #ff6b9d;
}

.cta-button.secondary:hover {
    background: #ff6b9d;
    color: white;
}

/* ─── Workshops ─── */
.workshops {
    padding: 40px 20px;
    background: #fff;
}

.workshops-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── Project Section ─── */
.project-section {
    margin-bottom: -50px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.02),
        rgba(255, 167, 38, 0.02)
    );
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.project-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -5%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b9d, #ffa726);
    border-radius: 2px;
}

.project-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.project-description {
    padding: 20px 0;
}

.project-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

/* ─── Media Gallery ─── */
.media-gallery {
    position: relative;
}

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

.thumbnail-gallery-mirrow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: start;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thumbnail-mirrow {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail-mirrow img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail.video::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    background: rgba(255, 107, 157, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

/* ─── Project CTA ─── */
.project-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ─── Modal ─── */
.media-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.media-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-media {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.youtube-iframe {
    width: 80vw;
    height: 80vh;
    max-width: 1200px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #ff6b9d;
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.modal-nav:hover {
    color: #ff6b9d;
    transform: translateY(-50%) scale(1.2);
}

.modal-nav.prev {
    left: -80px;
}
.modal-nav.next {
    right: -80px;
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1);
}

.modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* ─── Carousel / Images ─── */
.images {
    padding: 50px 5%;
    background: #000;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.carousel-item {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: #111;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.carousel-item img:hover {
    transform: scale(1.05);
}

.dots {
    display: none;
}

/* ─── About Section ─── */
.about {
    padding: 100px 50px;
    background: #fff;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #ffa726);
    border-radius: 2px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

.profileImg {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

/* Círculos ficam atrás da foto no desktop */
.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b9d, #ffa726, #66bb6a);
    animation:
        rotate 4s linear infinite,
        float 6s ease-in-out infinite;
    z-index: 1;
}

.pattern-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    opacity: 0.5;
    bottom: 10px;
    right: 10px;
}

.pattern-circle:nth-child(3) {
    width: 120px;
    height: 120px;
    opacity: 0.35;
    animation-delay:
        -2s,
        -3s;
    bottom: 10px;
    right: 10px;
}

.pattern-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    opacity: 0.25;
    animation-delay:
        -4s,
        -1.5s;
    bottom: 10px;
    right: 10px;
}

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

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

/* ─── About Mobile ─── */
@media (max-width: 768px) {
    .about {
        padding: 60px 24px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Foto vem primeiro */
    .about-visual {
        order: -1;
        max-width: 200px;
        margin: 0 auto;
    }

    .profileImg {
        width: 100%;
        border-radius: 12px;
    }

    /* Círculos escondidos no mobile — causam sobreposição */
    .pattern-circle {
        display: none;
    }

    .about-text h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* ─── Gallery Section ─── */
.gallery {
    padding: 100px 50px;
    background: linear-gradient(135deg, #ddd6fe 0%, #fce7f3 100%);
    overflow-x: hidden;
}

.gallery h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b9d, #ffa726);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(1) {
    background: linear-gradient(135deg, #ff6b9d, #ffa726);
}
.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, #66bb6a, #42a5f5);
}
.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, #ffa726, #ff7043);
}
.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, #ab47bc, #ec407a);
}
.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, #42a5f5, #66bb6a);
}
.gallery-item:nth-child(6) {
    background: linear-gradient(135deg, #ff7043, #ff6b9d);
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 0.1;
}

.gallery-item-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
    color: #fff;
}

.gallery-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-item p {
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-link {
    text-decoration: none;
    display: block;
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ─── Floating image ─── */
.floating-image {
    position: fixed;
    width: 8vw;
    max-width: 120px;
    min-width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    background-image: url('/img/jump.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.5) rotate(-20deg);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    z-index: 9999;
}

@media (max-width: 768px) {
    .floating-image {
        display: none;
    }
    .cursor {
        display: none;
    }
}

/* ─── Footer ─── */
.gf {
    background: #0f0a18;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    width: 100%;
}

canvas#gf-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gf-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #ff6b9d,
        #ffa726,
        #66bb6a,
        #42a5f5,
        #ab47bc,
        #ff6b9d
    );
    background-size: 300% 100%;
    animation: stripeMove 5s linear infinite;
    z-index: 20;
}

@keyframes stripeMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

.gf-inner {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 60px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

.gf-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.gf-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.gf-name {
    font-size: clamp(32px, 4vw, 58px);
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 50%, #ab47bc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.05;
    transition: letter-spacing 0.4s ease;
    cursor: default;
}

.gf-name:hover {
    letter-spacing: 3px;
}

.gf-roles {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gf-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gf-role::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, #ff6b9d, #ffa726);
    flex-shrink: 0;
}

.gf-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gf-avatar-ring {
    position: relative;
    width: clamp(100px, 14vw, 150px);
    height: clamp(100px, 14vw, 150px);
    flex-shrink: 0;
}

.gf-ring-svg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    animation: spinRing 15s linear infinite;
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gf-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0f0a18;
    display: block;
    background: linear-gradient(135deg, #ff6b9d, #ab47bc);
}

.gf-cta-hint {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.322);
    text-align: center;
}

.gf-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.gf-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.gf-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.gf-pill.email::before {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.15),
        rgba(171, 71, 188, 0.1)
    );
}
.gf-pill.phone::before {
    background: linear-gradient(
        135deg,
        rgba(255, 167, 38, 0.15),
        rgba(255, 112, 67, 0.1)
    );
}
.gf-pill.insta::before {
    background: linear-gradient(
        135deg,
        rgba(102, 187, 106, 0.15),
        rgba(66, 165, 245, 0.1)
    );
}

.gf-pill:hover::before {
    opacity: 1;
}

.gf-pill:hover {
    color: #fff;
    border-color: rgba(255, 107, 157, 0.3);
    transform: translateX(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.gf-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.gf-pill.email .gf-pill-icon {
    font-size: 20px;
}

.gf-pill:hover .gf-pill-icon {
    background: rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.4);
}

.gf-divider {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.gf-divider-line {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        rgba(255, 107, 157, 0.2),
        rgba(255, 255, 255, 0.08),
        transparent
    );
}

.gf-bottom {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 60px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gf-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.5px;
}

.gf-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.gf-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.gf-dot:nth-child(1) {
    background: #ff6b9d;
    animation-delay: 0s;
}
.gf-dot:nth-child(2) {
    background: #ffa726;
    animation-delay: 0.3s;
}
.gf-dot:nth-child(3) {
    background: #ab47bc;
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

.gf-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

@media (max-width: 900px) {
    .gf-inner {
        grid-template-columns: 1fr;
        padding: 56px 32px 40px;
        gap: 36px;
        justify-items: center;
        text-align: center;
    }
    .gf-left {
        align-items: center;
    }
    .gf-role::before {
        display: none;
    }
    .gf-right {
        align-items: center;
    }
    .gf-pill:hover {
        transform: translateY(-3px);
    }
    .gf-bottom {
        padding: 20px 32px 28px;
        flex-direction: column;
        gap: 12px;
    }
    .gf-divider {
        padding: 0 32px;
    }
}

@media (max-width: 480px) {
    .gf-inner {
        padding: 48px 20px 36px;
        gap: 28px;
    }
    .gf-pill {
        font-size: 13px;
        padding: 11px 18px;
    }
    .gf-bottom {
        padding: 16px 20px 24px;
    }
    .gf-divider {
        padding: 0 20px;
    }
}

/* ─── Animações gerais ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    animation: fadeIn 1.5s ease forwards;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ─── Partículas ─── */
.particle {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}
