:root {
    --dark-green: #2C3E50;
    --light-green: #8b9e7c;
    --cream: #f5f0e8;
    --orange: #87CEEB;
    --yellow: #A8E6CF;
    --black: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: var(--dark-green);
    border-bottom: 1px solid #1b2530;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f5b942 0%, #d67c4a 100%);
    transform: rotate(45deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--yellow);
}

.cta-button {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 185, 66, 0.4);
}

/* Hero Section */
.hero {
    background: var(--dark-green);
    min-height: 100vh;
    padding: 120px 60px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 185, 66, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    position: relative;
}

.decorative-stars {
    position: absolute;
    top: -40px;
    left: -60px;
}

.star {
    color: var(--yellow);
    font-size: 40px;
    display: block;
    animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(2) {
    margin-left: 20px;
    font-size: 28px;
    animation-delay: 0.3s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.image-container {
    position: relative;
    width: 450px;
    height: 550px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    mix-blend-mode: multiply;
}

.hero-text-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--orange);
    padding: 30px;
    max-width: 300px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-text-box p {
    color: var(--black);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-right h1 {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 900;
    line-height: 0.9;
    color: var(--cream);
    text-transform: uppercase;
    margin-bottom: 40px;
    position: relative;
}

.folio-text {
    display: block;
    background: linear-gradient(180deg, transparent 50%, var(--yellow) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 2px var(--yellow);
    animation: slideIn 1s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.social-links {
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.social-links div {
    margin: 5px 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--black);
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator:hover {
    background: var(--orange);
    transform: translateX(-50%) translateY(-5px);
}

/* About Section */
.about {
    background: var(--cream);
    padding: 100px 60px;
    position: relative;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 30px;
}

.about-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 30px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FFB6B9;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px #FF6B6B;
}

.about-right {
    position: relative;
}

.profile-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--dark-green);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    display: inline-block;
    background-color: #FF6B6B;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    margin: 10px 5px;
}

.contact-box {
    background: var(--black);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-box p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Resume Section */
.resume {
    background: var(--dark-green);
    padding: 100px 60px;
    position: relative;
}

.resume-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    color: transparent;
    -webkit-text-stroke: 2px var(--yellow);
    text-align: right;
    line-height: 0.8;
    margin-bottom: 60px;
    letter-spacing: 5px;
}

.resume-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.resume-section {
    margin-bottom: 50px;
}

.resume-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--yellow);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-bg {
    background: var(--orange);
    padding: 40px;
    border-radius: 8px;
}

.section-bg h3 {
    color: var(--black);
}

.resume-item {
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
    color: var(--cream);
}

.resume-item::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 20px;
}

.resume-item .year {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--yellow);
}

.resume-item .title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.resume-item .subtitle {
    font-size: 15px;
    opacity: 0.8;
}

.section-bg .resume-item {
    color: var(--black);
}

.section-bg .resume-item::before {
    color: var(--black);
}

