body {
    background: #faefeb;
    color: #2b2623;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1400px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

/* NAVBAR */

.navbar {
    background: transparent;
}

.brand-title {
    font-size: 1.2rem;
    letter-spacing: 4px;
}

.brand-subtitle {
    font-size: .7rem;
    letter-spacing: 2px;
    color: #d29b9b;
    margin-top: 5px;
}

.nav-link {
    color: #2b2623;
    font-size: .95rem;
}

/* BUTTON */

.btn-soft {
    background: #efcfcf;
    color: #2b2623;
    border-radius: 50px;
    padding: 14px 28px;
    border: none;
    text-decoration: none;
    transition: .3s;
}

.btn-soft:hover {
    background: #dfb8b8;
}

.btn-hard {
    background: #e9b4af;
    color: #f5f5f5;
    border-radius: 50px;
    padding: 14px 28px;
    border: none;
    text-decoration: none;
    transition: .3s;
}

.btn-hard:hover {
    background: #ecaaa4;
}

/* HERO */

.hero-section {
    padding: 40px 0px 20px 0px;
}

.hero-section,.projects-section,.services-section{
    padding: 40px 0px 20px 0px;
    border-bottom: 1px solid #e7cfcf;
}

.hero-section::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e7cfcf;
}

.section-tag {
    display: inline-block;
    color: #d19a9a;
    letter-spacing: 2px;
    font-size: .75rem;
    margin-bottom: 25px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 18px;

    color: #d19a9a;
    letter-spacing: 2px;
    font-size: .75rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bolder;
}

.section-tag::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e7cfcf;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-line {
    width: 70px;
    height: 1px;
    background: #d19a9a;
    margin-bottom: 30px;
}

.hero-text {
    font-size: 1rem;
    line-height: 2;
    max-width: 400px;
}

/* GRID */

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

.grid-item {
    overflow: hidden;
}

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

.text-card {
    padding: 10px 50px 10px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.green-card {
    background: #e9eadf;
}

.purple-card {
    background: #ece3f2;
}

.card-number {
    font-size: 6rem;
    font-family: 'Cormorant Garamond', serif;
}

.purple-card .card-number{
    color: #b096c3;
}
.green-card .card-number{
    color: #a8b083;
}


.text-card h3 {
    font-size: 1.2rem;
    margin: 0px 0px 20px 0;
    font-weight: bold;
}

.text-card p {
    line-height: 1.5;
    font-size: 13px;
}

.wide-card {
    grid-column: span 2;
}

/* SECTIONS */

.projects-section,
.services-section {
    padding: 50px 0;
}

.section-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin: 20px 0;
}

.section-text {
    line-height: 2;
    color: #5c5551;
}

.simple-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    position: relative;

    color: #d19a9a;
    text-decoration: none;
    font-size: .95rem;
    padding-bottom: 12px;
}

.simple-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #e7cfcf;
}

/* PROJECTS */

.project-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    margin-bottom: 20px;
}

.project-card h4 {
    font-size: 1.2rem;
    font-weight: bold;
}

.project-card span{
    font-size: .55rem;
    color: #d19a9a;
    letter-spacing: 1px;
    font-weight: bold;
}
/* SERVICES */

.service-card {
    padding: 30px;
}

.service-card h4 {
    font-size: 2rem;
    margin: 25px 0 15px;
}

.service-card p {
    line-height: 1.8;
}

/* ICONS */

.service-icon {
    text-align: center;
}

.circle {
    text-align: center;
}

.grid {
    text-align: center;
}

.star {
    text-align: center;
}

.blocks {
    text-align: center;
}

.logo {
    width: 100px;
}

/* FOOTER */
/* FOOTER */

.footer-section {
    padding: 15px 0px 15px 0px;
    border-top: 1px solid #ebe4e1;
    background: #f2d7d099;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: .8;
    color: #d19a9a;
    position: relative;
    padding-right: 30px;
}

.footer-logo::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: #ebe4e1;
}

.footer-brand-text p {
    margin: 0;
    font-size: 1rem;
    color: #2b2623;
}

.footer-brand-text span {
    font-size: .95rem;
    color: #5f5855;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-social {
    flex: 1;
    text-align: right;
    position: relative;
    padding-left: 40px;
}

.footer-social::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 1px;
    height: 70px;

    background: #ebe4e1;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #2b2623;
    text-decoration: none;
    font-size: .95rem;
    position: relative;
}

