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

:root {
    --azul: #062e53;
    --bege: #c2997b;
    --offwhite: #f9f6ef;
    --azul-claro: rgba(6, 46, 83, 0.05);
    --azul-texto: rgba(6, 46, 83, 0.95);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--offwhite);
    color: var(--azul);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Barra de progresso no rodapé */
.progress-bar-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(6, 46, 83, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--bege), #d4af8a);
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(194, 153, 123, 0.5);
}


.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--azul);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--bege);
    color: var(--offwhite);
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    padding: 10px 0;
}

header.scrolled .logo {
    max-width: 200px;
}


.header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 300px;
    transition: all 0.3s ease-in-out;
}

.logo img{
    width: 100%;
}

.logo-wm {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bege);
}

.logo-text {
    font-size: 16px;
    color: var(--offwhite);
    font-weight: 500;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--offwhite);
}

nav a {
    color: var(--offwhite);
    text-decoration: none;
    margin-left: 32px;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond', serif;
    
}

nav a:hover {
    color: var(--bege);
}

@media (max-width: 1024px) {
    .header-content {
        padding: 0 24px;
    }

    .logo {
        margin: auto;
    }

    nav {
        display: none;
    }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: var(--bege);
    overflow: hidden;
}

.hero::after {
    content: '';
    display: block;
    width: 800px;
    height: 700px;
    background: url('../img/init_azul.png') no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    top: 30%;
    right: 0;
    z-index: 1;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 95px;
    color: var(--azul);
    margin-bottom: 32px;
    line-height: 1.2;
}

.hero-title span {
    display: block;
}


.hero-description {
    font-size: 20px;
    color: var(--azul-texto);
    margin-bottom: 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    text-transform: uppercase;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-block;
    width: 100%;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--bege);
    color: var(--azul);
    border-color: var(--azul);
}

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

.btn-secondary:hover {
    background: var(--azul);
    color: var(--offwhite);
    border-color: var(--azul);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--azul);
    text-transform: uppercase;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--azul);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* SECTION STYLES */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    color: var(--offwhite);
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--bege);
}


.section-title2 {
    font-size: 42px;
    color: var(--azul);
    text-align: center;
    margin-bottom: 100px;
    position: relative;
}

.section-title2::before,
.section-title2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--azul);
}

.section-title::before, .section-title2::before {
    top: -30px;
}

.section-title::after, .section-title2::after {
    bottom: -30px;
}

