/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.05) 0%, transparent 50%);
    overflow-x: hidden;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo SteelMax */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #32CD32;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #32CD32;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* About Container */
.about-container {
    margin-top: 80px;
}

/* Hero Banner */
.about-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: 0 20px;
}

.breadcrumb {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: rgba(235, 236, 237, 1);
    margin-bottom: 1rem;
    opacity: 0.9;
}

.page-title {
    font-family: 'Kanit', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin: 0;
    word-wrap: break-word;
    hyphens: auto;
}

/* Call Card */
.call-card {
    position: absolute;
    top: 320px;
    right: 5%;
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #32CD32;
    z-index: 20;
    min-width: 300px;
}

.call-label {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.5rem;
}

.call-number {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Unified About & Construction System Section */
.unified-about-construction-section {
    padding: 6rem 0;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.05) 0%, transparent 50%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* About Section Content within unified section */
.about-section-content {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
}

/* Experience Card */
.experience-card {
    position: relative;
    width: 400px;
    height: 620px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.experience-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.experience-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
    color: white;
}

.experience-number {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-text {
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    line-height: 1.4;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
}

/* Construction System Content within unified section */
.construction-system-content {
    position: relative;
    z-index: 2;
}





.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.title-bar {
    width: 8px;
    height: 80px;
    background: #32CD32;
    border-radius: 4px;
}

.section-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    max-width: 800px;
}

.section-content {
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.section-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.benefits-list li {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #32CD32;
    border-radius: 50%;
}

.conclusion {
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    line-height: 1.6;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(50, 205, 50, 0.1);
    border-left: 4px solid #32CD32;
    border-radius: 0 8px 8px 0;
}

/* Inovação na Construção Section */
.inovacao-construcao-section {
    padding: 8rem 0 5rem;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.05) 0%, transparent 50%);
    color: white;
    position: relative;
    overflow: hidden;
}

.inovacao-content {
    position: relative;
    z-index: 2;
}

.inovacao-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    position: relative;
}

.casa-pronta-img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.edificio-dividido {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 4rem 0;
    height: 400px;
    position: relative;
}

.edificio-estrutura {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-radius: 8px 0 0 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edificio-estrutura::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: 
        linear-gradient(90deg, transparent 0%, transparent 30%, #32CD32 30%, #32CD32 32%, transparent 32%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 30%, #32CD32 30%, #32CD32 32%, transparent 32%, transparent 100%);
    background-size: 40px 40px;
    opacity: 0.8;
}

.edificio-tradicional {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 0 8px 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edificio-tradicional::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    background: 
        linear-gradient(90deg, transparent 0%, transparent 25%, #333 25%, #333 27%, transparent 27%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 25%, #333 25%, #333 27%, transparent 27%, transparent 100%);
    background-size: 30px 30px;
    opacity: 0.6;
}

.slogan {
    text-align: center;
    margin-top: 3rem;
}

.slogan span {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-block;
}

/* Equipe Max Section */
.equipe-max-section {
    padding: 8rem 0 5rem;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.05) 0%, transparent 50%);
    color: white;
    position: relative;
    overflow: hidden;
}

.equipe-max-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(50, 205, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(50, 205, 50, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.equipe-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.equipe-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.equipe-photo:hover {
    transform: translateY(-10px);
}

.equipe-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipe-photo:hover .equipe-image {
    transform: scale(1.05);
}

.equipe-description {
    max-width: 800px;
    margin: 0 auto;
}

.equipe-description p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-top: 2rem;
}

/* Unified GrupoMax, Equipe and Innovation Section */
.unified-grupo-equipe-inovacao-section {
    padding: 8rem 0;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.05) 0%, transparent 50%);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Content spacing within unified section */
.grupo-max-content {
    margin-bottom: 4rem;
}

.equipe-max-content {
    margin-bottom: 4rem;
}

.inovacao-construcao-content {
    margin-bottom: 0;
}