.footer-links a:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -12px;
    color: #d8b3b3;
}

.footer-copy {
    font-size: .75rem;
    color: #8e8783;
}



/* CONTACT PAGE */

.contact-hero {
    padding: 80px 0 120px;
    min-height: 900px;
    position: relative;
}

.contact-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 40px;
}

.contact-title span {
    display: block;
    color: #d87b86;
    font-style: italic;
}

.contact-text {
    max-width: 500px;
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: 50px;
}

.contact-mini-text {
    max-width: 450px;
    font-size: .9rem;
    letter-spacing: 2px;
    line-height: 2;
}

.contact-flower {
    position: relative;
    bottom: 68px;
    width: 27%;
    height: 100%;
    float: right;
}

.contact-flower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTACT BOX */

.contact-box-section {
    margin-top: -180px;
    position: relative;
    z-index: 10;
}

.contact-box {
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid #f0dddd;
}

.contact-info-item {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #efd8d8;
}

.contact-info-item h5 {
    font-size: .75rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-info-item p {
    line-height: 2;
    margin: 0;
}

.contact-form-wrapper {
    padding-left: 40px;
    border-left: 1px solid #efd8d8;
}

/* FORM */

.custom-input {
    border-radius: 0;
    border: 1px solid #efd8d8;
    background: transparent;
    padding: 18px 16px;
    height: auto;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #d9a7a7;
    background: transparent;
}

.custom-textarea {
    min-height: 180px;
    resize: none;
}

.custom-check {
    font-size: .9rem;
}

/* EXTRA */

.extra-contact-section {
    padding: 40px 0;
}

.extra-box {
    background: rgba(255,255,255,.4);
    padding: 50px;
    min-height: 100%;
}

.extra-box p {
    line-height: 2;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #efd8d8;
}

.faq-contact {
    color: #d87b86;
}

/* QUOTE */

.quote-section {
    padding-bottom: 50px;

}

.quote-box {
    background: rgba(255, 255, 255, .35);
    padding: 38px;
    position: relative;
    background-image: url('/img/cite-bg.png');
    background-size: cover;
}

.quote-mark {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 6rem;
    color: #d87b86;
    line-height: 1;
}

.quote-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.5;
    max-width: 700px;
    margin-left: 80px;
}

.quote-section {
    position: relative;
    overflow: hidden;
}

.quote-flower {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 260px;
    z-index: 1;

    pointer-events: none;
}

.quote-flower img {
    width: 100%;
    display: block;
}



/* ABOUT HERO */

.about-hero {
    padding: 0px 0;
    border-bottom: 1px solid #ecd9d5;
}

.about-title {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 40px;
    max-width: 600px;
}

.about-text {
    max-width: 520px;
    line-height: 2;
    font-size: 1rem;
}

.about-image-wrapper {
    position: relative;
    padding: 40px 0;
}

.about-image {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 3;
}

.about-bg-shape {
    position: absolute;
    right: -40px;
    top: 80px;
    width: 420px;
    height: 760px;
    background: #f6dfdc;
    z-index: 1;
}

.about-dots {
    position: absolute;
    left: -60px;
    top: 40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#efb4bb 2px, transparent 2px);
    background-size: 18px 18px;
    z-index: 1;
}

.about-lines {
    position: absolute;
    right: -140px;
    bottom: 40px;
    width: 260px;
    height: 180px;
    background-image: repeating-radial-gradient(
        ellipse at center,
        transparent 0 14px,
        #efc8c8 15px 16px
    );
    opacity: .5;
}



.about-seal img {

    z-index: 10;
    position: relative;
    width: 95%;
    margin-left: 184px;
    top: -135px;
}

/* APPROACH */

.approach-section {
    padding: 80px 0;
    border-bottom: 1px solid #ecd9d5;
}

.large-title {
    font-size: 4rem;
}

.focus-card {
    padding: 20px 35px;
}

.bordered {
    border-left: 1px solid #ecd9d5;
    border-right: 1px solid #ecd9d5;
}

.focus-icon {
    width: 75px;
    margin-bottom: 30px;
}

.focus-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.focus-card p {
    line-height: 2;
}

/* VALUES */

.values-section {
    padding: 80px 0;
}

.values-box {
    border: 1px solid #ecd9d5;
    padding: 60px;
}

