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

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;
}

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%;
}

/* 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 Section - Reduzida */
.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;
}

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

.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;
}

/* heroCover Section - Reduzida */
.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;
}

.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;
}

@media (max-width: 768px) {
    .hero-content[style*='margin-top: 8vh'] {
        margin-top: 0 !important;
    }
}

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

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

.heroCover {
    height: 25vh;
    padding: 0 20px;
}

.heroCover h1 {
    font-size: 32px;
}

.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;
}

/* Workshops Section */
.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 - Layout Vertical */
.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);
}

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

.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;
}

/* Modal para mídia - Melhorado */
.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);
}

/* Navegação do Modal*/
.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);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.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);
}

/* Counter do Modal */
.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);
}

/* Seção da galeria */
.images {
    padding: 50px 5%;
    background: #000;
}

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

/* Cada item da galeria */
.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;
}

/* Imagens preservando proporção */
.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Efeito de zoom ao passar o mouse */
.carousel-item img:hover {
    transform: scale(1.05);
}

/* Remove bolinhas do carrossel anterior */
.dots {
    display: none;
}

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

/* 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;
}

.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;
}

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

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

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

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

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

.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);
}

/* A imagem voadora que fica fora das tags */
.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;
}

/* Footer */
.dynamic-footer {
    background: linear-gradient(135deg, #1a202c 0%, #424242 50%, #1a202c 100%);
    color: #ffffff;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.dynamic-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #e53e3e,
        #d69e2e,
        #38b2ac,
        transparent
    );
    border-radius: 2px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 70px;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-title {
    font-size: 32px;
    margin: 15px;
    font-weight: 400;
    color: #bdbdbd;
    letter-spacing: 0.02em;
    text-align: center;
    position: relative;
}

.footer-title::after {
    content: '✦';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: #e53e3e;
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%,
    100% {
        opacity: 0.3;
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) rotate(180deg);
    }
}

.footer-brand img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    /* border-radius: 50%; */
    margin-top: 20px;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #e53e3e, #d69e2e, #38b2ac) padding-box,
        linear-gradient(45deg, #e53e3e, #d69e2e, #38b2ac) border-box;
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.contact-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
}

.contact-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #e53e3e, #d69e2e);
    transition: width 0.3s ease;
}

.contact-link:hover::before {
    width: 12px;
}

.contact-link:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.contact-icon {
    margin-right: 16px;
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contact-link:hover .contact-icon {
    opacity: 1;
}

.footer-bottom {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}

.copyright {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    color: rgba(229, 62, 62, 0.3);
    font-size: 12px;
    animation: float 6s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.star:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}
.star:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-grid {
        gap: 60px;
    }

    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .dynamic-footer {
        padding: 50px 0 35px;
        margin-top: 60px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 50px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .footer-title::after {
        right: -25px;
    }

    .footer-brand img {
        width: 100px;
        height: 100px;
        margin-top: 15px;
    }

    .contact-link {
        justify-content: center;
        padding-left: 0;
        font-size: 15px;
    }

    .contact-link::before {
        display: none;
    }

    .contact-link:hover {
        transform: translateX(0);
    }

    .contact-list {
        gap: 20px;
    }

    .footer-bottom {
        padding-top: 40px;
    }

    .copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dynamic-footer {
        padding: 40px 0 30px;
        margin-top: 40px;
    }

    .footer-container {
        padding: 0 12px;
    }

    .footer-grid {
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .footer-title::after {
        right: -20px;
        font-size: 14px;
    }

    .footer-brand img {
        width: 80px;
        height: 80px;
        margin-top: 12px;
    }

    .contact-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .contact-icon {
        margin-right: 12px;
        font-size: 16px;
    }

    .contact-list {
        gap: 16px;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .footer-bottom::before {
        font-size: 10px;
        letter-spacing: 6px;
        top: -6px;
    }

    .copyright {
        font-size: 12px;
        line-height: 1.4;
    }

    .decorative-elements .star {
        font-size: 10px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-title::after {
        right: -25px;
    }

    .dynamic-footer {
        padding: 60px 0 40px;
    }

    .contact-link {
        justify-content: center;
    }
}
/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 40px;
    }

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

    .workshops {
        padding: 60px 20px;
    }

    .project-section {
        padding: 40px 20px;
        margin-bottom: -100px;
    }

    .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-title {
        font-size: 28px;
    }

    .project-text {
        font-size: 16px;
    }

    .cta-button {
        display: block;
        margin: 10px 0;
    }

    .thumbnail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-nav.prev {
        left: -60px;
    }

    .modal-nav.next {
        right: -60px;
    }

    .youtube-iframe {
        width: 95vw;
        height: 50vh;
    }

    .particle {
        display: none;
    }

    .cursor {
        display: none;
    }

    .about {
        padding: 60px 20px;
    }

    .about-visual {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

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

    .about-text h2 {
        font-size: 32px;
    }

    .gallery {
        padding: 60px 20px;
    }

    .gallery h2 {
        font-size: 32px;
    }

    .heroCover-title {
        font-size: 2rem !important;
        margin-top: 10px !important;
    }
    .heroCover-description {
        font-size: 1.1rem !important;
    }

    .floating-image {
        display: none;
    }

    footer {
        padding: 40px 20px 20px;
    }
}

/* Animações */
.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;
}
