
:root {
    --primary-blue: #4C7BED;
    --accent-orange: #ff9500;
    --text-dark: #333;
    --text-muted: #666;
    --light-gray: #f8f9fa;
    --font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
    transition: opacity 0.3s ease;
    padding-top: 90px;
}

body.page-exit {
    opacity: 0;
}

body.menu-open {
    overflow: hidden;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background: #fff;
    position: fixed;
    inset: 0 0 auto 0;
    height: 70px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 48px;
    width: auto;
}

.menu-toggle {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    z-index: 1001;
}

.main-nav a {
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
    transition: color 0.3s, background-color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

.main-nav a.active {
    background: var(--primary-blue);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
}

.menu-close {
    display: none;
    border: none;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

body.menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open .main-nav {
    transform: translateX(0);
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn,
button.btn {
    border: none;
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 24px;
    min-height: 44px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover,
button.btn:hover {
    transform: translateY(-3px);
    background: #325dc7;
}

footer {
    background: var(--primary-blue);
    color: #fff;
    padding: 40px 80px 30px;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    font-size: 13px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

footer p {
    font-size: 12px;
    opacity: 0.85;
}

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: url('../images/whatsapp-icone.webp') center/cover no-repeat;
    bottom: 20px;
    right: 20px;
    z-index: 1200;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 30px rgba(37, 211, 102, 0.5);
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #e3e7ef;
    border-radius: 6px;
    padding: 15px;
    font-size: 14px;
    font-family: inherit;
    min-height: 48px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(76, 123, 237, 0.18);
}

@media (max-width: 1024px) {
    .site-header {
        padding: 15px 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .site-header {
        padding: 15px 20px;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 78%);
        height: 100vh;
        background: #fff;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 100px 30px 30px;
        transform: translateX(100%);
    }

    .menu-close {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
    }

    .main-nav a {
        width: 100%;
        font-size: 15px;
        padding: 10px 0;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-nav {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 12px 16px;
    }

    .logo img {
        height: 36px;
    }

    .main-nav {
        width: 85%;
    }
}

/* Home Page */
body.page-home {
    overflow-x: hidden;
    }
body.page-home .hero {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 140px 80px 120px;
    min-height: 460px;
    background-image: url(../images/heroes/home-hero.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
    }
body.page-home .hero-content {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 1;
    }
body.page-home .hero-content h1 {
    font-size: 58px;
    color: #4C7BED;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.15;
    }
body.page-home .hero-content p {
    font-size: 18px;
    color: #1f1f1f;
    line-height: 1.6;
    font-weight: 400;
    }
body.page-home .services {
    padding: 80px 80px 60px;
    text-align: center;
    background: white;
    }
body.page-home .services h2 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #333;
    font-weight: 600;
    }
body.page-home .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    }
body.page-home .service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    }
body.page-home .service-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
body.page-home .service-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    position: relative;
    }
body.page-home .service-card:nth-child(1) .service-image {
    background-image: url(../images/services/home/seguranca-trabalho.webp);
    background-size: cover;
    background-position: center;
    }
body.page-home .service-card:nth-child(2) .service-image {
    background-image: url(../images/services/home/gestao-empresarial.webp);
    background-size: cover;
    background-position: center;
    }
body.page-home .service-card:nth-child(3) .service-image {
    background-image: url(../images/services/home/treinamentos-cursos.webp);
    background-size: cover;
    background-position: center;
    }
body.page-home .service-card:nth-child(4) .service-image {
    background-image: url(../images/services/home/meio-ambiente.webp);
    background-size: cover;
    background-position: center;
    }
body.page-home .service-content {
    padding: 25px 20px;
    text-align: center;
    }
body.page-home .service-content h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
body.page-home .service-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    min-height: 80px;
    }
body.page-home .btn {
    background-color: #4C7BED;
    color: white;
    padding: 10px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.3s;
    font-weight: 500;
    }
body.page-home .btn:hover {
    background-color: #0052cc;
    }
body.page-home .value-section {
    background: #f8f9fa;
    padding: 80px 80px;
    text-align: center;
    }
body.page-home .value-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
    }
body.page-home .value-section > p {
    font-size: 14px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    }
body.page-home .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    }
body.page-home .value-item {
    text-align: center;
    }
body.page-home .value-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
body.page-home .value-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    }
body.page-home .value-item h4 {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    }
body.page-home .why-section {
    padding: 80px 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
    }
body.page-home .why-content {
    flex: 1;
    }
body.page-home .why-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    }
body.page-home .why-content h3 {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin-top: 25px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    }
body.page-home .why-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 5px;
    }
body.page-home .why-image {
    flex: 1;
    height: 500px;
    background-image: url(../images/sections/why-illustration.webp);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    }