.values-list {
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.value-item span {
    color: #e79ca7;
    font-size: 1.5rem;
    line-height: 1;
}

.value-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.value-item p {
    margin: 0;
    line-height: 1.8;
}

.tools-wrapper {
    border-left: 1px solid #ecd9d5;
    padding-left: 60px;
    height: 100%;
}

.tools-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.tool-box {
    width: 90px;
    height: 90px;

    border: 1px solid #efc9c9;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.4rem;
    font-weight: 600;
    color: #e78fa0;

    background: rgba(255,255,255,.5);
}

.tools-text {
    max-width: 700px;
    line-height: 2;
}


/* SERVICES PAGE */

.services-page-hero {
    padding: 0px 0 60px 0px;
}

.services-title {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 35px;
}

.services-title span {
    color: #d98793;
    font-style: italic;
}

.services-text {
    max-width: 520px;
    line-height: 2;
    font-size: 1rem;
}

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

/* MAIN SERVICES */

.main-services-section {
    padding-bottom: 70px;
}

.service-detail-card,
.mini-service-card {
    border: 1px solid #ecd9d5;
    background: rgba(255,255,255,.25);
    height: 100%;

}

.service-detail-card {
    padding: 20px 20px 0;
}

.service-detail-card {
    border: 1px solid #ecd9d5;
    background: rgba(255,255,255,.3);
    overflow: hidden;
    height: 100%;
}

.service-card-content {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;

    padding: 0px 0px 0px;
    min-height: 345px;
}

.service-icon-col {
    padding-top: 5px;
}

.service-mini-icon {
    width: 34px;
}

.service-info-col {
    width: 100%;
}

.service-number {
    display: block;
    font-size: .8rem;
    margin-bottom: 12px;
    color: #444;
}

.service-info-col h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

.service-info-col p {
    line-height: 1.7;
    margin-bottom: 0;
}

.mini-line {
    width: 38px;
    height: 1px;
    background: #e2a3aa;
    margin: 24px 0;
}

.service-info-col ul {
    padding-left: 18px;
    margin: 0;
}

.service-info-col ul li {
    margin-bottom: 7px;
    line-height: 1.2;
    font-size: 0.9rem;
}

.service-image-wrapper {
    width: 100%;
    margin-top: 20px;
}

.service-bottom-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.service-mini-icon,
.mini-service-icon {
    width: 42px;
}

.service-number {
    display: block;
    font-size: .8rem;
    margin-bottom: 10px;
}

.service-detail-card h3,
.mini-service-card h4 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-detail-card p,
.mini-service-card p {
    line-height: 1.8;
    font-size: 0.8rem;
}

.mini-line {
    width: 45px;
    height: 1px;
    background: #dba8ad;
    margin: 25px 0;
}

.service-detail-card ul,
.mini-service-card ul {
    padding-left: 18px;
    line-height: 2;
    margin-bottom: 30px;
}

.service-bottom-image,
.mini-service-image {
    width: calc(100% + 70px);
    margin-left: -35px;
    object-fit: cover;
    margin-top: 30px;
    height: 180px;
}

.mini-service-card {
    padding: 30px 30px 0;
}

.mini-service-card span {
    display: block;
    margin: 20px 0 10px;
    font-size: .8rem;
}

.mini-service-image {
    width: calc(100% + 60px);
    margin-left: -30px;
}

/* EXTRA */

.services-extra-section {
    padding-bottom: 70px;
}

.services-extra-box {
    border: 1px solid #ecd9d5;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.services-extra-text {
    line-height: 2;
    max-width: 700px;
}

.services-seal {
    width: 225px;
    top: 50px;
    position: relative;
    right: 70px;
}

.services-tools {
    line-height: 2;
}

/* CTA */

.services-cta {
    padding-bottom: 80px;
}

.services-cta-box {
    background: rgb(242 231 227 / 83%);
    padding: 35px 40px 30px 40px;
    background-image: url(http://saraformosotello.com/uploads/data/articles/28/servicios-cta-6a00dcc150736.png);
    background-size: contain;
    background-position-x: right;
    background-repeat: no-repeat;
}

.services-cta-box h2 {
    font-size: 4rem;
    line-height: 1.1;
    max-width: 700px;
}

.services-cta-box h2 span {
    color: #d98793;
    font-style: italic;
}

.cta-image {
    width: 100%;
}


/* PROJECTS PAGE */

.projects-page-section {
    padding: 30px 0 70px;
    position: relative;
}

.projects-header {
    max-width: 650px;
    margin-bottom: 60px;
}

.projects-page-title {
    font-size: 3rem;
    line-height: .9;
    margin-bottom: 15px;
    font-weight: bolder;
}

.projects-subtitle {
    display: block;
    color: #d48e95;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    font-weight: bolder;
}

.projects-page-text {
    max-width: 600px;
    line-height: 1.8;
    font-size: 1rem;
}

.projects-branch {
    position: absolute;
    right: -120px;
    top: 40px;
    width: 420px;
    opacity: .7;
}

.projects-branch img {
    width: 100%;
}

/* GRID */

.col-lg-2-custom {
    width: 20%;
}

.project-page-card {
    border: 1px solid #ead9d4;
    background: rgba(255,255,255,.18);
    height: 100%;
}

.project-page-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.project-page-content {
    padding: 10px 15px 20px 15px;
}

.project-number-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.project-number-line span {
    color: #d48e95;
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: bolder;
}

.project-number-line .mini-line {
    margin: 0;
    width: 40px;
    margin-top: 8px;
}

.project-page-content h3 {
    font-size: 1.1rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: bolder;
}

.project-page-content p {
    line-height: 1.7;
    margin-bottom: 35px;
    min-height: 75px;
    font-size: 0.8rem;
}

.project-link {
    color: #d48e95;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: .75rem;
    font-weight: 600;
    bottom: 15px;
    position: absolute;
}

.project-link:hover {
    color: #bf747d;
}

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


/* SUCCESS PAGE */

.contact-success-section {
    padding: 100px 0;
}

.contact-success-box {
    background: rgba(255,255,255,.28);
    border: 1px solid #ecd9d5;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.success-header {
    max-width: 760px;
    margin: auto;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    border: 1px solid #e7c5c2;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 35px auto;

    color: #d98793;
    font-size: 2.4rem;

    background: rgba(255,255,255,.5);
}

.success-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.success-description {
    font-size: 1.05rem;
    line-height: 2;
    max-width: 650px;
    margin: auto;
}

.success-process {
    margin-top: 80px;
}

.success-step-card {
    border: 1px solid #ecd9d5;
    padding: 40px 35px;
    height: 100%;
    background: rgba(255,255,255,.25);
}

.step-number {
    color: #d98793;
    font-size: .9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.success-step-card h4 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.success-step-card p {
    line-height: 1.9;
    margin-bottom: 0;
}

.success-actions {
    margin-top: 70px;

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn-soft {
    background: #efc4c7;
    color: #2e2e2e;
    border-radius: 60px;
    padding: 15px 38px;
    text-decoration: none;
    transition: .3s;
}

.btn-soft:hover {
    background: #e5b3b7;
    color: #2e2e2e;
}

.btn-outline-soft {
    border: 1px solid #e5bcbc;
    color: #2e2e2e;
    border-radius: 60px;
    padding: 15px 38px;
    text-decoration: none;
    transition: .3s;
}

.btn-outline-soft:hover {
    background: #f6e7e3;
    color: #2e2e2e;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

    .col-lg-2-custom {
        width: 50%;
    }

}

@media (max-width: 991px) {

    .col-lg-2-custom {
        width: 100%;
    }

    .projects-page-title {
        font-size: 4rem;
    }

    .projects-branch {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .wide-card {
        grid-column: span 1;
    }


    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-center {
        justify-content: center;
    }

    .footer-social {
        padding-left: 0;
        text-align: center;
    }

    .footer-social::before {
        display: none;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-logo::after {
        display: none;
    }


    .contact-title {
        font-size: 3.5rem;
    }

    .contact-flower {
        position: relative;
        width: 100%;
        margin-top: 50px;
    }

    .contact-box-section {
        margin-top: 0;
    }

    .contact-box {
        padding: 30px;
    }

    .contact-form-wrapper {
        border-left: none;
        padding-left: 0;
    }

    .quote-box p {
        margin-left: 0;
        font-size: 1.5rem;
    }

    .about-title,
    .large-title {
        font-size: 3.2rem;
    }

    .about-seal {
        display: none;
    }

    .about-bg-shape,
    .about-lines,
    .about-dots {
        display: none;
    }

    .bordered {
        border: none;
    }

    .tools-wrapper {
        border-left: none;
        padding-left: 0;
    }

    .services-title,
    .services-cta-box h2 {
        font-size: 3rem;
    }

    .services-extra-box,
    .services-cta-box {
        padding: 30px;
    }


    .contact-success-box {
        padding: 50px 30px;
    }

    .success-title {
        font-size: 3rem;
    }


}