/* SECTION 1 - SOBRE */
.section-about {
    background: var(--azul);
    color: var(--offwhite);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-about .content {
    max-width: 900px;
    margin: 0 auto;
}

.section-about p {
    line-height: 1.9;
    margin-bottom: 28px;
}

.section-about strong {
    font-weight: 600;
}

.section-about .flex {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .section-about .flex {
        flex-direction: column;
    }
}

.section-about .profile {
    margin: 0 30px 0 0;
    text-align: center;
}

.section-about .profile img {
    border-radius: 10px;
    max-width: 300px;
    border: 3px solid var(--bege);
}

@media (max-width: 768px) {
    .section-about .profile {
        margin: 0 0 30px 0;
    }
}



/* SECTION 2 - POR QUE EU FAÇO */
.section-why {
    background: var(--bege);
    position: relative;
    overflow: hidden;
}

.section-why::before {
    content: '';
    display: block;
    width: 900px;
    height: 700px;
    background: url('../img/init_azul.png') no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    top: 0%;
    left: -20%;
    z-index: 1;
    opacity: 0.1;
}

.section-why::after {
    content: '';
    display: block;
    width: 800px;
    height: 700px;
    background: url('../img/init_azul.png') no-repeat 50% 50%;
    background-size: cover;
    position: absolute;
    bottom: 0%;
    right: -20%;
    z-index: 1;
    opacity: 0.1;
}

.section-why .content {
    max-width: 900px;
    margin: 0 auto;
}

.section-why p {

    color: var(--azul-texto);
    line-height: 1.9;
    margin-bottom: 28px;
}

.section-why strong {
    font-weight: 600;
}

.section-why ul {
    padding: 0 0 25px 25px;
}

.section-why ul li {
    color: var(--azul-texto);
}

/* SECTION 3 - QUEM SOU EU */
.section-who {
    background: var(--azul);
    color: var(--offwhite);
    position: relative;
    overflow: hidden;
}

.section-who::after {
    content: '';
    display: block;
    width: 685px;
    height: 545px;
    background: url('../img/init_white.png') no-repeat 50% 50%;
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 1;
    opacity: 0.1;
}

.section-who .content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.section-who-text p {
    line-height: 1.9;
    margin-bottom: 24px;
}

.section-who-text strong {
    font-weight: 600;
}

.section-who-text .highlight {
    color: var(--bege);
    font-weight: 600;
}

.section-who ul {
    padding: 0 0 25px 25px;
}

.section-who ul li {
    font-size: 16px;
}

/* SECTION 4 - LEGAL MAS PARA QUÊ */
.section-what {
    background: var(--bege);
    color: var(--azul);
    min-height: 100vh;
}

.section-what .content {
    max-width: 1000px;
    margin: 0 auto;
}

.card-main {
    background: var(--bege);
    border: 2px solid var(--azul);
    border-radius: 16px;
    padding: 80px;
    box-shadow: 0 20px 60px rgba(6, 46, 83, 0.1);
    position: relative;
}

@media (min-width: 768px) {
    .card-main::before {
        content: '"';
        font-family: 'Cormorant Garamond', serif;
        font-size: 180px;
        color: var(--azul);
        opacity: 0.2;
        position: absolute;
        top: -20px;
        left: 20px;
    }

    .card-main::after {
        content: '"';
        font-family: 'Cormorant Garamond', serif;
        font-size: 180px;
        color: var(--azul);
        opacity: 0.2;
        position: absolute;
        bottom: -80px;
        right: 20px;
    }
}

.card-main p {
    font-size: 18px;
    color: var(--azul-texto);
    line-height: 1.9;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.card-main em {
    font-style: italic;
    color: var(--bege);
    font-weight: 600;
}

.card-main strong {
    font-weight: 600;
}

.card-main ul {
    padding: 0 0 25px 25px;
}

.card-main ul li {
    font-size: 18px;
    color: var(--azul-texto);
}

.card-main .highlight-bege {
    color: var(--bege);
    font-weight: 600;
}

/* SECTION 5 - COMO EU FAÇO */
.section-how {
    background: var(--azul);
    color: var(--offwhite);
}

.section-how .section-title {
    color: var(--offwhite);
}

.section-how .section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--bege);
    margin-bottom: 60px;
    font-style: italic;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card-how {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--bege);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.card-how:hover {
    background: rgba(194, 153, 123, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bege);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--azul);
    stroke-width: 2;
}

.card-how h3 {
    font-size: 24px;
    color: var(--bege);
    margin-bottom: 16px;
}

.card-how p {
    font-size: 16px;
    color: rgba(249, 246, 239, 0.9);
    line-height: 1.8;
    margin-bottom: 12px;
}

.card-how strong {
    font-weight: 600;
}

/* SECTION CTA */
.section-cta {
    background: var(--bege);
    color: var(--offwhite);
    text-align: center;
}

.section-cta .content {
    max-width: 800px;
    margin: 0 auto;
}

.section-cta .section-title {
    font-size: 48px;
    margin-bottom: 32px;
}

.section-cta p {
    font-size: 20px;
    color: var(--azul-texto);
    line-height: 1.8;
    margin-bottom: 48px;
}

.section-cta .btn {
    font-size: 18px;
    padding: 20px 50px;
}

.section-cta .secondary-text {
    margin-top: 24px;
    font-size: 16px;
    color: var(--azul-texto);
}

.section-cta .secondary-text a {
    color: var(--azul);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--azul);
    transition: all 0.3s ease;
}

.section-cta .secondary-text a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background: var(--azul);
    color: rgba(249, 246, 239, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--bege);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--offwhite);
    margin-bottom: 8px;
}

.footer-logo-sub {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--bege);
}

.footer-brand {
    max-width: 340px;
}

.footer-brand img {
    width: 100%;
}

.footer-col p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-col a {
    color: rgba(249, 246, 239, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bege);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--offwhite);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: var(--offwhite);
    transition: stroke 0.3s ease;
}

.social-links a:hover svg {
    stroke: var(--azul);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(194, 153, 123, 0.2);
    padding-top: 30px;
}

.footer-bottom .prop {
    font-size: 14px;
}

.footer-bottom .dev img {
    max-width: 100px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom .prop {
        font-size: 10px;
        margin: 0 0 20px 0;
    }
 
}


/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }

    .section-who .content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    section {
        padding: 80px 0;
    }

    .card-main {
        padding: 40px 24px;
    }

    .section-why p {
        font-size: 18px;
    }

    .section-who-text p {
        font-size: 16px;
    }

    .card-main p {
        font-size: 16px;
    }
}