body.page-home .clients-section {
    padding: 60px 80px;
    text-align: center;
    }
body.page-home .clients-section h2 {
    font-size: 28px;
    color: white;
    margin: 0 0 50px;
    font-weight: 600;
    padding: 40px 20px;
    background: url(../images/clients/clients-banner-texture.webp) center/cover no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    }
body.page-home .clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
    /* NÃO quebra linha */
    }
body.page-home .client-logo {
    background: transparent;
    border: none;
    padding: 10px;
    }
body.page-home .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    }
body.page-home .contact-section {
    padding: 80px 80px;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    }
body.page-home .contact-form-wrapper {
    text-align: center;
    }
body.page-home .contact-form-wrapper h3 {
    font-size: 24px;
    color: #4C7BED;
    margin-bottom: 10px;
    }
body.page-home .contact-form-wrapper p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    }
body.page-home .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }
body.page-home .contact-form input, body.page-home .contact-form textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    background: #f8f9fa;
    }
body.page-home .contact-form input:focus, body.page-home .contact-form textarea:focus {
    outline: none;
    border-color: #4C7BED;
    background: white;
    }
body.page-home .contact-form textarea {
    min-height: 180px;
    resize: vertical;
    }
body.page-home .contact-form button {
    background-color: #4C7BED;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
body.page-home .contact-form button:hover {
    background-color: #0052cc;
    }
body.page-home .map-section {
    width: 100%;
    margin-top: 40px;
    }
body.page-home .map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
@media (max-width: 1024px) {
    body.page-home .services-grid {
        grid-template-columns: repeat(2, 1fr);
        }
    body.page-home .hero {
        flex-direction: column;
        text-align: center;
        }
    body.page-home .why-section {
        flex-direction: column;
        }
    }
@media (max-width: 768px) {
    body.page-home .hero {
        min-height: 350px;
        padding: 100px 20px 60px;
        text-align: left;
        }
    body.page-home .hero-content h1 {
        font-size: 34px;
        line-height: 1.25;
        }
    body.page-home .hero-content p {
        font-size: 16px;
        }
    body.page-home .services, body.page-home .value-section, body.page-home .why-section, body.page-home .clients-section, body.page-home .contact-section {
        padding: 60px 20px;
        }
    body.page-home .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        }
    body.page-home .service-card {
        width: 100%;
        }
    body.page-home .value-section h2 {
        font-size: 24px;
        }
    body.page-home .value-section > p {
        margin-bottom: 40px;
        }
    body.page-home .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        }
    body.page-home .value-icon {
        width: 80px;
        height: 80px;
        }
    body.page-home .why-section {
        gap: 30px;
        }
    body.page-home .why-image {
        order: -1;
        width: 100%;
        height: 320px;
        margin-bottom: 20px;
        }
    body.page-home .clients-section h2 {
        font-size: 24px;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        }
    body.page-home .clients-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        justify-items: center;
        }
    body.page-home .contact-section {
        max-width: 100%;
        }
    body.page-home .contact-form {
        width: 100%;
        }
    body.page-home .map-section iframe {
        height: 300px;
        }
    }
@media (max-width: 480px) {
    body.page-home .clients-grid {
        grid-template-columns: 1fr;
        }
    body.page-home .value-section h2, body.page-home .why-content h2, body.page-home .services h2 {
        font-size: 22px;
        }
    }

/* Quem Somos Page */
body.page-about .hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background-image: url(../images/heroes/about-hero.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    }
body.page-about .hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    }
body.page-about .hero-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 300;
    }
body.page-about .hero-banner p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.6;
    }
body.page-about .about-section {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    }
body.page-about .about-content {
    flex: 1;
    }
body.page-about .about-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    }
body.page-about .about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    }
body.page-about .about-image-container {
    position: relative;
    width: 450px;
    height: 420px;
    }
body.page-about .about-image img {
    width: 400px;
    height: 420px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    }
@media (max-width: 768px) {
    body.page-about .about-section {
        flex-direction: column;
        margin: 60px auto;
        padding: 0 20px;
        }
    body.page-about .hero-banner h1 {
        font-size: 36px;
        }
    body.page-about .hero-banner {
        height: 320px;
        padding: 0 20px;
        }
    body.page-about .about-image-container {
        width: 280px;
        height: 280px;
        }
    body.page-about .about-image img {
        width: 100%;
        height: 100%;
        }
    body.page-about .about-content p {
        text-align: justify;
        }
    }
@media (max-width: 480px) {
    body.page-about .hero-banner h1 {
        font-size: 30px;
        }
    }

/* Services Page */
body.page-services .hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background-image: url(../images/heroes/services-hero.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    }
body.page-services .hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    }
body.page-services .hero-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 300;
    }
