/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Wix Madefor Display', sans-serif;
    background-color: #161616;
    color: #ffffff;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    width: 100%;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/hero-bg.webp');
    background-size: cover;
    background-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(50px, 6vw, 77px);
    line-height: 0.9;
    color: #c4b487;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #c4b487;
    line-height: 1.2;
    max-width: 500px;
    margin: 0 auto 10px;
}

.hero-tagline {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: rgba(196, 180, 135, 0.8);
    line-height: 1.3;
    max-width: 500px;
    margin: 0 auto 20px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    width: 39px;
    height: 39px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons img {
    width: 39px;
    height: 39px;
    object-fit: cover;
}

/* ========== CARDS SECTION ========== */
.cards-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

/* ========== SERVICE CARDS ========== */
.card {
    display: flex;
    align-items: stretch;
    background: #e8e6e6;
    border-radius: 13px;
    overflow: hidden;
    margin-bottom: 60px;
    max-width: 755px;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-link {
    cursor: pointer;
}

.card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(196, 180, 135, 0.15);
}

.card-image {
    flex: 0 0 348px;
    max-width: 348px;
    min-height: 270px;
    overflow: hidden;
    border-radius: 13px;
    margin: 13px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.card-image-dark {
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-dark img {
    object-fit: contain;
    padding: 10px;
}

.card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 47px);
    line-height: 0.75;
    color: #000;
    margin-bottom: 20px;
}

.card-description {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: 0.03em;
    color: #000;
    max-width: 300px;
}

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

/* ========== SOBRE MIM ========== */
.sobre-mim {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 60px;
    margin-bottom: 40px;
}

.sobre-mim-text {
    flex: 0 0 400px;
    padding-top: 20px;
}

.sobre-mim-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(40px, 5vw, 60px);
    color: #c4b487;
    margin-bottom: 24px;
    line-height: 1;
}

.sobre-mim-text p {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
}

.sobre-mim-text p strong {
    font-weight: 700;
}

.sobre-mim-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c4b487;
}

.sobre-mim-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 8px;
}

.footer-copy {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 400;
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .card {
        flex-direction: column;
        max-width: 100%;
    }

    .card-image {
        flex: none;
        max-width: 100%;
        min-height: 200px;
        margin: 10px;
    }

    .card-text {
        padding: 20px;
    }

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

    .sobre-mim-text {
        flex: none;
        width: 100%;
    }

    .hero {
        min-height: 280px;
    }
}