/* Configurações gerais */

body {
    background-color: var(--cream);
    color: var(--black);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span,
.about-content span,
.contact-content span,
.hero-content .subtitle {
    display: inline-block;
    color: var(--wine);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.section-title h2,
.about-content h2,
.contact-content h2,
.cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.1;
    color: var(--black);
}

.section-title p,
.about-content p,
.contact-content p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
    max-width: 720px;
    margin: 16px auto 0;
}

/* Botões */

.btn-primary,
.btn-secondary,
.btn-header,
.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: var(--wine);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(160, 6, 34, 0.3);
}

.btn-primary:hover {
    background-color: var(--wine-light);
    transform: translateY(-3px);
}

.btn-secondary {
    color: var(--wine-dark);
    border: 1px solid rgba(160, 6, 34, 0.45);
}

.btn-secondary:hover {
    background-color: var(--wine);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-light {
    background-color: var(--white);
    color: var(--wine-dark);
}

.btn-light:hover {
    background-color: var(--cream);
    transform: translateY(-3px);
}

.btn-primary i,
.btn-secondary i,
.btn-light i {
    font-size: 13px;
}

/* Header */

.header {
    width: 100%;
    background: linear-gradient(90deg, var(--wine-dark), #650916, var(--wine-dark));
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

.header-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    width: 185px;
    height: 58px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding: 8px 0;
}

.menu a::after {
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.btn-header {
    background-color: var(--white);
    color: var(--wine-dark);
}

.btn-header:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
}

.menu-mobile {
    display: none;
    width: 38px;
    height: 32px;
    flex-direction: column;
    justify-content: space-between;
}

.menu-mobile span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
}

/* Hero */

.hero {
    padding: 0;
    min-height: calc(100vh - 78px);
    background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 42%, #ffffff 42%, #ffffff 100%);
}

.hero-container {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    padding: 60px 0;
    max-width: 620px;
}

.hero-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
    color: var(--wine-dark);
    margin-bottom: 24px;
    max-width: 620px;
    word-break: normal;
    overflow-wrap: normal;
}

.hero-content p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image {
    height: 640px;
    border-radius: 0 0 0 80px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    background-color: var(--black);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(63, 5, 13, 0.12), transparent);
}

/* Services */

.services {
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--cream);
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid rgba(160, 6, 34, 0.12);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(160, 6, 34, 0.35);
}

.service-icon {
    width: 58px;
    height: 58px;
    background-color: var(--wine);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.service-icon i {
    font-size: 24px;
}

.service-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--black);
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

/* About */

.about {
    background-color: var(--cream);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image {
    height: 430px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--black);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content p {
    margin: 18px 0;
    max-width: 100%;
}

.about-content .btn-primary {
    margin-top: 18px;
}

/* Process */

.process {
    background-color: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    background-color: var(--cream);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid rgba(160, 6, 34, 0.12);
    position: relative;
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.process-card span {
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    color: var(--wine);
    margin-bottom: 16px;
}

.process-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 14px;
}

/* Projects */

.projects {
    background-color: var(--cream);
}

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

.project-card {
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    background-color: var(--black);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 28px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
}

.project-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.project-info p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

/* CTA */

.cta {
    padding: 55px 0;
    background: linear-gradient(90deg, var(--wine-dark), var(--wine), var(--wine-dark));
    color: var(--white);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta span {
    display: inline-block;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta h2 {
    color: var(--white);
    font-size: 38px;
}

/* Contact */

.contact {
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: start;
}

.contact-content h2 {
    text-align: left;
}

.contact-content p {
    text-align: left;
    margin-left: 0;
}

.contact-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.contact-list li {
    color: var(--gray);
    font-size: 16px;
}

.contact-list strong {
    color: var(--wine-dark);
}

.contact-list i {
    margin-right: 6px;
    color: var(--wine);
}

.contact-form {
    background-color: var(--cream);
    padding: 34px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background-color: var(--white);
    color: var(--black);
    font-size: 15px;
}

.contact-form textarea {
    padding-top: 16px;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--wine);
}

/* Footer */

.footer {
    background-color: var(--soft-black);
    color: var(--white);
    padding-top: 70px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-links a,
.footer-links p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--wine-light);
}

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}