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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #071b1f;
    overflow-x: hidden;
}

.form-summary-error {
    display: none;
    margin-bottom: 25px;
    padding: 20px 24px;
    background: #fffaf2;
    border: 1px solid rgba(245, 145, 35, 0.35);
    border-left: 6px solid #f59e0b;
    border-radius: 14px;
    color: #2f2f2f;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.form-summary-error.active {
    display: block;
}

.form-summary-error strong {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d97706;
    font-size: 18px;
    margin-bottom: 14px;
}

.form-summary-error ul {
    margin: 0;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
    list-style: none;
}

.form-summary-error li {
    font-size: 15px;
    color: #333;
}

.form-summary-error li::before {
    content: "➜";
    color: #f59e0b;
    font-weight: 900;
    margin-right: 8px;
}

.input-error {
    border-color: #f59e0b !important;
    background: #fffaf2;
}

.form-summary-error li::marker {
    color: #d9534f;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    background: rgba(3, 20, 24, 0.82);
    backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.brand h2 {
    font-size: 32px;
    line-height: 1;
}

.brand h2 span {
    color: #22d3c5;
}

.brand p {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 42px;
}

.nav a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.nav a:hover {
    color: #22d3c5;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: #22d3c5;
    transition: 0.3s;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    position: relative;
    background-image: url("../images/hero/window-cleaner.png");
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    padding: 150px 0 70px 60px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(1, 25, 24, 0.97) 0%,
            rgba(1, 49, 45, 0.88) 37%,
            rgba(1, 49, 45, 0.35) 62%,
            rgba(1, 49, 45, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas:
        "video text"
        "video bottom";
    gap: 30px 30px;
    align-items: center;
}

.hero-video {
    grid-area: video;
}

.hero-video video {
    width: 100%;
    max-width: 800px;
    border-radius: 18px;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.hero-text {
    grid-area: text;
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 25px;
    border-radius: 15px;
    display: inline-block;
    width: fit-content;
    max-width: 650px;
    justify-self: start;
}

.hero-bottom {
    grid-area: bottom;
}

.subtitle {
    color: #ffffff;
    font-weight: 700;
}

.hero h1 span,
.subtitle span {
    color: #19e3c6;
    font-weight: 900;
    text-shadow: none;
    background: none;
    padding: 0;
    border-radius: 0;
}

/* HERO BENEFITS */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 35px;
    margin: 28px 0;
    max-width: 760px;
}

.benefits-row .benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.benefits-row .number {
    flex-shrink: 0;
}

.benefits-row p {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.25;
    margin: 0;
    white-space: normal;
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.phone-link {
    color: #e6e6e6;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-shadow:
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6);
}






/* SERVICES */
.services {
    background: #f5fbfa;
    color: #0b1f26;
    padding: 70px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 55px;
}

.section-header p {
    color: #16c6a5;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
    color: #0b1f26;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(22, 198, 165, 0.18);
    transition: 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 390px;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #16c6a5;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 28px 22px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    align-items: center;
}



.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #08292c;
}

.service-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5b60;
}


/* INFO */
.info-section {
    background: #0b1f26;
    padding: 70px 60px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-text {
    text-align: center;
    margin-bottom: 35px;
}

.info-small-title {
    color: #16c6a5;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.info-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.info-description {
    max-width: 760px;
    margin: 0 auto;
    color: #c7d0d3;
    line-height: 1.8;
    font-size: 17px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(22, 198, 165, 0.2);
    border-radius: 15px;
    padding: 28px;
    text-align: center;
    height: 180px;
}

.info-card h3 {
    color: #16c6a5;
    margin-bottom: 15px;
    font-size: 22px;
}

.info-card p {
    color: #d4dde0;
    line-height: 1.6;
}

/* GALLERY PAGE */

.gallery-page {
    padding: 170px 60px 100px;
    background: #f5fbfa;
    min-height: 100vh;
}

.gallery-page .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-page .section-header p {
    color: #16c6a5;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.gallery-page .section-header h2 {
    color: #0b1f26;
    font-size: 42px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 22px;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
}

/* TABLET */
@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .gallery-grid img {
        height: 240px;
    }

}

/* CELULAR */
@media (max-width: 600px) {

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

    .gallery-grid img {
        height: 220px;
    }

}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 88%;
    max-height: 88%;
    border-radius: 16px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: #16c6a5;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 18px;
    transition: .3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #0ea98c;
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}




