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

@font-face {
    font-family: 'DeepSea';
    src: url('DeepSea.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



body {
    font-family: 'DeepSea', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #E8E3D4;
    min-height: 100vh;
    color: #72706D;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 16px 40px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.42) 0%, 
        rgba(180, 175, 165, 0.2) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 0 0 0 transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.52) 0%, 
        rgba(180, 175, 165, 0.26) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.nav-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 18px;
    color: #72706D;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
}

.nav-link:hover {
    color: #504D4A;
    transform: translateY(-2px);
}

.portfolio {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 40px;
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(180, 175, 165, 0.2);
    margin: 140px 0;
}

.intro-section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 120px;
}

.intro-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    width: 100%;
    max-width: 900px;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.name-widget {
    padding: 40px 60px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.45) 0%, 
        rgba(180, 175, 165, 0.22) 50%, 
        rgba(180, 175, 165, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 60px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    align-self: flex-start;
}

.photo-widget {
    width: 220px;
    min-width: 220px;
    align-self: stretch;
    background: radial-gradient(circle at center, 
        rgba(180, 175, 165, 0.45) 0%, 
        rgba(180, 175, 165, 0.22) 50%, 
        rgba(180, 175, 165, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    position: relative;
    padding: 12px;
}

.photo-widget img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}

.photo-widget:hover {
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.name-widget:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.55) 0%, 
        rgba(180, 175, 165, 0.28) 50%, 
        rgba(180, 175, 165, 0.08) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.name-widget h1 {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #72706D;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #72706D;
    padding-left: 20px;
}

.text-bubble {
    padding: 50px 60px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.4) 0%, 
        rgba(180, 175, 165, 0.18) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(18px);
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    width: 100%;
}

.text-bubble:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.5) 0%, 
        rgba(180, 175, 165, 0.24) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.text-bubble p {
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0px;
    color: #72706D;
    font-weight: 500;
    text-align: justify;
}

.floating-detail {
    padding: 16px 36px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.38) 0%, 
        rgba(180, 175, 165, 0.16) 50%, 
        rgba(180, 175, 165, 0.03) 100%);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    font-size: 18px;
    letter-spacing: 0px;
    color: #72706D;
    font-weight: 500;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    align-self: flex-start;
}

.floating-detail:hover {
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #72706D;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.work-section {
    padding: 100px 0 40px;
    scroll-margin-top: 120px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 50px 60px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.42) 0%, 
        rgba(180, 175, 165, 0.2) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    text-decoration: none;
    cursor: pointer;
}

.project-card:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.52) 0%, 
        rgba(180, 175, 165, 0.26) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #72706D;
}

.project-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #72706D;
    font-weight: 500;
    text-align: justify;
}

.skills-section {
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 120px;
}

.skill-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 600px;
}

.skill-bubble {
    padding: 18px 32px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.4) 0%, 
        rgba(180, 175, 165, 0.18) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(14px);
    border-radius: 30px;
    font-size: 20px;
    letter-spacing: 0px;
    color: #72706D;
    font-weight: 500;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
}

.skill-bubble:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.5) 0%, 
        rgba(180, 175, 165, 0.24) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.certificates-section {
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 120px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    width: 100%;
}

.certificate-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px 50px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.42) 0%, 
        rgba(180, 175, 165, 0.2) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
}

.certificate-card:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.52) 0%, 
        rgba(180, 175, 165, 0.26) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.certificate-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #72706D;
}

.certificate-date {
    font-size: 16px;
    font-weight: 500;
    color: #72706D;
    opacity: 0.8;
}

.certificate-card a {
    font-size: 15px;
    font-weight: 500;
    color: #72706D;
    text-decoration: none;
    padding: 12px 24px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.35) 0%, 
        rgba(180, 175, 165, 0.15) 50%, 
        rgba(180, 175, 165, 0.03) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
    display: inline-block;
}

.certificate-card a:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.45) 0%, 
        rgba(180, 175, 165, 0.22) 50%, 
        rgba(180, 175, 165, 0.05) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 100px 0 60px;
    scroll-margin-top: 120px;
}

.contact-widget {
    padding: 30px 60px;
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.42) 0%, 
        rgba(180, 175, 165, 0.2) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(18px);
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 transparent;
}

