/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix para problemas de carregamento de imagens */
img, video {
    display: block;
    max-width: 100%;
}

:root {
    --primary-color: #ff5722;
    --secondary-color: #03dac6;
    --dark-color: #0a0a0a;
    --darker-color: #050505;
    --light-color: #f4f4f4;
    --danger-color: #dc3545;
    --success-color: #28a745;
    --text-color: #e0e0e0;
    --text-muted: #aaaaaa;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 30, 30, 0.5);
    --card-hover: rgba(40, 40, 40, 0.7);
    --gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 50%, var(--darker-color) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--gradient);
    color: var(--dark-color);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #03dac6, #6200ea);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.divider {
    height: 4px;
    width: 70px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

section {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--secondary-color);
    white-space: nowrap;
    margin: 0;
    letter-spacing: 0.15em;
    background: linear-gradient(45deg, var(--secondary-color) 10%, #9c27b0 50%, var(--primary-color) 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite, blink-caret 0.75s step-end infinite;
    text-shadow: 0 0 10px rgba(3, 218, 198, 0.3);
}

@keyframes color-change {
    0% { color: #ffffff; }
    25% { color: #03dac6; }
    50% { color: #6200ea; }
    75% { color: #bb86fc; }
    100% { color: #ffffff; }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.menu {
    display: flex;
}

.menu li {
    margin-left: 30px;
}

.menu li a {
    color: white;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.menu li a:hover {
    color: var(--secondary-color);
}

.menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.menu li a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(98, 0, 234, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, var(--secondary-color) 10%, #9c27b0 50%, var(--primary-color) 90%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite;
    text-shadow: 0 0 25px rgba(156, 39, 176, 0.6);
    letter-spacing: 3px;
    transform: scale(1);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(3, 218, 198, 0.4));
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.hero-content h1:hover {
    transform: scale(1.05) perspective(500px) rotateY(5deg);
    text-shadow: 0 0 30px rgba(156, 39, 176, 0.7);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { filter: drop-shadow(0 0 8px rgba(3, 218, 198, 0.4)); }
    50% { filter: drop-shadow(0 0 15px rgba(156, 39, 176, 0.6)); }
    100% { filter: drop-shadow(0 0 8px rgba(3, 218, 198, 0.4)); }
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(156, 39, 176, 0.3) 0%, rgba(3, 218, 198, 0.2) 40%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glow-effect:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), #9c27b0);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    color: var(--darker-color);
}

.secondary-btn {
    background: rgba(3, 218, 198, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(3, 218, 198, 0.3);
}

.secondary-btn:hover {
    background: var(--secondary-color);
    color: var(--darker-color);
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



.hero-content h1 span {
    display: inline-block;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content h1 .underline {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, #6200ea, #03dac6);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(98, 0, 234, 0.5);
}

/* Removendo o pseudo-elemento já que agora temos um elemento real */
.hero-content h1::before {
    content: none;
}

.dj-badge {
    background: linear-gradient(45deg, var(--primary-color), #9c27b0);
    color: var(--darker-color);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f5f5f5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.typewriter {
    border-right: 3px solid #03dac6;
    white-space: normal;
    overflow: visible;
    margin: 0 auto;
    letter-spacing: 0.05em;
    animation: blink-caret 0.75s step-end infinite;
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    display: block;
    font-weight: 500;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #03dac6 }
}

.typing-complete {
    border-right: none;
    width: auto;
    display: block;
}

.char {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.2s;
}

/* Sobre Section */
.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-img {
    flex: 1;
}

.sobre-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-text {
    flex: 1;
}

.sobre-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--gray-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Portfolio Section */
.portfolio {
    background-color: var(--dark-color);
}

/* Serviços Section */
.servicos {
    background-color: var(--dark-color);
}

/* Estilos personalizados para controles de vídeo */
video::-webkit-media-controls-panel {
    background-color: rgba(10, 10, 10, 0.7);
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button {
    filter: brightness(1.5);
}

video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-img:hover video {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(3, 218, 198, 0.3);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.portfolio-img::after {
    content: "\f04b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.portfolio-img:hover::after {
    opacity: 1;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.servico-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-card .icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.servico-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.servico-card p {
    color: var(--gray-color);
}

/* Portfolio Section */
.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #000;
}

.portfolio-img img, .portfolio-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Melhorias para vídeos */
video {
    max-width: 100%;
    background-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

video::-webkit-media-controls {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Estilo para poster de vídeo */
video[poster] {
    object-fit: cover;
}

/* Overlay para vídeos */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: opacity 0.3s ease;
}

/* Botão de play para vídeos */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.portfolio-item:hover .portfolio-img img,
.portfolio-item:hover .portfolio-img video {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Depoimentos Section */
.depoimentos {
    background-color: var(--dark-color);
}

.depoimentos-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.depoimento {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.depoimento-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid var(--border-color);
}

.depoimento-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(3, 218, 198, 0.2);
    font-family: serif;
}

.depoimento-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    font-style: italic;
}

.cliente h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cliente p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Agenda Section */
.agenda-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agenda-item {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.agenda-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.agenda-data {
    background: linear-gradient(45deg, var(--primary-color), #9c27b0);
    color: var(--darker-color);
    padding: 20px;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 600;
}

.agenda-data .dia {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-data .mes {
    font-size: 1rem;
    text-transform: uppercase;
}

.agenda-info {
    padding: 20px;
    flex: 1;
    color: var(--text-color);
}

.agenda-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.agenda-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.agenda-info p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Contato Section */
.contato-content {
    display: flex;
    gap: 50px;
}

.contato-info {
    flex: 1;
}

.contato-item {
    margin-bottom: 30px;
}

.contato-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contato-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contato-item p {
    color: var(--gray-color);
}

.contato-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(30, 30, 30, 0.8);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.hero-content .btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #6200ea, #03dac6);
    background-size: 200% auto;
    animation: gradientMove 3s ease infinite;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px 35px;
}

.hero-content .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-content .btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: transform 0.6s ease;
}

.hero-content .btn:hover::after {
    transform: rotate(0deg);
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Botão Flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px 10px 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        padding: 10px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* Admin Link */
.admin-link {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.admin-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.admin-link a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 1;
}

.admin-link i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .admin-link {
        bottom: 20px;
        left: 20px;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.logo-footer {
    flex: 1;
    min-width: 300px;
}

.logo-footer h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.logo-footer p {
    color: #aaa;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-social .social-icons {
    margin-top: 0;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* Estilos da seção de portfólio */
.portfolio {
    padding: 100px 0;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(3, 218, 198, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn:hover {
    background: rgba(3, 218, 198, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.portfolio-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--card-hover);
    border-color: rgba(3, 218, 198, 0.3);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-img img, 
.portfolio-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img,
.portfolio-item:hover .portfolio-img video {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.portfolio-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Estilos para a paginação */
.portfolio-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: rgba(3, 218, 198, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pagination-btn.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }
    
    .contato-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .portfolio-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.95);
        padding: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h1::before {
        font-size: 1.5rem;
        top: -20px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .sobre-content {
        flex-direction: column;
    }

    .sobre-img, .sobre-text {
        width: 100%;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .portfolio-img {
        height: 200px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}
