/* Reset e Variáveis */
@import url('https://fonts.cdnfonts.com/css/avilock');

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

:root {
    --color-primary: #dc2626;
    --color-dark: #1a1a1a;
    --color-dark-gray: #2d2d2d;
    --color-gray: #4a4a4a;
    --color-light-gray: #e5e5e5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header / Menu */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.dark {
    background-color: rgba(26, 26, 26, 0.95) !important;
}

.header.dark .logo img {
    filter: brightness(0) invert(1);
}

.header.dark .nav-link {
    color: var(--color-white) !important;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


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

.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.header.scrolled .nav-link {
    color: #4a4a4a;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4) contrast(1.1);
}

.hero-content {
    max-width: 650px;
    color: var(--color-white);
    margin-left: 0;
    padding-left: 0;
}

.hero-label {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Avilock', sans-serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.newsletter .btn-secondary {
    background-color: var(--color-white);
    color: #2d2d2d;
    border-color: var(--color-white);
}

.newsletter .btn-secondary:hover {
    background-color: #f5f5f5;
    color: #2d2d2d;
}

.btn-gray {
    background-color: var(--color-gray);
    color: var(--color-white);
    border-color: var(--color-gray);
}

.btn-gray:hover {
    background-color: #3a3a3a;
    border-color: #3a3a3a;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 25px 30px;
    font-weight: 600;
    font-size: 16px;
    max-width: 230px;
    z-index: 10;
}

.experience-content {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.experience-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.experience-years {
    display: inline-block;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 4px 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.experience-label {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.experience-badge p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.about-text {
    padding-left: 40px;
}

.section-label {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: none;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--color-dark);
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border-radius: 4px;
    color: var(--color-primary);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark);
}

.feature-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta {
    position: relative;
    padding: 100px 20px 0 20px;
    overflow: visible;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.contact-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.3) contrast(1.1);
}

.contact-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
    width: 100%;
    align-self: center;
}

.contact-cta-text {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    margin-top: -40px;
}

.contact-cta-text .section-label {
    font-size: 28px;
    color: var(--color-primary);
    text-transform: none;
    margin-bottom: 0;
}

.contact-cta-text .section-title {
    font-size: 40px;
    color: var(--color-white);
}

.contact-cta-text .section-description {
    color: var(--color-white);
}

.contact-cta-text .btn {
    display: inline-block;
    width: auto;
    align-self: flex-start;
    margin-top: 20px;
}

.contact-cta-image {
    position: relative;
    margin: 0 0 -4px 0;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
    align-self: flex-end;
}

.contact-cta-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
    display: block;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.services-left {
    order: 1;
}

.services-right {
    order: 2;
}

.services-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

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

.service-card {
    background-color: #f5f5f5;
    padding: 30px 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #7A7A7A;
}

.service-card:hover .service-title {
    color: var(--color-white);
}