body.page-services .hero-banner p {
    position: relative;
    z-index: 2;
    font-size: 18px;
    max-width: 700px;
    }
body.page-services .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    }
body.page-services .service-section {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    }
body.page-services .service-section:nth-child(even) {
    flex-direction: row-reverse;
    }
body.page-services .service-content {
    flex: 1;
    }
body.page-services .service-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    }
body.page-services .service-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    }
body.page-services .service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    }
body.page-services .service-content ul li {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    }
body.page-services .service-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4C7BED;
    font-size: 20px;
    }
body.page-services .service-image {
    flex: 1;
    position: relative;
    }
body.page-services .service-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
body.page-services .consult-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #4C7BED;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
    }
body.page-services .consult-btn:hover {
    background-color: #0052cc;
    }
@media (max-width: 768px) {
    body.page-services .hero-banner {
        height: 320px;
        padding: 0 20px;
        }
    body.page-services .hero-banner h1 {
        font-size: 34px;
        }
    body.page-services .services-container {
        padding: 60px 20px;
        }
    body.page-services .service-section, body.page-services .service-section:nth-child(even) {
        flex-direction: column;
        }
    body.page-services .service-content {
        text-align: left;
        }
    body.page-services .service-image img {
        height: 250px;
        }
    body.page-services .consult-btn {
        position: static;
        margin-top: 15px;
        }
    }
@media (max-width: 768px) {
    body.page-services .service-section, body.page-services .service-section:nth-child(even) {
        flex-direction: column;
        }
    body.page-services .hero-banner h1 {
        font-size: 36px;
        }
    body.page-services header {
        padding: 15px 20px;
        }
    body.page-services .services-container {
        padding: 40px 20px;
        }
    }

/* Contato Page */
body.page-contact .hero-banner {
    position: relative;
    width: 100%;
    height: 420px;
    background-image: url(../images/heroes/contact-hero.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
    }
body.page-contact .hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    }
body.page-contact .hero-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 300;
    }
body.page-contact .hero-banner p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 30px;
    }
body.page-contact .hero-btn {
    position: relative;
    z-index: 2;
    background-color: #4C7BED;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    }
body.page-contact .hero-btn:hover {
    background-color: #0052cc;
    }
body.page-contact .contact-container {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    }
body.page-contact .contact-info {
    flex: 1;
    }
body.page-contact .contact-info h2 {
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
    }
body.page-contact .contact-info h3 {
    font-size: 14px;
    color: #111;
    margin-bottom: 20px;
    font-weight: 400;
    }
body.page-contact .contact-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    }
body.page-contact .location {
    margin-bottom: 30px;
    }
body.page-contact .location h4 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    }
body.page-contact .location p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    }
body.page-contact .contact-form-section {
    flex: 1;
    }
body.page-contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    }
body.page-contact .contact-form input, body.page-contact .contact-form textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    background: #f8f9fa;
    }
body.page-contact .contact-form input:focus, body.page-contact .contact-form textarea:focus {
    outline: none;
    border-color: #4C7BED;
    background: white;
    }
body.page-contact .phone-input {
    display: flex;
    }
body.page-contact .contact-form textarea {
    min-height: 150px;
    resize: vertical;
    }
body.page-contact .submit-btn {
    background-color: #4C7BED;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
body.page-contact .submit-btn:hover {
    background-color: #0052cc;
    }
body.page-contact .benefits-section {
    background: #f8f9fa;
    padding: 60px 80px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    }
body.page-contact .benefit-item {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    }
body.page-contact .benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    }
body.page-contact .benefit-content h4 {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    }
body.page-contact .benefit-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    }
@media (max-width: 768px) {
    body.page-contact .hero-banner {
        height: 320px;
        padding: 0 20px;
        }
    body.page-contact .hero-banner h1 {
        font-size: 32px;
        }
    body.page-contact .contact-container {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto;
        padding: 0 20px;
        }
    body.page-contact .contact-form-section, body.page-contact .contact-info {
        width: 100%;
        }
    body.page-contact .phone-input {
        flex-direction: column;
        }
    body.page-contact .benefits-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
        }
    body.page-contact .benefit-item {
        gap: 15px;
        }
    body.page-contact .benefit-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        }
    }
@media (max-width: 480px) {
    body.page-contact .hero-banner h1 {
        font-size: 28px;
        }
    }
@media (max-width: 768px) {
    body.page-contact .contact-container {
        flex-direction: column;
        gap: 40px;
        }
    body.page-contact .benefits-section {
        flex-direction: column;
        padding: 40px 20px;
        }
    body.page-contact .hero-banner h1 {
        font-size: 36px;
        }
    body.page-contact header {
        padding: 15px 20px;
        }
    }