.grupo-max-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(50, 205, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(50, 205, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(50, 205, 50, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.grupo-max-section .section-header {
    color: white;
    position: relative;
    z-index: 2;
}

.grupo-max-section .section-title {
    color: white;
}

.grupo-max-section .section-content p {
    color: rgba(255, 255, 255, 0.9);
}

.grupo-max-section .section-content {
    position: relative;
    z-index: 2;
}

/* GrupoMax Content within CTA Section */
.grupo-max-content {
    margin: 4rem 0;
    padding: 0;
    background: transparent;
}

.grupo-max-content .section-header {
    margin-bottom: 2rem;
}

.grupo-max-content .section-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.grupo-max-content .section-content p {
    color: #ffffff;
    font-size: 1.1rem;
}

.grupo-max-content .stats-grid {
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    width: 100%;
}

.stat-card {
    background: transparent;
    color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #32CD32;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #32CD32;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.about-header {
    margin-bottom: 1rem;
}

.about-label {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #32CD32;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    max-width: 600px;
}

.about-description {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-description p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.ceo-quote {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.ceo-quote p {
    font-family: 'Kanit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.learn-more-btn {
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    align-self: flex-start;
}

.learn-more-btn:hover {
    background: linear-gradient(135deg, #28a428, #32CD32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    min-height: 400px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../src/57.png') center/cover;
    background-attachment: fixed;
}



.cta-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(50, 205, 50, 0.3));
}

.cta-section .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.cta-title {
    font-family: 'Kanit', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: white;
    display: block;
    margin-bottom: 2rem;
}

.cta-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.appointment-btn {
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    text-decoration: none;
    display: inline-block;
}

.appointment-btn:hover {
    background: linear-gradient(135deg, #28a428, #32CD32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-number {
    width: 70px;
    height: 72px;
    background: #32CD32;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    color: #333;
    line-height: 1.4;
}

/* Section Divider */
.section-divider {
    padding: 2rem 0;
    background: #1a1a1a;
}

.divider-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #32CD32 20%, #32CD32 80%, transparent 100%);
    margin: 0 auto;
    max-width: 800px;
}

/* Simple CTA Section */
.simple-cta-section {
    padding: 8rem 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.simple-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.simple-cta-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.simple-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
    text-decoration: none;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    font-family: 'Kanit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(50, 205, 50, 0.3);
}

.simple-cta-btn:hover {
    background: linear-gradient(135deg, #28a428, #32CD32);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(50, 205, 50, 0.4);
}

.chat-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: flex-start;
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-label {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #32CD32;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.form-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field-full {
    flex: none;
    width: 100%;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1.2rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    font-size: 1.1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #333;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: italic;
}

.form-field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1rem;
    padding-right: 4rem;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: #32CD32;
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    align-self: flex-start;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #28a428, #32CD32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* Features Container */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333333 0%, #32CD32 50%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../src/bannerprincipal.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 60px;
    width: auto;
}

.footer-contact h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(235, 236, 237, 1);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-phone {
    font-family: 'Kanit', sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    color: white !important;
    line-height: 1.2;
    text-decoration: none;
}

.footer-phone:visited {
    color: white !important;
}

.footer-phone:link {
    color: white !important;
}

.footer-phone:hover {
    color: white !important;
}

.footer-phone:active {
    color: white !important;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(235, 236, 237, 1);
    line-height: 1.6;
    max-width: 400px;
    text-align: left;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    justify-self: end;
}

.footer-column h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(212, 215, 221, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.blog-post {
    margin-bottom: 2rem;
}

.blog-post h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(212, 215, 221, 1);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 200;
    color: rgba(235, 236, 237, 1);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(212, 215, 221, 1);
}

/* Success/Error Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 400;
    display: none;
}

.form-message.success {
    background: rgba(50, 205, 50, 0.1);
    border: 2px solid #32CD32;
    color: #28a428;
}

.form-message.error {
    background: rgba(51, 51, 51, 0.1);
    border: 2px solid #333333;
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem 2.5rem;
        justify-items: center;
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        justify-self: center;
        text-align: center;
        display: none !important;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .about-hero {
        height: 380px;
    }
    
    .hero-content {
        width: 95%;
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 3.2rem;
    }
    
    .breadcrumb {
        font-size: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .experience-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        display: none !important;
    }
    
    .about-title {
        font-size: 2.8rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .call-card {
        position: static;
        margin: 2rem auto 0;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .equipe-image {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .grupo-max-content {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .grupo-max-content .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .about-hero {
        height: 300px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
    }
    
    .unified-about-construction-section {
        padding: 5rem 0 3rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .equipe-grid {
        gap: 1.5rem;
    }
    
    .equipe-image {
        height: 200px;
    }
    
    .equipe-description p {
        font-size: 1.1rem;
    }
    
    .title-bar {
        height: 60px;
    }
    
    .grupo-max-content {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .grupo-max-content .section-title {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .simple-cta-title {
        font-size: 2.5rem;
    }
    
    .simple-cta-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: none !important;
    }
    
    .footer-about {
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .call-card {
        min-width: auto;
        padding: 1.5rem 2rem;
    }
    
    .call-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 5rem 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-field input,
    .form-field textarea,
    .form-field select {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-field select {
        padding-right: 3rem;
        background-size: 0.8rem;
        background-position: right 1rem center;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .title-bar {
        height: 50px;
    }
    
    .edificio-dividido {
        height: 300px;
        flex-direction: column;
    }
    
    .edificio-estrutura,
    .edificio-tradicional {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .edificio-estrutura {
        border-radius: 8px 8px 0 0;
    }
    
    .edificio-tradicional {
        border-radius: 0 0 8px 8px;
    }
    
    .slogan span {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
    
    .grupo-max-content {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .grupo-max-content .section-title {
        font-size: 1.6rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .simple-cta-title {
        font-size: 2rem;
    }
    
    .simple-cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .experience-number {
        font-size: 4rem;
    }
    
    .experience-text {
        font-size: 1rem;
    }
    
    .footer-phone {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.8rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .call-card {
        padding: 1rem 1.5rem;
    }
    
    .call-number {
        font-size: 1.8rem;
    }
    
    .footer-links {
        display: none !important;
    }
}

/* Grupo Contact Button Styles */
.grupo-contact-button-container {
    text-align: center;
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.unified-grupo-equipe-inovacao-section .grupo-contact-button-container {
    opacity: 1;
    transform: translateY(0);
}

.grupo-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #32CD32 0%, #28a745 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(50, 205, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.grupo-contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.grupo-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(50, 205, 50, 0.4);
}

.grupo-contact-button:hover::before {
    left: 100%;
}

.grupo-contact-button svg {
    transition: transform 0.3s ease;
}

.grupo-contact-button:hover svg {
    transform: translateX(5px);
}

/* Responsive adjustments for grupo contact button */
@media (max-width: 768px) {
    .grupo-contact-button {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .grupo-contact-button-container {
        margin: 3rem 0;
    }
}

@media (max-width: 480px) {
    .grupo-contact-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .grupo-contact-button-container {
        margin: 2rem 0;
    }
}