.contact-widget:hover {
    background: radial-gradient(ellipse at center, 
        rgba(180, 175, 165, 0.52) 0%, 
        rgba(180, 175, 165, 0.26) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.contact-link {
    font-size: 24px;
    letter-spacing: 0px;
    color: #72706D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.4s ease;
}

.contact-link:hover {
    color: #72706D;
}

.social-dots {
    display: flex;
    gap: 24px;
}

.social-dot {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at center, 
        rgba(180, 175, 165, 0.4) 0%, 
        rgba(180, 175, 165, 0.18) 50%, 
        rgba(180, 175, 165, 0.04) 100%);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 transparent;
}

.social-dot i {
    font-size: 20px;
    color: #72706D;
    transition: color 0.4s ease;
}

.social-dot:hover {
    background: radial-gradient(circle at center, 
        rgba(180, 175, 165, 0.5) 0%, 
        rgba(180, 175, 165, 0.25) 50%, 
        rgba(180, 175, 165, 0.06) 100%);
    box-shadow: 0 0 0 2px rgba(255, 100, 100, 0.5);
}

.social-dot:hover i {
    color: #72706D;
}

/* Tablets */
@media (max-width: 1024px) {
    .portfolio {
        padding: 100px 30px 80px;
    }
    
    .intro-layout {
        gap: 40px;
    }
    
    .name-widget h1 {
        font-size: 46px;
    }
    
    .text-bubble p {
        font-size: 20px;
    }
    
    .project-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile - Landscape e tablets pequenos */
@media (max-width: 768px) {
    .navbar {
        top: 15px;
        padding: 10px 20px;
        width: calc(100% - 30px);
        max-width: 600px;
    }
    
    .nav-container {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .portfolio {
        padding: 100px 24px 60px;
    }
    
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-layout {
        gap: 25px;
        align-items: flex-start;
    }
    
    .intro-content {
        gap: 25px;
    }
    
    .name-widget {
        padding: 20px 30px;
        align-self: stretch;
    }
    
    .name-widget h1 {
        font-size: 32px;
    }
    
    .photo-widget {
        width: 140px;
        min-width: 140px;
        height: auto;
        min-height: 280px;
        padding: 8px;
    }
    
    .subtitle {
        padding-left: 10px;
        font-size: 17px;
    }
    
    .text-bubble {
        padding: 30px 25px;
    }
    
    .text-bubble p {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .work-section,
    .skills-section,
    .certificates-section,
    .contact-section {
        padding: 80px 0 40px;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card {
        padding: 35px 30px;
    }
    
    .project-title {
        font-size: 19px;
    }
    
    .project-desc {
        font-size: 16px;
    }
    
    .skill-cloud {
        gap: 15px;
    }
    
    .skill-bubble {
        padding: 14px 24px;
        font-size: 17px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certificate-card {
        padding: 30px 35px;
    }
    
    .certificate-name {
        font-size: 18px;
    }
    
    .contact-widget {
        padding: 25px 40px;
    }
    
    .contact-link {
        font-size: 20px;
    }
    
    .social-dot {
        width: 45px;
        height: 45px;
    }
    
    .social-dot i {
        font-size: 18px;
    }
}

/* Mobile - Portrait */
@media (max-width: 480px) {
    .navbar {
        top: 10px;
        padding: 8px 15px;
        width: calc(100% - 20px);
    }
    
    .nav-container {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .portfolio {
        padding: 90px 16px 50px;
    }
    
    .intro-section {
        padding: 30px 0;
    }
    
    .intro-layout {
        gap: 20px;
    }
    
    .intro-content {
        gap: 20px;
    }
    
    .name-widget {
        padding: 18px 25px;
        border-radius: 40px;
    }
    
    .name-widget h1 {
        font-size: 26px;
        letter-spacing: 0.5px;
    }
    
    .photo-widget {
        width: 120px;
        min-width: 120px;
        height: auto;
        min-height: 240px;
        padding: 8px;
        border-radius: 25px;
    }
    
    .photo-widget img {
        border-radius: 18px;
    }
    
    .subtitle {
        font-size: 15px;
        padding-left: 8px;
    }
    
    .text-bubble {
        padding: 22px 18px;
        border-radius: 30px;
    }
    
    .text-bubble p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .work-section,
    .skills-section,
    .certificates-section,
    .contact-section {
        padding: 60px 0 30px;
    }
    
    .project-grid {
        gap: 25px;
    }
    
    .project-card {
        padding: 25px 20px;
        border-radius: 25px;
    }
    
    .project-title {
        font-size: 17px;
    }
    
    .project-desc {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .skill-cloud {
        gap: 12px;
    }
    
    .skill-bubble {
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 25px;
    }
    
    .certificates-grid {
        gap: 25px;
    }
    
    .certificate-card {
        padding: 25px 25px;
        border-radius: 25px;
    }
    
    .certificate-name {
        font-size: 17px;
    }
    
    .certificate-date {
        font-size: 14px;
    }
    
    .certificate-card a {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 18px;
    }
    
    .contact-widget {
        padding: 20px 30px;
        border-radius: 35px;
    }
    
    .contact-link {
        font-size: 17px;
        word-break: break-all;
    }
    
    .social-dots {
        gap: 20px;
    }
    
    .social-dot {
        width: 42px;
        height: 42px;
    }
    
    .social-dot i {
        font-size: 16px;
    }
}

/* Mobile muito pequeno */
@media (max-width: 360px) {
    .navbar {
        padding: 6px 12px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .portfolio {
        padding: 85px 12px 40px;
    }
    
    .intro-layout {
        gap: 15px;
    }
    
    .intro-content {
        gap: 15px;
    }
    
    .name-widget {
        padding: 15px 20px;
    }
    
    .name-widget h1 {
        font-size: 22px;
    }
    
    .photo-widget {
        width: 100px;
        min-width: 100px;
        min-height: 200px;
        padding: 6px;
    }
    
    .subtitle {
        font-size: 14px;
        padding-left: 6px;
    }
    
    .text-bubble {
        padding: 18px 14px;
    }
    
    .text-bubble p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .project-card {
        padding: 20px 16px;
    }
    
    .certificate-card {
        padding: 20px 20px;
    }
    
    .contact-link {
        font-size: 15px;
    }
}