.service-card:hover .service-description {
    color: var(--color-white);
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.service-card:hover .service-number {
    color: rgba(255, 255, 255, 0.2);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 64px;
    font-weight: bold;
    color: rgba(74, 74, 74, 0.2);
    line-height: 1;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #4a4a4a;
    filter: grayscale(100%);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5) contrast(1.2);
    opacity: 1;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.service-description {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.services-right {
    padding-left: 0;
}

.section-label-gray {
    display: inline-block;
    color: #4a4a4a;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: none;
}

.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.stat-bar {
    width: 100%;
}

.stat-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
}

.stat-percentage {
    color: #7A7A7A;
}

.stat-bar-bg {
    width: 100%;
    height: 8px;
    background-color: var(--color-light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background-color: #7A7A7A;
    transition: width 1s ease;
}

/* Projects Section */
.projects {
    padding: 100px 20px;
    background-color: var(--color-white);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.projects-left-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.projects-label-small {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 1px;
}

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

.project-card {
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.project-placeholder {
    width: 100%;
    height: 300px;
    background-color: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    padding: 15px 0;
    background-color: transparent;
}

/* Numbers Section */
.numbers {
    padding: 100px 20px;
    background-color: #e5e5e5;
}

.numbers-box {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.numbers-title {
    font-size: 32px;
    font-weight: bold;
    color: #2d2d2d;
    text-align: center;
}

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

.number-card {
    text-align: center;
    padding: 50px 30px;
    transition: transform 0.3s ease;
}

.number-card-white {
    background-color: var(--color-white);
}

.number-card-dark {
    background-color: #2d2d2d;
}

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

.number-card-white .number-value {
    color: #2d2d2d;
}

.number-card-dark .number-value {
    color: var(--color-white);
}

.number-value {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
}

.number-card-white .number-label {
    color: #4a4a4a;
}

.number-card-dark .number-label {
    color: rgba(255, 255, 255, 0.9);
}

.number-label {
    font-size: 16px;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 20px;
    background-color: #2d2d2d;
}

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

.newsletter-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 10px;
}

.newsletter-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: var(--color-white);
    color: var(--color-dark);
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    border-color: var(--color-primary);
}


/* Footer */
.footer {
    background-color: #000000;
    color: var(--color-white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
}

.footer-logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1.2;
    display: inline-block;
}

.footer-logo-first-letter {
    color: var(--color-white);
    font-size: 28px;
    font-weight: bold;
}

.footer-logo-rest {
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
}

.footer-slogan {
    font-size: 14px;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
    font-weight: normal;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 25px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--color-white);
    line-height: 1.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p strong {
    color: var(--color-white);
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.footer-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    color: #7A7A7A;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li::before {
    content: '';
    position: static;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    width: 100%;
    background-color: #404040;
    padding: 20px 0;
    margin: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 14px;
    color: var(--color-white);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-white);
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.footer-social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-social-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header.dark .mobile-menu-toggle span {
    background-color: var(--color-white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .services-content {
        gap: 50px;
    }

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

@media (max-width: 968px) {
    .about-content,
    .contact-cta-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-left: 0;
    }

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

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

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        padding: 15px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        margin-left: 0;
    }

    .nav {
        gap: 20px;
    }

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

    .contact-cta-image {
        position: relative;
        margin-bottom: 0;
        align-self: flex-end;
    }

    .contact-cta-content {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header .container {
        position: relative;
    }

    .logo img {
        width: 60px !important;
        height: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header.dark .nav {
        background-color: rgba(26, 26, 26, 0.98);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header.dark .nav-link {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding: 130px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.1;
        text-align: center;
    }

    .hero-description {
        font-size: 15px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .contact-cta-text .btn {
        width: 100%;
    }

    .projects-header .btn {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .section-label {
        text-align: center;
        display: block;
    }

    .section-label-gray {
        text-align: center;
        display: block;
    }

    .projects-label-small {
        text-align: center;
        display: block;
    }

    .hero-label {
        text-align: center;
    }

    .about,
    .services,
    .projects,
    .numbers,
    .newsletter {
        padding: 60px 20px;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .experience-badge {
        position: absolute;
        bottom: 10px;
        right: 10px;
        max-width: 180px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .experience-number {
        font-size: 36px;
    }

    .experience-years {
        font-size: 16px;
        padding: 3px 6px;
    }

    .experience-label {
        font-size: 24px;
    }

    .experience-badge p {
        font-size: 12px;
    }

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

    .services-left {
        order: 2;
    }

    .services-right {
        order: 1;
        margin-bottom: 40px;
    }

    .projects-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .projects-left-header {
        align-items: center;
        text-align: center;
    }

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

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

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .about-text,
    .services-right,
    .contact-cta-text {
        text-align: center;
    }

    .section-description {
        text-align: center;
    }

    .contact-cta {
        padding: 60px 20px 0;
        min-height: auto;
    }

    .contact-cta-content {
        padding-bottom: 0;
    }

    .contact-cta-image {
        position: relative;
        margin-bottom: 0;
        align-self: center;
        display: flex;
        justify-content: center;
    }

    .contact-cta-image img {
        max-width: 70%;
        height: auto;
    }

    .contact-cta-text {
        margin-top: -40px;
    }

    .contact-cta-text .section-label {
        font-size: 20px;
    }

    .contact-cta-text .section-title {
        font-size: 32px;
    }

    .footer {
        padding: 60px 20px 20px;
        text-align: center;
    }

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

    .footer-column {
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-logo-text-wrapper {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .footer-logo-icon {
        width: 40px;
        height: 40px;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-icon {
        flex-shrink: 0;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-social {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-label {
        font-size: 16px;
    }

    .hero-label {
        font-size: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .service-icon img {
        width: 60px;
        height: 60px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .project-placeholder {
        height: 200px;
    }

    .number-value {
        font-size: 48px;
    }

    .footer-logo-text {
        font-size: 20px;
    }

    .footer-slogan {
        font-size: 11px;
    }
}

