/* 
 * Dourado Tecnologias - Landing Page
 * Estilos CSS
 */

/* ===== VARIÁVEIS E RESET ===== */
:root {
    /* Paleta de cores */
    --primary-color: #ffa500;
    /* Dourado */
    --primary-dark: #e69500;
    --secondary-color: #2c3e50;
    /* Azul escuro */
    --secondary-light: #34495e;
    --text-color: #333333;
    --text-light: #666666;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #e9ecef;
    --success-color: #28a745;

    /* Tipografia */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Roboto', sans-serif;

    /* Sombras */
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);

    /* Transições */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 5rem 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -4px;
    width: 40px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 6px;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--box-shadow);
    padding: 0.7rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--light-color);
    transition: var(--transition);
}

.logo h1 span {
    color: var(--primary-color);
    font-weight: 700;
}

.header.scrolled .logo h1 {
    color: var(--secondary-color);
}

.header.scrolled .logo h1 span {
    color: var(--primary-color);
}

.nav-menu .menu {
    display: flex;
    align-items: center;
}

.nav-menu .menu li {
    margin-left: 1.5rem;
}

.nav-menu .menu a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-menu .menu a {
    color: var(--secondary-color);
}

.nav-menu .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

/* From Uiverse.io by mi-series */
.btn {
    outline: 0;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #40B3A2;
    min-width: 200px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-sizing: border-box;
    padding: 10px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
}

.btn a {
    color: #fff;
    text-decoration: none;
}

.btn:hover {
    opacity: .95;
}

.btn .animation {
    border-radius: 100%;
    animation: ripple 0.6s linear infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
    }
}


.btn-contato {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px;
}

.btn-contato:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-contato::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    position: absolute;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background-color: var(--secondary-color);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.menu-toggle.active span {
    background-color: #34495e;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 0 !important; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80');
}

.slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
}

.slide:nth-child(3) {
    background-image: url('https://images.pexels.com/photos/887751/pexels-photo-887751.jpeg?_gl=1*16m4sd*_ga*MTU5NjM2ODkyLjE3NTc0Mzg4NTA.*_ga_8JE65Q40S6*czE3NTc0Mzg4NDkkbzEkZzEkdDE3NTc0Mzg5OTYkajU3JGwwJGgw');
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: center;
    max-width: 1000px;
    padding: 15px;
    background-color: #2a547ede;
    color: var(--light-color);
    border-radius: 20px;
    animation: fadeInUp 1s ease forwards;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.slider-controls {
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.prev-slide:hover,
.next-slide:hover {
    background-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    margin: 0 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.headline {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    /* margin: 50px auto 20px auto; */
    color: var(--primary-color);
    /* Ou use uma cor que combine com seu tema */
    max-width: 90%;
}

/* ===== SOBRE SECTION ===== */
.sobre-section {
    background-color: var(--light-color);
    padding-bottom: 15px !important;
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#typing {
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid orange;
    display: block;
    text-align: center;
    margin: 0 auto;
}

#typing2 {
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid orange;
    display: none;
    margin-top: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@keyframes typing {
    from {
        width: 0ch;
    }

    to {
        width: var(--text-length);
    }
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: orange;
    }
}

.sobre-text {
    flex: 1;
}

.sobre-text h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.sobre-text p {
    margin-bottom: 1.5rem;
}

.diferenciais {
    margin-top: 1rem;
}

.diferenciais li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.diferenciais li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.sobre-image {
    flex: 1;
    position: relative;
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    background-image: url('../img/sede_DouradoTec.png');
    background-size: cover;
    background-position: center;
}

.tech-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.tech-decoration::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* ===== SERVIÇOS SECTION ===== */
.servicos-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
    padding-bottom: 15px !important;
}

.servicos-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

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

.servico-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.servico-card:hover::before {
    height: 100%;
}

.servico-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    background-color: var(--primary-color);
}

.servico-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.servico-card:hover .servico-icon i {
    color: white;
}

.servico-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.servico-card p {
    color: var(--text-light);
}

/* ===== PORTFÓLIO SECTION ===== */
.portfolio-section {
    background-color: var(--light-color);
}

.portfolio-carousel {
    position: relative;
    padding: 2rem 0;
}

.portfolio-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    transform: translateY(-50%);
    pointer-events: none;
}

.prev-portfolio,
.next-portfolio {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.2rem;
    pointer-events: auto;
    box-shadow: var(--box-shadow);
}

.prev-portfolio:hover,
.next-portfolio:hover {
    background-color: var(--primary-color);
    color: white;
}

.portfolio-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.portfolio-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(100%);
}

.portfolio-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(1) .portfolio-image {
    background-image: url('../img/pscinalista_denise.jpg');
}

.portfolio-item:nth-child(2) .portfolio-image {
    background-image: url('../img/ft_link.png');
}

.portfolio-item:nth-child(3) .portfolio-image {
    background-image: url('../img/casamento_dourado.png');
}

.portfolio-item:nth-child(4) .portfolio-image {
    background-image: url('../img/erp_fiscal.png');
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(45, 86, 127, 0.65);
    color: white;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition);
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(5px);
}