/* CONTACT */
.contact-section {
    background: #082028;
    padding: 70px 60px;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title p {
    color: #16c6a5;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-title h2 {
    font-size: 48px;
    color: white;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(22, 198, 165, 0.2);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.contact-card h3 {
    color: #16c6a5;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-card p {
    color: #d4dde0;
    font-size: 18px;
    line-height: 1.6;
}

.contact-card a {
    color: #d4dde0;
    text-decoration: none;
}

.contact-card a:hover {
    color: #16c6a5;
}

/* ESTIMATE SECTION */
.estimate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.estimate-section {
    background: #f5fbfa;
    color: #0b1f26;
    padding: 90px 60px;
}

.estimate-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.estimate-title p {
    color: #16c6a5;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.estimate-title h2 {
    font-size: 42px;
    color: #0b1f26;
}

.estimate-form {
    display: grid;
    gap: 24px;
}

.form-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(22, 198, 165, 0.18);
}

.form-card h3 {
    color: #08292c;
    font-size: 22px;
    margin-bottom: 22px;
}

.form-help {
    color: #5c6b70;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.estimate-intro {
    display: block;
    max-width: 720px;
    margin: 18px auto 0;
    color: #4b5b60;
    font-size: 16px;
    line-height: 1.7;
}

.form-card h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background: #16c6a5;
    color: #ffffff;
    font-size: 15px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-option {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 150px;
    padding: 18px;
    border-radius: 16px;
    background: #f5fbfa;
    border: 1px solid rgba(22, 198, 165, 0.25);
    cursor: pointer;
    transition: 0.3s ease;
}

.service-option:hover {
    transform: translateY(-4px);
    border-color: #16c6a5;
    background: rgba(22, 198, 165, 0.08);
}

.service-option input {
    position: absolute;
    top: 16px;
    right: 16px;
    transform: scale(1.2);
}

.service-option strong {
    color: #08292c;
    font-size: 17px;
    padding-right: 28px;
}

.service-option small {
    color: #4b5b60;
    line-height: 1.5;
}



/* FORM GRIDS */

.form-grid,
.address-grid {
    display: grid;
    gap: 16px;
}

.form-grid {
    grid-template-columns: repeat(3, 1fr);
}

.address-grid {
    grid-template-columns: repeat(3, 1fr);
}

.street-address {
    grid-column: 1 / 4;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.customer-name {
    grid-column: 1 / 3;
}

/* FORM FIELDS */

.form-grid input,
.form-grid select,
.customer-grid input,
.address-grid input,
.form-card textarea,
.hidden-input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(8, 41, 44, 0.2);
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.form-card textarea {
    resize: vertical;
}

/* ESTIMATE TYPE */

.estimate-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.estimate-type-grid label {
    background: #f5fbfa;
    border: 1px solid rgba(22, 198, 165, 0.25);
    border-radius: 12px;
    padding: 16px;
    color: #4b5b60;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.estimate-type-grid label:hover {
    border-color: #16c6a5;
    background: rgba(22, 198, 165, 0.08);
}

.estimate-type-grid input {
    margin-right: 8px;
}

/* CHECKBOXES / RADIOS */

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

.checkbox-grid label {
    background: #f5fbfa;
    border: 1px solid rgba(22, 198, 165, 0.25);
    border-radius: 12px;
    padding: 14px 16px;
    color: #4b5b60;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.checkbox-grid label:hover {
    border-color: #16c6a5;
    background: rgba(22, 198, 165, 0.08);
}

.checkbox-grid input {
    margin-right: 8px;
}

.floors-grid label {
    text-align: center;
}

.hidden-input {
    display: none;
    margin-top: 16px;
}

/* LOCATION */

.location-btn {
    display: inline-block;
    border: none;
    background: #16c6a5;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(22, 198, 165, 0.25);
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: #0ea98c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(14, 169, 140, 0.35);
}

.location-status {
    margin-top: 15px;
    color: #0ea98c;
    font-weight: 700;
}

.photo-status {
    margin-top: 15px;
    color: #0ea98c;
    font-weight: 700;
}

.photo-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.preview-item {
    position: relative;
}

.preview-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(22, 198, 165, .25);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

.remove-photo {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .75);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: .25s;
}

.remove-photo:hover {
    background: #d9534f;
    transform: scale(1.1);
}

/* FILE UPLOAD */

.form-card input[type="file"] {
    width: 100%;
    padding: 14px;
    border: 1px dashed rgba(22, 198, 165, 0.45);
    border-radius: 12px;
    background: #f5fbfa;
    color: #4b5b60;
    cursor: pointer;
}

/* BUTTON */

.estimate-btn {
    justify-self: center;
    border: none;
    background: #16c6a5;
    color: #ffffff;
    padding: 16px 44px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(22, 198, 165, 0.25);
    transition: all 0.3s ease;
}

.estimate-btn:hover {
    background: #0ea98c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(14, 169, 140, 0.35);
}

/* PRIVACY */

.privacy-text {
    max-width: 820px;
    margin: 0 auto;
    color: #5c6b70;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
}

/* PAGE OFFSET */

.estimate-page {
    padding-top: 170px;
    min-height: 100vh;
}

section {
    scroll-margin-top: 220px;
}

/* IPAD / TABLET GRANDE */
@media (max-width: 1024px) {
    .header {
        position: sticky;
        top: 0;
        flex-direction: column;
        gap: 10px;
        padding: 10px 18px;
    }

    .brand {
        justify-content: center;
        text-align: center;
        gap: 25px;
    }

    .brand img {
        width: 60px;
        height: auto;
    }

    .brand h2 {
        font-size: 26px;
    }

    .brand p {
        font-size: 12px;
    }

    .nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, max-content);
        justify-content: center;
        column-gap: 28px;
        row-gap: 10px;
    }

    .nav a {
        font-size: 14px;
        white-space: nowrap;
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 90px 25px 55px;
        background-position: center;
    }

    .hero-layout {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-text {
        order: 1;
        width: 100%;
        max-width: 720px;
        margin: 20px auto 0;
        text-align: center;
    }

    .hero-video {
        order: 2;
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-bottom {
        order: 3;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .hero-actions {
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .street-address {
        grid-column: 1 / 3;
    }

    .customer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .customer-name {
        grid-column: 1 / 3;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLET */
@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .brand {
        justify-content: center;
        text-align: center;
    }

    .brand img {
        width: 70px;
        height: auto;
    }

    .brand h2 {
        font-size: 26px;
    }

    .brand p {
        font-size: 13px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav a {
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 50px 25px;
        background-position: center;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-video {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-text,
    .hero-bottom {
        grid-column: 1;
    }

    .hero h1 {
        font-size: 42px;
        text-align: center;
    }

    .subtitle {
        font-size: 22px;
        text-align: center;
    }

    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .hero-actions {
        justify-content: center;
    }

    .services,
    .info-section,
    .contact-section,
    .estimate-section {
        padding: 50px 25px;
    }


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

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card,
    .info-card,
    .contact-card {
        height: auto;
    }

    .gallery-page {
        padding: 140px 25px 60px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .estimate-title h2 {
        font-size: 34px;
    }
}

/* CELULAR */


/* IPAD MINI VERTICAL */
@media (min-width: 700px) and (max-width: 850px) and (orientation: portrait) {
    .header {
        padding: 8px 15px;
        gap: 6px;
    }

    .brand img {
        width: 50px;
    }

    .brand h2 {
        font-size: 22px;
    }

    .brand p {
        font-size: 10px;
    }

    .nav {
        row-gap: 8px;
        column-gap: 26px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero {
        padding: 120px 20px 45px;
    }

    .hero-layout {
        gap: 14px;
    }

    .hero-text {
        padding: 14px 18px;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.05;
    }

    .subtitle {
        font-size: 19px;
    }

    .hero-video {
        max-width: 420px;
    }

    .benefits-row {
        gap: 12px;
    }

    .benefits-row p {
        font-size: 14px;
    }
}

.form-success-message {
    display: none;
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: 10px;
    background: #eefaf5;
    border: 1px solid #0ea98c;
    color: #146c43;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.form-success-message.active {
    display: block;
}

.success-btn {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 18px auto 0;
    padding: 13px 28px;
    background: #24c3ab;
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
}

.success-btn:hover {
    background: #1fa892;
}

.success-btn:active {
    transform: scale(0.98);
}

.success-btn {
    display: block;
    margin: 20px auto 0;
    min-width: 140px;
    padding: 12px 30px;
    background: #24c3ab;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.success-btn:hover {
    background: #1fa892;
}

.hero-actions .call-btn,
.hero-actions .call-btn:visited,
.hero-actions .call-btn:hover,
.hero-actions .call-btn:active,
.hero-actions .call-btn:focus {
    color: #ffffff !important;
    text-decoration: none;
}

/* FLOORS SELECT */

.floors-select {
    width: 10%;
    height: 64px;
    padding: 0 22px;
    border: 1px solid #b8eee6;
    border-radius: 14px;
    background: #f4fffd;
    color: #0b2b2f;
    font-size: 18px;
    font-weight: 10;
    outline: none;
    cursor: pointer;
}

.floors-select:focus {
    border-color: #16c6a5;
    box-shadow: 0 0 0 4px rgba(22, 198, 165, 0.15);
}

/* DESKTOP HEADER FIX */

@media (min-width: 1025px) {

    .header {
        padding: 18px 60px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .brand img {
        width: 80px;
        height: auto;
    }

    .brand h2 {
        font-size: 30px;
        line-height: 1;
    }

    .brand p {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 28px;
    }

    .nav a {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .5px;
    }
}