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

html {
    background-color: #0a0a0a !important;
    background-image: 
        /* Pontos de luz principais */
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        /* Pontos de luz adicionais para profundidade */
        radial-gradient(circle at 10% 30%, rgba(151, 229, 17, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(151, 229, 17, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 70% 10%, rgba(151, 229, 17, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 30% 90%, rgba(151, 229, 17, 0.04) 0%, transparent 30%),
        /* Linhas de luz sutis */
        linear-gradient(45deg, transparent 0%, rgba(151, 229, 17, 0.02) 25%, transparent 50%, rgba(151, 229, 17, 0.02) 75%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(151, 229, 17, 0.015) 30%, transparent 60%, rgba(151, 229, 17, 0.015) 90%, transparent 100%) !important;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 200% 200%, 200% 200% !important;
    background-position: center, center, center, center, center, center, center, 0% 0%, 100% 100% !important;
    background-attachment: fixed !important;
    animation: backgroundFloat 20s ease-in-out infinite;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff !important;
    background-color: #0a0a0a !important;
    background-image: 
        /* Pontos de luz principais */
        radial-gradient(circle at 20% 80%, rgba(151, 229, 17, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(151, 229, 17, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(151, 229, 17, 0.08) 0%, transparent 50%),
        /* Pontos de luz adicionais para profundidade */
        radial-gradient(circle at 10% 30%, rgba(151, 229, 17, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(151, 229, 17, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 70% 10%, rgba(151, 229, 17, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 30% 90%, rgba(151, 229, 17, 0.04) 0%, transparent 30%),
        /* Linhas de luz sutis */
        linear-gradient(45deg, transparent 0%, rgba(151, 229, 17, 0.02) 25%, transparent 50%, rgba(151, 229, 17, 0.02) 75%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(151, 229, 17, 0.015) 30%, transparent 60%, rgba(151, 229, 17, 0.015) 90%, transparent 100%) !important;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 200% 200%, 200% 200% !important;
    background-position: center, center, center, center, center, center, center, 0% 0%, 100% 100% !important;
    background-attachment: fixed !important;
    overflow-x: hidden;
    animation: backgroundFloat 20s ease-in-out infinite;
}

/* Animação do background */
@keyframes backgroundFloat {
    0%, 100% {
        background-position: 
            center, center, center, center, center, center, center,
            0% 0%, 100% 100%;
    }
    50% {
        background-position: 
            center, center, center, center, center, center, center,
            100% 100%, 0% 0%;
    }
}

/* 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;
}

.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;
}

/* Hero Stats Section */
.hero-stats-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    z-index: 0;
}

.hero-stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-content {
    text-align: center;
}

.stats-text {
    margin-bottom: 3rem;
}

.stats-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.stats-description {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-numbers {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
    font-weight: 500;
}

.benefits-section {
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefits-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefits-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    filter: brightness(1.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    min-height: 200px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.benefits-section.animate .benefit-item {
    opacity: 1;
    transform: translateY(0);
}

.benefits-section.animate .benefit-item:nth-child(1) {
    transition-delay: 0.2s;
}

.benefits-section.animate .benefit-item:nth-child(2) {
    transition-delay: 0.4s;
}

.benefits-section.animate .benefit-item:nth-child(3) {
    transition-delay: 0.6s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    position: relative;
    margin: 0 auto 0.5rem auto;
}

.benefit-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.benefit-content h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    text-align: center;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .benefit-item {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .benefit-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .benefit-content h4,
    .benefit-content p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .stats-numbers {
        flex-direction: column;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .benefit-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .benefit-content h4,
    .benefit-content p {
        text-align: center;
    }
    
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

.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;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.7);
}

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

.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1.2s ease-out 0.5s forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 1s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 1.2s forwards;
}

.hero-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button.primary {
    background: #32CD32;
    color: white;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4);
}

.hero-button.primary:hover {
    background: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.6);
}

.hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-button.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-stat:nth-child(1) {
    animation-delay: 1.5s;
}

.hero-stat:nth-child(2) {
    animation-delay: 1.7s;
}

.hero-stat .stat-number {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #32CD32;
    line-height: 1;
}

.hero-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Hero adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }
    
    .hero-stat {
        padding: 1rem 1.5rem;
        flex: 0 1 auto;
        min-width: 140px;
    }
}

/* Statistics Cards */
.stats-cards {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
}

.stat-card {
    padding: 2rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card.stat-white {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.stat-card.stat-green {
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
}

.stat-number {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

/* Benefits Box */
.benefits-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.benefits-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefits-subtitle {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

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

.benefit-content h5 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.hero-button {
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* Benefits Sidebar */
.benefits-sidebar {
    position: absolute;
    top: 971px;
    left: 1110px;
    width: 440px;
    height: 217px;
    background: white;
    padding: 40px 61px;
    z-index: 3;
    border-top: 7px solid #32CD32;
}

.benefits-sidebar h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 38px;
    color: #00215b;
}

/* Features Cards */
.features-cards {
    position: absolute;
    top: 1147px;
    left: 1110px;
    width: 389px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #00215b;
    margin-bottom: 8px;
}

.feature-content p {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    color: #41444b;
    line-height: 28px;
}

.feature-icon {
    width: 61px;
    height: 64px;
    background: #32CD32;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
}

.engineer-icon::before,
.ruler-icon::before,
.tool-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 4px;
}

/* Stats Cards */
.stats-cards {
    position: absolute;
    top: 1188px;
    left: 470px;
    display: flex;
    gap: 0;
    z-index: 3;
}

.stat-card {
    width: 290px;
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blue-card {
    background: #333333;
}

.green-card {
    background: #32CD32;
}

.stat-content {
    text-align: center;
    color: white;
}

.stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 100px;
    font-weight: 600;
    line-height: 84px;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(235, 236, 237, 1);
}

/* About Section */
.about {
    position: relative;
    height: 600px;
    margin: 80px auto 30px auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
}

.about-content {
    flex: 1;
    max-width: 686px;
}

.section-label {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #32CD32;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: 'Kanit', sans-serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 64px;
    color: #ffffff;
    margin: 25px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about.animate .about-title {
    opacity: 1;
    transform: translateY(0);
}

.about-description-bold {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about.animate .about-description-bold {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-description {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about.animate .about-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.about-button {
    background: linear-gradient(135deg, #32CD32, #28a428);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.about.animate .about-button {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: buttonPulse 0.6s ease-out 0.8s forwards;
}

@keyframes buttonPulse {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(0) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.about-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

.about-images {
    position: relative;
    width: 500px;
    height: 400px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about.animate .about-images {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

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

.about-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.about-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-video-container:hover .about-video-image {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(50, 205, 50, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-icon:hover {
    background: rgba(50, 205, 50, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Text Mobile - Hidden by default */
.video-text-mobile {
    display: none;
}

.video-text-mobile h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #32CD32;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Services Section */
.services {
    position: relative;
    padding: 100px 0;
    margin-top: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-family: 'Kanit', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.services-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: rgba(212, 215, 221, 1);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
}

.service-card {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2);
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    position: relative;
    padding: 30px;
    padding-right: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
}

.service-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #32CD32;
    margin-bottom: 15px;
}

.service-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(212, 215, 221, 1);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid #32CD32;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.service-button:hover {
    background: #32CD32;
    transform: scale(1.1);
}

.service-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    color: #32CD32;
    transition: color 0.3s ease;
}

.service-button:hover svg {
    color: white;
}

/* Service Cards Background Images */
.steelmax-card {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../src/casa1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.metalmax-card {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../src/metal1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.connectmax-card {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../src/b1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Projects Section */
.projects {
    padding: 100px 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-title {
    font-family: 'Kanit', sans-serif;
    font-size: 55px;
    font-weight: 600;
    line-height: 64px;
    color: #ffffff;
    margin: 25px 0 35px 0;
}

/* Link para o grid de projetos */
.projects-grid-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: 380px 380px 380px;
    gap: 12px;
    max-width: 1164px;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
}

/* Hover para desktop */
@media (min-width: 769px) and (hover: hover) {
    .projects-grid:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
    
    .projects-grid:hover .project-image {
        opacity: 0.7;
        transform: scale(1.01);
    }
    
    .projects-grid:hover .projects-overlay {
        opacity: 1;
    }
    
    .projects-grid:hover .plus-icon {
        transform: scale(1.05);
    }
}

/* Remover hover em dispositivos móveis e touch */
@media (max-width: 768px), (hover: none) {
    .projects-grid {
        transition: none !important;
    }
    
    .projects-grid:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .projects-grid:hover .project-image {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .projects-grid:hover .projects-overlay {
        opacity: 0 !important;
    }
    
    .projects-grid:hover .plus-icon {
        transform: none !important;
    }
    
    .project-image {
        transition: none !important;
    }
    
    .plus-icon {
        transition: none !important;
    }
    
    .projects-overlay {
        display: none !important;
    }
}

/* Overlay com texto "Ver mais" */
.projects-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
    border-radius: 12px;
}


.overlay-content {
    text-align: center;
    color: white;
}

.overlay-text {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.plus-icon {
    width: 60px;
    height: 60px;
    background: rgba(50, 205, 50, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}


.project-main {
    grid-row: span 2;
}

.project-mobile {
    display: none;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

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

/* Hover individual removido - agora será aplicado ao grid inteiro */

.project-featured {
    position: relative;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-content {
    text-align: center;
    color: white;
}

.project-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 5px;
}

.project-content span {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(212, 215, 221, 1);
    display: block;
    margin-bottom: 20px;
}

.project-button {
    width: 40px;
    height: 40px;
    background: rgba(50, 205, 50, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.project-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}



/* Partners Section */
.partners-section {
    padding: 5rem 0;
    background: transparent;
}

.partners-header {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.partners-title .highlight {
    color: #32CD32;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partners-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: scroll-smooth 20s linear infinite;
    width: max-content;
    will-change: transform;
}

.partners-container:hover {
    animation-play-state: paused;
}

.partner-slide {
    flex: 0 0 auto;
    width: 220px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 8px;
}

.partner-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    width: auto;
    height: auto;
}

.partner-slide:hover .partner-logo {
    filter: grayscale(0%);
}

@keyframes scroll-smooth {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



/* Team Section */
.team-section {
    padding: 4rem 0 2rem 0;
    background: transparent;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.team-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: #32CD32;
    margin: 0 auto 2rem;
}

.team-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background: transparent;
    padding: 2rem;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-section.animate .team-member {
    opacity: 1;
    transform: translateY(0);
}

.team-section.animate .team-member:nth-child(1) {
    transition-delay: 0.2s;
}

.team-section.animate .team-member:nth-child(2) {
    transition-delay: 0.4s;
}

.team-member:hover {
    transform: none;
    box-shadow: none;
}

.member-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
}

.member-photo {
    width: 220px;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    border: none;
    background-color: transparent;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
}

.member-name {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.member-role {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ccc;
}

/* Equipe Max Section */
.equipe-max-section {
    padding: 2rem 0 3rem 0;
    background: transparent;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.equipe-max-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.equipe-header {
    text-align: center;
    margin-bottom: 4rem;
}

.equipe-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.equipe-content {
    max-width: 1000px;
    margin: 0 auto;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.equipe-photo {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.equipe-max-section.animate .equipe-photo {
    opacity: 1;
    transform: translateY(0);
}

.equipe-max-section.animate .equipe-photo:nth-child(1) {
    transition-delay: 0.2s;
}

.equipe-max-section.animate .equipe-photo:nth-child(2) {
    transition-delay: 0.4s;
}

.equipe-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.equipe-image:hover {
    transform: translateY(-5px);
}

.equipe-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.equipe-max-section.animate .equipe-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.equipe-description p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d4d7dd;
    margin: 0;
}

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

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background: transparent;
}

/* Address Card (Full Width) */
.contact-address-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-address-card .info-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-address-card .info-content p {
    font-family: 'Kanit', sans-serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    max-width: 500px;
}

/* Contact Details Grid (Phone and Email Side by Side) */
.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon {
    background-color: #32CD32;
}

.email-icon {
    background-color: #333333;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.info-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 185px;
    height: 7px;
    background: linear-gradient(135deg, #32CD32, #28a428);
    border-radius: 0 0 8px 8px;
}

/* 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-section {
    display: flex;
    flex-direction: column;
}

.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);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
}

.video-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10001;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-close:hover {
    color: #32CD32;
    background: #f8f9fa;
}

#videoFrame {
    border-radius: 8px;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        padding: 10px;
        width: 95%;
        height: auto;
    }
    
    #videoFrame {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    #videoFrame {
        height: 180px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        max-width: 900px;
    }
    
    .project-main {
        grid-column: span 2;
        grid-row: span 2;
        height: 300px;
    }
    
    .project-small {
        height: 140px;
    }
}

@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;
    }
    
    .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: 768px) {
    .hero {
        height: 65vh;
        min-height: 550px;
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-content {
        position: absolute;
        top: 180px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        padding: 0 2rem;
        bottom: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-cards {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-card {
        padding: 1.5rem;
        min-width: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefits-box {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto 0;
        max-width: 100%;
        padding: 2rem;
    }

    .header-container {
        padding: 0 1rem;
    }
    
    .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;
        padding: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .logo-image {
        height: 50px;
        width: auto;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .hero-content {
        position: absolute;
        top: 220px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        text-align: center;
        bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 2.5rem;
        justify-content: center;
        flex-wrap: nowrap;
        margin-top: 2rem;
    }
    
    .hero-stat {
        flex: 0 1 auto;
        min-width: 160px;
        padding: 1.2rem 2rem;
    }
    
    .hero-stat .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.85rem;
    }
    
    .about {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
        align-items: flex-start;
        margin: 250px auto 100px auto;
    }
    
    .about-content {
        order: 1;
        max-width: 600px;
        text-align: left;
    }
    
    .about-images {
        order: 2;
        width: 100%;
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .about-video-overlay {
        position: relative;
        width: 100%;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-video-container {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }
    
    
    .video-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .video-text-mobile {
        display: block;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .header-container {
        padding: 0 50px;
    }
    
    .hero-content {
        position: absolute;
        top: 220px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        text-align: center;
        bottom: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        flex-wrap: nowrap;
        margin-top: 2rem;
    }
    
    .hero-stat {
        flex: 0 1 auto;
        min-width: 150px;
    }
    
    .benefits-sidebar {
        position: relative;
        margin: 50px auto;
        left: auto;
        top: auto;
    }
    
    .features-cards {
        position: relative;
        left: auto;
        top: auto;
        margin: 50px auto;
    }
    
    .stats-cards {
        position: relative;
        left: auto;
        top: auto;
        justify-content: center;
        margin: 50px auto;
    }
    
    .about {
        padding: 50px;
        flex-direction: column;
        margin: 200px auto 80px auto;
    }
    
    .projects {
        padding: 60px 30px;
    }
    
    .projects-title {
        font-size: 2.5rem;
        margin: 20px 0 25px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        height: auto;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Mostrar todas as imagens no responsivo */
    .project-main {
        grid-column: span 2;
        grid-row: 1;
        height: 200px;
    }
    
    .project-small {
        height: 150px;
    }
    
    .project-mobile {
        display: none;
    }
    
    .project-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .testimonials {
        padding: 50px;
        flex-direction: column;
    }
    
    .testimonials-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info {
        padding: 0 50px;
        flex-direction: column;
        height: auto;
    }
    
    .footer-content {
        padding: 50px;
        flex-direction: column;
    }
    
    .footer-about {
        width: 100%;
        padding: 50px;
    }
    
    .footer-links {
        padding: 50px;
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .topbar {
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-line {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .navigation {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-background {
        height: 60vh;
    }
    
    .hero-content {
        left: 20px;
        right: 20px;
        width: auto;
        top: 60%;
        transform: translateY(-50%);
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }
    
    .hero-description {
        width: 100%;
        font-size: 16px;
    }
    
    .benefits-sidebar {
        margin: 20px;
        width: auto;
        padding: 20px;
    }
    
    .features-cards {
        margin: 20px;
        width: auto;
    }
    
    .stats-cards {
        flex-direction: column;
        margin: 20px auto;
        width: 290px;
    }
    
    .about {
        height: auto;
        padding: 50px 10px;
        flex-direction: column;
        gap: 50px;
        margin: 50px 0px 0px 0px;
    }
    
    .about-images {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 2;
        padding: 0 5px;
    }
    
    .video-text-mobile {
        display: block;
        margin-top: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .about-content {
        order: 1;
        max-width: 100%;
    }
    
    .about-video-overlay {
        width: 100%;
        height: 180px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    
    .video-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
    }
    
    .video-play-icon::before {
        border-left: 15px solid white;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
    
    .about-title {
        font-size: 35px;
        line-height: 40px;
    }
    
    .about-description {
        margin-bottom: 50px;
    }
    
    .about-images {
        width: 100%;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }
    
    .about-video-overlay {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-video-container {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }
    
    
    .video-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .services {
        flex-direction: column;
        height: auto;
    }
    
    .services-main-image {
        width: 100%;
        height: 300px;
    }
    
    .service-card {
        width: 100%;
        height: 400px;
    }
    
    .projects {
        padding: 50px 20px;
    }
    
    .projects-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin: 15px 0 20px 0;
    }
    
    .section-label {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        height: auto;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Mostrar todas as imagens no responsivo */
    .project-main {
        grid-column: span 2;
        grid-row: 1;
        height: 180px;
    }
    
    .project-small {
        height: 120px;
    }
    
    .project-mobile {
        display: none;
    }
    
    .project-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        display: block;
    }
    
    .testimonials {
        padding: 50px 20px;
    }
    
    .testimonials-title {
        font-size: 35px;
        line-height: 40px;
    }
    
    .contact-info-section {
        padding: 3rem 0;
    }
    
    .contact-address-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-address-card .info-content p {
        font-size: 1.6rem;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .footer-about {
        padding: 30px 20px;
    }
    
    .footer-links {
        padding: 30px 20px;
    }
    
    .footer-links {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 2rem 0;
    }
    
    .contact-address-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-address-card .info-content p {
        font-size: 1.3rem;
    }
    
    .contact-details-grid {
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .info-content p {
        font-size: 1.1rem;
    }
}

/* Media Queries para Responsividade dos Serviços */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service-content {
    padding: 25px;
  }
  
  .service-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 80px 20px;
    margin-top: 0px;
  }
  
  .services-header {
    margin-bottom: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-card {
    height: auto;
    min-height: 280px;
  }
  
  .service-icon {
    height: 180px;
  }
  
  .service-content {
    height: auto;
    padding: 25px;
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
  }
  
  .service-button {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 15px;
    align-self: center;
  }
  
  .services-title {
    font-size: 36px;
  }
  
  .services-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 15px;
    margin-top: 60px;
  }
  
  .services-header {
    margin-bottom: 25px;
  }
  
  .services-grid {
    gap: 25px;
  }
  
  .service-card {
    height: auto;
    min-height: 240px;
  }
  
  .service-icon {
    height: 160px;
  }
  
  .service-content {
    height: auto;
    padding: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
  }
  
  .service-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .service-content p {
    font-size: 14px;
    margin-bottom: 12px;
    flex-grow: 1;
  }
  
  .service-button {
    width: 35px;
    height: 35px;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 15px;
    align-self: center;
  }
  
  .service-button svg {
    width: 16px;
    height: 16px;
  }
  
  .services-title {
    font-size: 28px;
  }
  
  .services-subtitle {
    font-size: 15px;
  }
  
  .equipe-max-section {
    padding: 1.5rem 0 2rem 0;
  }
  
  .equipe-title {
    font-size: 2.5rem;
  }
  
  .equipe-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .equipe-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .team-section {
    padding: 2rem 0 1rem 0;
  }
}

@media (max-width: 484px) {
  .hero {
    height: 60vh;
    min-height: 500px;
  }
}

@media (max-width: 455px) {
  .hero {
    height: 55vh;
    min-height: 450px;
  }
  
  .hero-stats-section {
    padding: 3rem 0;
  }
  
  .about {
    margin: 150px auto 50px auto;
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
  }
  
  .about-description {
    margin-bottom: 40px;
  }
  
  .about-images {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    order: 2;
  }
  
  .video-text-mobile {
    display: block;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .about-content {
    order: 1;
    max-width: 100%;
  }
  
  .about-video-overlay {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-video-container {
    width: 100%;
    height: 100%;
  }
  
  .about-video-container   
  .about-video-container {
    display: none;
  }
  
  .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
  }
  
  .video-play-icon::before {
    border-left: 12px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
  
  .services {
    padding: 40px 10px;
    margin-top: 40px;
  }
  
  .services-header {
    margin-bottom: 20px;
  }
  
  .services-grid {
    gap: 20px;
    max-width: 100%;
  }
  
  .service-card {
    height: auto;
    min-height: 200px;
  }
  
  .service-content {
    height: auto;
    padding: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
  }
  
  .service-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .service-content p {
    font-size: 13px;
    margin-bottom: 10px;
    flex-grow: 1;
  }
  
  .service-button {
    width: 30px;
    height: 30px;
    position: relative;
    top: auto;
    right: auto;
    margin-top: 12px;
    align-self: center;
  }
  
  .service-button svg {
    width: 14px;
    height: 14px;
  }
  
  .hero-content {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 0 1rem;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin: 1rem 0;
  }
  
  .stats-container {
    margin-top: 2rem;
    padding: 1rem 0.5rem;
  }
  
  .stat-block {
    min-width: 100px;
    padding: 0.8rem 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .projects {
    padding: 30px 10px;
    margin-top: 30px;
  }
  
  .projects-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .section-label {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .projects-grid {
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0 auto;
    max-width: 350px;
  }
  
  /* Mostrar todas as imagens no responsivo */
  .project-main {
    grid-column: span 2;
    grid-row: 1;
    height: 150px;
  }
  
  .project-small {
    height: 100px;
  }
  
  .project-mobile {
    display: none;
  }
  
  .project-image {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
  }
}

@media (max-width: 410px) {
  .projects {
    padding: 20px 5px;
  }
  
  .projects-grid {
    width: 100%;
    margin: 0 auto;
    max-width: 300px;
    padding: 0 5px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .project-main {
    grid-column: span 2;
    grid-row: 1;
    height: 140px;
  }
  
  .project-small {
    height: 90px;
  }
  
  .project-mobile {
    display: none;
  }
  
  .projects-title {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  
  .section-label {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-section.animate .cta-content {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    font-family: 'Kanit', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    color: #d4d7dd;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-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;
}

.cta-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;
}

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

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

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

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

/* Responsividade CTA Section */
@media (max-width: 1200px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        gap: 8px;
    }
}

@media (max-width: 455px) {
    .cta-section {
        padding: 50px 15px;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}