.portfolio-item.active .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-ver-projeto {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-ver-projeto:hover {
    background-color: white;
    color: var(--primary-color);
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos-section {
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.depoimentos-section .section-header h2,
.depoimentos-section .section-header p {
    color: white;
}

.depoimentos-carousel {
    position: relative;
    padding: 2rem 0;
}

.depoimentos-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.depoimento-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateX(100%);
}

.depoimento-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.depoimento-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aspas {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.depoimento-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.cliente-info {
    display: flex;
    align-items: center;
}

.cliente-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary-color);
}

.depoimento-item:nth-child(1) .cliente-foto {
    background-image: url('https://randomuser.me/api/portraits/women/65.jpg');
}

.depoimento-item:nth-child(2) .cliente-foto {
    background-image: url('https://randomuser.me/api/portraits/men/32.jpg');
}

.depoimento-item:nth-child(3) .cliente-foto {
    background-image: url('https://randomuser.me/api/portraits/women/44.jpg');
}

.cliente-dados h4 {
    color: white;
    margin-bottom: 0.2rem;
}

.cliente-dados p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}

.depoimentos-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-depoimento,
.next-depoimento {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.prev-depoimento:hover,
.next-depoimento:hover {
    background-color: var(--primary-color);
}

.depoimentos-dots {
    display: flex;
    margin: 0 1rem;
}

.depoimentos-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.depoimentos-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ===== CONTATO SECTION ===== */
.contato-section {
    background-color: var(--light-color);
    position: relative;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contato-info {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 10px;
    color: white;
    height: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.info-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.social-media h4 {
    color: white;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== DEV BOY ANIMATION ===== */
.dev-boy-container {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    font-family: 'Courier New', monospace;
}

#dev-boy-anim {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 45, 146, 0.3)) drop-shadow(0 0 10px rgba(0, 247, 255, 0.2));
}

/* Respiração sutil do corpo */
.boy-body {
    animation: breathe-light 4s infinite ease-in-out;
}

/* Movimento de digitação nas mãos */
.left-hand {
    animation: typing-left 0.12s infinite alternate ease-in-out;
    transform-origin: 160px 290px;
}

.right-hand {
    animation: typing-right 0.15s infinite alternate ease-in-out;
    transform-origin: 340px 290px;
}

/* Brilho pulsante da tela */
.screen-glow {
    animation: screen-pulse-neon 3s infinite ease-in-out;
}

/* Linhas de código rolando */
.code-scroll {
    animation: scroll-code 20s linear infinite;
}

/* Brilho dos fones */
.headphone-glow {
    animation: headphone-pulse 2s infinite alternate ease-in-out;
}

/* Reflexo nos óculos */
.glasses-reflection {
    animation: glasses-glow 2.5s infinite alternate ease-in-out;
}

/* Cursor piscando */
.cursor-blink {
    animation: cursor-blink 1s step-end infinite;
}

/* Partículas de código */
.code-particle {
    position: absolute;
    text-shadow: 0 0 10px currentColor;
    font-weight: bold;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: floatUpParticle 2.5s linear forwards;
}

@keyframes breathe-light {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes typing-left {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(4px) rotate(2deg);
    }
}

@keyframes typing-right {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(3px) rotate(-1.5deg);
    }
}

@keyframes screen-pulse-neon {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scroll-code {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200px);
    }
}

@keyframes headphone-pulse {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes glasses-glow {
    0% {
        opacity: 0.3;
        fill: #00f7ff;
    }

    50% {
        opacity: 0.5;
        fill: #ff2d92;
    }

    100% {
        opacity: 0.4;
        fill: #a855f7;
    }
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 0.9;
    }

    50% {
        opacity: 0;
    }
}

@keyframes floatUpParticle {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }

    100% {
        transform: translateY(-120px) scale(0.5);
        opacity: 0;
    }
}

.contato-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.btn-enviar {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    justify-content: center !important;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: #aaa;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-empresa {
    text-align: center;
}

.footer-empresa h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.footer-empresa h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-empresa h2 span {
    color: var(--primary-color);
}

.footer-empresa p {
    margin-bottom: 1.5rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
    text-align: center;
    display: inline-block;
}

.footer-links h3,
.footer-contato h3 {
    width: 100%;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    text-align: center;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contato-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.footer-contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #aaa;
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
    width: fit-content;
}

.footer-contato-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contato-item span,
.footer-contato-item a {
    color: #aaa;
    line-height: 1.6;
}

.footer-contato-item a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .slide-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .sobre-content {
        flex-direction: column;
    }

    .sobre-image {
        width: 100%;
        margin-top: 2rem;
    }

    .image-container {
        height: 250px;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: auto;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 2rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-radius: 0 0 0 15px;
    }

    .nav-menu .menu.active {
        right: 0;
    }

    /* Título do menu mobile */
    .nav-menu .menu::before {
        content: 'Menu';
        display: block;
        width: 100%;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--secondary-color);
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid #eee;
    }

    .nav-menu .menu li {
        margin: 0.8rem 0;
        width: 100%;
    }

    .nav-menu .menu a {
        color: var(--secondary-color) !important;
        width: 100%;
        display: block;
    }

    .btn-contato {
        width: 100%;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 1.4rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content {
        max-width: 90%;
        padding: 1rem;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .portfolio-container {
        height: 300px;
    }

    .portfolio-item {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 1.8rem;
    }

    .portfolio-item {
        height: 300px;
    }

    .depoimento-content {
        padding: 1.5rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}