.section-bg .resume-item .year {
    color: var(--black);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.skill-category h4 {
    color: var(--cream);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.skill-category {
    margin-top: 30px;
}

.software-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.icon-box {
    min-width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
}

.icon-box i {
    font-size: 42px;
}

.icon-box {
    color: #eaeaea;
}

.icon-box.canva {
    color: #00C4CC;
    font-weight: 600;
}

.skill-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-tag {
    background: var(--black);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.language-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.language-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 5px;
}

.language-item p {
    color: var(--cream);
    font-size: 14px;
    opacity: 0.8;
}

/* ============================================
   PROJECTS SECTION - NEW DESIGN
   ============================================ */

.activities {
    background: var(--cream);
    padding: 100px 60px;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

.projects-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--black);
    margin-bottom: 60px;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.project-banner {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-icon {
    font-size: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
}

.project-content {
    padding: 30px;
}

.project-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-brief {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.97) 0%, rgba(26, 26, 26, 0.97) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h4 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--yellow);
    margin-bottom: 20px;
    font-weight: 700;
}

.project-overlay p {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tag {
    background: rgba(168, 230, 207, 0.2);
    color: var(--yellow);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--yellow);
    transition: all 0.3s ease;
}

.project-tag:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    nav {
        padding: 20px 40px;
    }

    nav ul {
        gap: 25px;
    }

    .hero,
    .about,
    .resume,
    .activities {
        padding: 80px 40px;
    }

    .hero-content,
    .about-content,
    .resume-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-right h1 {
        font-size: 100px;
    }

    .about-left h2 {
        font-size: 60px;
    }

    .resume-title {
        font-size: 120px;
        text-align: center;
    }

    .image-container {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-text-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .language-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .projects-container h3 {
        font-size: 60px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav ul {
        display: none; /* Hide menu - you may want to add hamburger menu */
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .about,
    .resume,
    .activities {
        padding: 60px 20px;
    }

    .hero-content,
    .about-content,
    .resume-content {
        gap: 40px;
    }

    /* Hero adjustments */
    .hero-right h1 {
        font-size: 60px;
        margin-bottom: 30px;
    }

    .decorative-stars {
        top: -20px;
        left: -20px;
    }

    .star {
        font-size: 30px;
    }

    .image-container {
        height: 400px;
    }

    .hero-text-box {
        padding: 20px;
        font-size: 14px;
        max-width: 250px;
    }

    .social-links {
        font-size: 14px;
    }

    .scroll-indicator {
        padding: 15px 25px;
        font-size: 14px;
    }

    /* About section */
    .about-left h2 {
        font-size: 42px;
    }

    .about-left p {
        font-size: 16px;
    }

    .profile-card {
        padding: 25px;
    }

    .profile-image-container {
        height: 300px;
    }

    .badge {
        padding: 10px 20px;
        font-size: 14px;
        margin: 5px 3px;
    }

    .contact-box h3 {
        font-size: 28px;
    }

    /* Resume section */
    .resume-title {
        font-size: 70px;
        margin-bottom: 40px;
    }

    .resume-section h3 {
        font-size: 36px;
    }

    .section-bg {
        padding: 25px;
    }

    .resume-item {
        padding-left: 30px;
    }

    .resume-item .year {
        font-size: 16px;
    }

    .resume-item .title {
        font-size: 18px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .icon-box {
        min-width: 80px;
        height: 80px;
    }

    .icon-box i {
        font-size: 36px;
    }

    .language-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .language-item {
        padding: 20px;
    }

    .language-item h5 {
        font-size: 20px;
    }

    /* Projects section */
    .projects-container h3 {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .project-banner {
        height: 160px;
    }

    .project-icon {
        font-size: 60px;
    }

    .project-content {
        padding: 25px;
    }

    .project-content h4 {
        font-size: 24px;
    }

    .project-brief {
        font-size: 15px;
    }

    .project-overlay {
        padding: 30px;
    }

    .project-overlay h4 {
        font-size: 26px;
    }

    .project-overlay p {
        font-size: 15px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .hero-right h1 {
        font-size: 48px;
    }

    .about-left h2 {
        font-size: 36px;
    }

    .resume-title {
        font-size: 50px;
    }

    .resume-section h3 {
        font-size: 28px;
    }

    .image-container {
        height: 350px;
    }

    .hero-text-box {
        position: static;
        transform: none;
        margin-top: 20px;
        max-width: 100%;
    }

    .profile-image-container {
        height: 250px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-box h3 {
        font-size: 24px;
    }

    .section-bg {
        padding: 20px;
    }

    .icon-box {
        min-width: 70px;
        height: 70px;
    }

    .icon-box i {
        font-size: 32px;
    }

    .linkedin-link {
        padding: 12px 24px;
        font-size: 14px;
    }

    .projects-container h3 {
        font-size: 36px;
    }

    .project-banner {
        height: 140px;
    }

    .project-icon {
        font-size: 50px;
    }

    .project-content {
        padding: 20px;
    }

    .project-content h4 {
        font-size: 22px;
    }

    .project-overlay {
        padding: 25px;
    }

    .project-overlay h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .project-overlay p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .project-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}
.project-banner{
  background: url("imagens/imagem7.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .hero-right h1 {
        font-size: 40px;
    }

    .resume-title {
        font-size: 40px;
    }

    nav {
        padding: 15px;
    }

    .logo {
        font-size: 16px;
    }

    .logo-icon {
        width: 20px;
        height: 20px;
    }

    .projects-container h3 {
        font-size: 32px;
    }
}