     :root {
         --primary: #0a192f;
         --secondary: #0a2c5f;
         --accent: #08c8f3;
         --accent-dark: #52d4b4;
         --text-primary: #ffffff;
         --text-secondary: #ccd6f6;
         --text-muted: #8892b0;
         --black: #020c1b;
         --white: #e6f1ff;
         --transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
     }

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

     ::-webkit-scrollbar {
         width: 10px;
         height: 10px;
     }

     ::-webkit-scrollbar-track {
         background: rgba(10, 25, 47, 0.5);
         border-radius: 10px;
     }

     ::-webkit-scrollbar-thumb {
         background: var(--accent);
         border-radius: 10px;
         transition: var(--transition);
     }

     ::-webkit-scrollbar-thumb:hover {
         background: var(--accent-dark);
         transform: scale(1.05);
     }

     html {
         scrollbar-width: thin;
         scrollbar-color: var(--accent) rgba(10, 25, 47, 0.5);
     }

     html {
         scroll-behavior: smooth;
     }

     body {
         font-family: 'Inter', sans-serif;
         background-color: var(--primary);
         color: var(--text-primary);
         line-height: 1.6;
         overflow-x: hidden;
     }

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

     .navbar {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         background-color: rgba(10, 25, 47, 0.9);
         backdrop-filter: blur(10px);
         z-index: 1000;
         padding: 20px 0;
         transition: var(--transition);
     }

     .navbar.scrolled {
         padding: 15px 0;
         box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
     }

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

     .logo {
         font-size: 1.8rem;
         font-weight: 700;
         color: var(--accent);
         text-decoration: none;
         transition: var(--transition);
         font-family: 'Playfair Display', serif;
         letter-spacing: 1px;
     }

     .logo:hover {
         transform: scale(1.05);
         text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
     }

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

     .nav-links a {
         color: var(--text-secondary);
         text-decoration: none;
         font-weight: 500;
         font-size: 1rem;
         position: relative;
         transition: var(--transition);
         padding: 5px 0;
     }

     .nav-links a:hover {
         color: var(--accent);
     }

     .nav-links a::before {
         content: '';
         position: absolute;
         width: 0;
         height: 2px;
         bottom: 0;
         left: 0;
         background-color: var(--accent);
         transition: var(--transition);
         transform-origin: left;
     }

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

     .nav-links a::after {
         content: attr(data-text);
         position: absolute;
         top: 0;
         left: 0;
         width: 0;
         overflow: hidden;
         color: var(--accent);
         white-space: nowrap;
         transition: var(--transition);
     }

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

     .nav-links li:nth-child(1) a {
         animation: fadeInDown 0.5s ease forwards 0.2s;
     }

     .nav-links li:nth-child(2) a {
         animation: fadeInDown 0.5s ease forwards 0.3s;
     }

     .nav-links li:nth-child(3) a {
         animation: fadeInDown 0.5s ease forwards 0.4s;
     }

     .nav-links li:nth-child(4) a {
         animation: fadeInDown 0.5s ease forwards 0.5s;
     }

     .nav-links li:nth-child(5) a {
         animation: fadeInDown 0.5s ease forwards 0.6s;
     }

     .hamburger {
         display: none;
         cursor: pointer;
         z-index: 1001;
         transition: var(--transition);
     }

     .hamburger div {
         width: 25px;
         height: 3px;
         background-color: var(--text-secondary);
         margin: 5px;
         transition: var(--transition);
     }

     .hero {
         min-height: 100vh;
         display: flex;
         align-items: center;
         padding-top: 80px;
         background: linear-gradient(to bottom, var(--primary), var(--black));
         position: relative;
         overflow: hidden;
     }

     .hero::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.1) 0%, transparent 30%),
             radial-gradient(circle at 80% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 30%);
         opacity: 0.5;
         z-index: 0;
     }

     .hero .container {
         position: relative;
         z-index: 1;
     }

     .hero h1 {
         font-size: clamp(2.5rem, 5vw, 5rem);
         font-weight: 700;
         margin-bottom: 20px;
         line-height: 1.1;
         opacity: 0;
         animation: fadeInUp 1s ease forwards 0.5s;
         font-family: 'Playfair Display', serif;
         position: relative;
     }

     .hero h1 span {
         color: var(--accent);
         position: relative;
         display: inline-block;
     }

     .typewriter {
         display: inline-block;
         position: relative;
         color: var(--accent);
     }

     .delay-1 {
         transition-delay: 0.2s;
     }

     .delay-2 {
         transition-delay: 0.4s;
     }

     .delay-3 {
         transition-delay: 0.6s;
     }

     .reveal.delay-1,
     .reveal-left.delay-1,
     .reveal-right.delay-1,
     .reveal-scale.delay-1 {
         transition-delay: 0.2s;
     }

     .reveal.delay-2,
     .reveal-left.delay-2,
     .reveal-right.delay-2,
     .reveal-scale.delay-2 {
         transition-delay: 0.4s;
     }

     .reveal.delay-3,
     .reveal-left.delay-3,
     .reveal-right.delay-3,
     .reveal-scale.delay-3 {
         transition-delay: 0.6s;
     }

     @keyframes blink-caret {

         from,
         to {
             opacity: 0
         }

         50% {
             opacity: 1
         }
     }

     @keyframes typing {
         from {
             width: 0
         }

         to {
             width: 100%
         }
     }

     @keyframes blink-caret {

         from,
         to {
             border-color: transparent
         }

         50% {
             border-color: var(--accent)
         }
     }

     .hero p {
         font-size: clamp(1rem, 2vw, 1.5rem);
         max-width: 600px;
         margin-bottom: 30px;
         color: var(--text-secondary);
         opacity: 0;
         animation: fadeInUp 1s ease forwards 0.7s;
         position: relative;
     }

     .hero .btn {
         opacity: 0;
         animation: fadeInUp 1s ease forwards 0.9s;
     }

     .hero-social {
         display: flex;
         gap: 20px;
         margin-top: 40px;
         opacity: 0;
         animation: fadeIn 1s ease forwards 1.1s;
     }

     .hero-social a {
         color: var(--text-secondary);
         font-size: 1.5rem;
         transition: var(--transition);
         position: relative;
         overflow: hidden;
         width: 40px;
         height: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         border: 1px solid rgba(100, 255, 218, 0.3);
     }

     .hero-social a:hover {
         color: var(--accent);
         transform: translateY(-5px);
         box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
         border-color: var(--accent);
     }

     .hero-social a::before {
         content: '';
         position: absolute;
         width: 100%;
         height: 100%;
         z-index: -1;
         transform: scale(0);
         border-radius: 50%;
         transition: var(--transition);
     }

     .hero-social a:hover::before {
         transform: scale(1);
     }

     .particles {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         z-index: 0;
         overflow: hidden;
     }

     .particle {
         position: absolute;
         background-color: var(--accent);
         border-radius: 50%;
         opacity: 0.3;
         animation: float linear infinite;
     }

     .sobre {
         padding: 150px 0;
         background-color: var(--secondary);
         position: relative;
         overflow: hidden;
     }

     .sobre::before {
         content: '';
         position: absolute;
         top: -50%;
         left: -50%;
         width: 200%;
         height: 200%;
         background: radial-gradient(circle, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
         z-index: 0;
         animation: rotate 60s linear infinite;
     }

     .sobre .container {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 50px;
         align-items: center;
         position: relative;
         z-index: 1;
     }

     .sobre h2 {
         font-size: 2.5rem;
         margin-bottom: 30px;
         color: var(--accent);
         position: relative;
         display: inline-block;
         font-family: 'Playfair Display', serif;
     }


     .sobre p {
         margin-bottom: 20px;
         color: var(--text-secondary);
         line-height: 1.8;
         position: relative;
     }

     .sobre p.highlight {
         background: linear-gradient(90deg, rgba(100, 255, 218, 0.1), transparent);
         padding: 15px;
         border-left: 3px solid var(--accent);
         border-radius: 0 5px 5px 0;
     }

     .sobre-img {
         position: relative;
         max-width: 400px;
         margin: 0 auto;
         perspective: 1000px;
     }

     .sobre-img-inner {
         position: relative;
         transform-style: preserve-3d;
         transition: var(--transition);
         transform: rotateY(0deg) rotateX(0deg);
     }

     .sobre-img:hover .sobre-img-inner {
         transform: rotateY(5deg) rotateX(5deg);
     }

     .sobre-img img {
         width: 100%;
         border-radius: 5px;
         filter: grayscale(100%) contrast(1);
         transition: var(--transition);
         transform: translateZ(20px);
     }

     .sobre-img:hover img {
         filter: none;
     }

     .sobre-img::before {
         content: '';
         position: absolute;
         width: 100%;
         height: 100%;
         border: 2px solid var(--accent);
         border-radius: 5px;
         top: 20px;
         left: 20px;
         z-index: -1;
         transition: var(--transition);
         transform: translateZ(-20px);
     }

     .sobre-img:hover::before {
         top: 15px;
         left: 15px;
         box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
     }

     .portfolio {
         padding: 150px 0;
         background-color: var(--primary);
         position: relative;
         overflow: hidden;
     }

     .portfolio::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(100, 255, 218, 0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>') repeat;
         opacity: 0.1;
         z-index: 0;
     }

     .portfolio .container {
         position: relative;
         z-index: 1;
     }

     .portfolio h2 {
         font-size: 2.5rem;
         margin-bottom: 50px;
         color: var(--accent);
         position: relative;
         display: inline-block;
         font-family: 'Playfair Display', serif;
     }



     .projetos-grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
         gap: 30px;
     }

     .projeto {
         background-color: var(--secondary);
         border-radius: 10px;
         overflow: hidden;
         transition: var(--transition);
         position: relative;
         opacity: 0;
         transform: translateY(30px);
         box-shadow: 0 5px 15px rgba(2, 12, 27, 0.5);
     }

     .projeto.animated {
         opacity: 1;
         transform: translateY(0);
     }

     .projeto:nth-child(1) {
         animation: fadeInUp 0.8s ease forwards 0.2s;
     }

     .projeto:nth-child(2) {
         animation: fadeInUp 0.8s ease forwards 0.4s;
     }

     .projeto:nth-child(3) {
         animation: fadeInUp 0.8s ease forwards 0.6s;
     }

     .projeto:hover {
         transform: translateY(-10px) scale(1.02);
         box-shadow: 0 15px 30px -10px rgba(100, 255, 218, 0.3);
     }

     .projeto-img {
         height: 220px;
         overflow: hidden;
         position: relative;
     }

     .projeto-img::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: linear-gradient(to bottom, transparent 60%, rgba(10, 25, 47, 0.9));
         z-index: 1;
     }

     .projeto-img img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.8s ease;
     }

     .projeto:hover .projeto-img img {
         transform: scale(1.1);
     }

     .projeto-content {
         padding: 25px;
         position: relative;
         z-index: 2;
     }

     .projeto h3 {
         font-size: 1.5rem;
         margin-bottom: 15px;
         color: var(--white);
         font-weight: 700;
         position: relative;
         display: inline-block;
     }

     .projeto h3::after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         width: 50px;
         height: 2px;
         background-color: var(--accent);
         transition: var(--transition);
     }

     .projeto:hover h3::after {
         width: 100%;
     }

     .projeto p {
         color: var(--text-muted);
         margin-bottom: 20px;
         min-height: 60px;
     }

     .projeto-tech {
         display: flex;
         flex-wrap: wrap;
         gap: 10px;
         margin-bottom: 20px;
     }

     .projeto-tech span {
         font-size: 0.8rem;
         color: var(--accent);
         background-color: rgba(100, 255, 218, 0.1);
         padding: 5px 10px;
         border-radius: 20px;
         transition: var(--transition);
     }

     .projeto:hover .projeto-tech span {
         background-color: rgba(100, 255, 218, 0.2);
     }

     .projeto-links {
         display: flex;
         gap: 15px;
     }

     .projeto-links a {
         color: var(--text-secondary);
         font-size: 1.2rem;
         transition: var(--transition);
         position: relative;
     }

     .projeto-links a::after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         width: 0;
         height: 2px;
         background-color: var(--accent);
         transition: var(--transition);
     }

     .projeto-links a:hover {
         color: var(--accent);
     }

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

     .habilidades {
         padding: 150px 0;
         background-color: var(--secondary);
         position: relative;
         overflow: hidden;
     }

     .habilidades::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(100, 255, 218, 0.05)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>') repeat;
         opacity: 0.1;
         z-index: 0;
     }

     .habilidades .container {
         position: relative;
         z-index: 1;
     }

     .habilidades h2 {
         font-size: 2.5rem;
         margin-bottom: 50px;
         color: var(--accent);
         position: relative;
         display: inline-block;
         font-family: 'Playfair Display', serif;
     }

     .skills-container {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
         gap: 30px;
     }

     .skill-category {
         background-color: rgba(10, 25, 47, 0.5);
         padding: 30px;
         border-radius: 10px;
         transition: var(--transition);
         opacity: 0;
         transform: translateY(30px);
         border: 1px solid rgba(100, 255, 218, 0.1);
         backdrop-filter: blur(5px);
     }

     .skill-category.animated {
         opacity: 1;
         transform: translateY(0);
     }

     .skill-category:nth-child(1) {
         animation: fadeInUp 0.8s ease forwards 0.2s;
     }

     .skill-category:nth-child(2) {
         animation: fadeInUp 0.8s ease forwards 0.4s;
     }

     .skill-category:nth-child(3) {
         animation: fadeInUp 0.8s ease forwards 0.6s;
     }

     .skill-category:nth-child(4) {
         animation: fadeInUp 0.8s ease forwards 0.8s;
     }

     .skill-category:hover {
         transform: translateY(-10px) scale(1.02);
         box-shadow: 0 15px 30px -10px rgba(100, 255, 218, 0.2);
         border-color: var(--accent);
     }

     .skill-category h3 {
         font-size: 1.3rem;
         margin-bottom: 20px;
         color: var(--white);
         display: flex;
         align-items: center;
         gap: 10px;
         font-weight: 600;
     }

     .skill-category h3 i {
         color: var(--accent);
         font-size: 1.5rem;
     }

     .skill-list {
         list-style: none;
     }

     .skill-list li {
         margin-bottom: 15px;
         color: var(--text-secondary);
         position: relative;
         padding-left: 25px;
         transition: var(--transition);
     }

     .skill-list li:hover {
         color: var(--accent);
         transform: translateX(5px);
     }

     .skill-list li::before {
         content: '▹';
         position: absolute;
         left: 0;
         color: var(--accent);
         font-size: 1.2rem;
     }

     .contato {
         padding: 150px 0;
         background-color: var(--primary);
         position: relative;
         overflow: hidden;
     }

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

     .contato .container {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 50px;
         position: relative;
         z-index: 1;
     }

     .contato h2 {
         font-size: 2.5rem;
         margin-bottom: 30px;
         color: var(--accent);
         position: relative;
         display: inline-block;
         font-family: 'Playfair Display', serif;
     }

     .contato-info {
         opacity: 0;
         animation: fadeInLeft 0.8s ease forwards 0.2s;
     }

     .contato-info p {
         color: var(--text-secondary);
         margin-bottom: 30px;
         line-height: 1.8;
     }

     .contato-social {
         display: flex;
         gap: 20px;
     }

     .contato-social a {
         color: var(--text-secondary);
         font-size: 1.5rem;
         transition: var(--transition);
         position: relative;
         width: 50px;
         height: 50px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         border: 1px solid rgba(100, 255, 218, 0.3);
     }

     .contato-social a:hover {
         color: var(--accent);
         transform: translateY(-5px);
         box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
         border-color: var(--accent);
     }

     .contato-social a::before {
         content: '';
         position: absolute;
         width: 100%;
         height: 100%;
         z-index: -1;
         transform: scale(0);
         border-radius: 50%;
         transition: var(--transition);
     }

     .contato-social a:hover::before {
         transform: scale(1);
     }

     .contato-form {
         opacity: 0;
         animation: fadeInRight 0.8s ease forwards 0.4s;
     }

     .contato-form form {
         display: flex;
         flex-direction: column;
         gap: 20px;
     }

     .form-group {
         position: relative;
     }

     .form-group label {
         position: absolute;
         top: 15px;
         left: 15px;
         color: var(--text-muted);
         transition: var(--transition);
         pointer-events: none;
     }

     .contato-form input,
     .contato-form textarea {
         width: 100%;
         padding: 15px;
         background-color: var(--secondary);
         border: 1px solid rgba(100, 255, 218, 0.1);
         border-radius: 5px;
         color: var(--text-secondary);
         font-family: 'Inter', sans-serif;
         transition: var(--transition);
     }

     .contato-form input:focus,
     .contato-form textarea:focus {
         outline: none;
         border-color: var(--accent);
         box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
     }

     .contato-form input:focus+label,
     .contato-form input:not(:placeholder-shown)+label,
     .contato-form textarea:focus+label,
     .contato-form textarea:not(:placeholder-shown)+label {
         top: -10px;
         left: 10px;
         font-size: 0.8rem;
         background-color: var(--secondary);
         padding: 0 5px;
         color: var(--accent);
     }

     .contato-form textarea {
         resize: vertical;
         min-height: 150px;
     }

     .whatsapp-float {
         position: fixed;
         bottom: 30px;
         right: 30px;
         width: 60px;
         height: 60px;
         background-color: #25D366;
         color: #FFF;
         border-radius: 50%;
         text-align: center;
         font-size: 30px;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
         z-index: 100;
         display: flex;
         align-items: center;
         justify-content: center;
         transition: var(--transition);
         animation: pulse 2s infinite;
     }

     .whatsapp-float:hover {
         transform: scale(1.1) rotate(10deg);
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
     }

     .whatsapp-float::after {
         content: '';
         position: absolute;
         width: 100%;
         height: 100%;
         border: 2px solid #25D366;
         border-radius: 50%;
         animation: ripple 1.5s infinite;
         opacity: 0;
         z-index: -1;
     }

     .footer {
         padding: 30px 0;
         background-color: var(--black);
         text-align: center;
         position: relative;
     }

     .footer::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 1px;
         background: linear-gradient(90deg, transparent, var(--accent), transparent);
     }

     .footer p {
         color: var(--text-muted);
         font-size: 0.9rem;
     }

     .footer a {
         color: var(--accent);
         text-decoration: none;
         transition: var(--transition);
     }

     .footer a:hover {
         text-decoration: underline;
     }

     .btn {
         display: inline-block;
         padding: 15px 35px;
         background-color: transparent;
         color: var(--accent);
         border: 1px solid var(--accent);
         border-radius: 5px;
         font-size: 1rem;
         font-weight: 500;
         text-decoration: none;
         cursor: pointer;
         transition: var(--transition);
         position: relative;
         overflow: hidden;
         z-index: 1;
     }

     .btn::before {
         content: '';
         position: absolute;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100%;
         background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
         transition: var(--transition);
         z-index: -1;
     }

     .btn:hover {
         background-color: rgba(100, 255, 218, 0.1);
         transform: translateY(-5px);
         box-shadow: 0 10px 20px -5px rgba(100, 255, 218, 0.5);
     }

     .btn:hover::before {
         left: 100%;
     }

     @keyframes fadeIn {
         from {
             opacity: 0;
         }

         to {
             opacity: 1;
         }
     }

     @keyframes fadeInUp {
         from {
             opacity: 0;
             transform: translateY(30px);
         }

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

     @keyframes fadeInDown {
         from {
             opacity: 0;
             transform: translateY(-30px);
         }

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

     @keyframes fadeInLeft {
         from {
             opacity: 0;
             transform: translateX(-30px);
         }

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

     @keyframes fadeInRight {
         from {
             opacity: 0;
             transform: translateX(30px);
         }

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

     @keyframes pulse {
         0% {
             transform: scale(1);
             box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
         }

         70% {
             transform: scale(1.05);
             box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
         }

         100% {
             transform: scale(1);
             box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
         }
     }

     @keyframes ripple {
         0% {
             transform: scale(1);
             opacity: 0.5;
         }

         100% {
             transform: scale(1.5);
             opacity: 0;
         }
     }

     @keyframes float {

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

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

     @keyframes rotate {
         0% {
             transform: rotate(0deg);
         }

         100% {
             transform: rotate(360deg);
         }
     }

     @keyframes underlineExpand {
         from {
             transform: scaleX(0);
         }

         to {
             transform: scaleX(1);
         }
     }

     @keyframes typing {
         from {
             width: 0
         }

         to {
             width: 100%
         }
     }

     @keyframes blink-caret {

         from,
         to {
             border-color: transparent
         }

         50% {
             border-color: var(--accent)
         }
     }

     @keyframes fadeIn {
         from {
             opacity: 0;
             transform: translateY(20px);
         }

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

     .reveal {
         opacity: 0;
         transition: all 1s ease;
     }

     .reveal.active {
         opacity: 1;
         animation: fadeIn 1s ease forwards;
     }

     .reveal-left {
         opacity: 0;
         transform: translateX(-30px);
         transition: all 1s ease;
     }

     .reveal-left.active {
         opacity: 1;
         transform: translateX(0);
     }

     .reveal-right {
         opacity: 0;
         transform: translateX(30px);
         transition: all 1s ease;
     }

     .reveal-right.active {
         opacity: 1;
         transform: translateX(0);
     }

     @media (max-width: 992px) {

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

         .sobre-img {
             order: -1;
             margin-bottom: 50px;
         }

         .contato-info {
             margin-bottom: 50px;
         }
     }

     @media (max-width: 768px) {
         .navbar .container {
            padding-top: 20px;
         }

         .nav-links {
             position: fixed;
             top: 0;
             right: -100%;
             width: 70%;
             height: 100vh;
             background-color: var(--secondary);
             flex-direction: column;
             align-items: center;
             justify-content: center;
             gap: 40px;
             transition: var(--transition);
             backdrop-filter: blur(10px);
         }

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

         .hamburger {
             display: block;
         }

         .hamburger.active div:nth-child(1) {
             transform: rotate(-45deg) translate(-5px, 6px);
         }

         .hamburger.active div:nth-child(2) {
             opacity: 0;
         }

         .hamburger.active div:nth-child(3) {
             transform: rotate(45deg) translate(-5px, -6px);
         }

         .projetos-grid {
             grid-template-columns: 1fr;
         }

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

         .hero h1 {
             font-size: 3rem;
         }

         .hero p {
             font-size: 1.1rem;
         }

         #form-contato {
             border: 3px solid #08c8f3;
             padding: 20px;
         }
     }