 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Cabeçalho */
        .header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }
        
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-family: 'Azoft Sans', sans-serif;
            font-size: 24px;
            font-weight: bold;
            color: #0d8699;
        }
        
        .navigation a {
            margin-left: 30px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .navigation a:hover {
            color: #0d8699;
        }
        
        /* Seção Hero */
        .hero {
            position: relative;
            height: 700px;
            display: flex;
            align-items: center;
            margin-top: 70px;
            overflow: hidden;
        }
        
        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-title {
            position: relative;
            z-index: 10;
            color: #fff;
            font-family: 'Azoft Sans', sans-serif;
            font-size: 68px;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.2;
            max-width: 1305px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            -webkit-text-stroke: 1.1px #fff;
            paint-order: stroke fill;
        }
        
        /* Seção Sobre */
        .about {
            background-color: #0d8699;
            color: #fff;
            padding: 80px 0;
        }
        
        .section-title {
            font-family: 'Azoft Sans', sans-serif;
            font-size: 44px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 30px;
            position: relative;
            -webkit-text-stroke: 1.1px #fff;
            paint-order: stroke fill;
        }
        
        .section-description {
            font-size: 30px;
            line-height: 1.3;
            margin-bottom: 40px;
            max-width: 1078px;
        }
        
        .cta-button {
            background-color: #fc483f;
            color: #fff;
            border: none;
            padding: 20px 40px;
            font-size: 32px;
            font-weight: 500;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s;
            font-family: 'Azoft Sans', sans-serif;
        }
        
        .cta-button:hover {
            background-color: #e03c34;
        }
        
        /* Seção Serviços */
        .services {
            padding: 80px 0;
            background-color: #f5f5f5;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        
        
        /* Seção Contato */
        .contact {
            padding: 80px 0;
            background-color: #121110;
            color: #fff;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }
        
        .contact-info h3 {
            font-family: 'Azoft Sans', sans-serif;
            font-size: 44px;
            margin-bottom: 20px;
            color: #0d8699;
            -webkit-text-stroke: 1.1px #0d8699;
            paint-order: stroke fill;
        }
        
        .contact-info p {
            margin-bottom: 15px;
            font-size: 22px;
            opacity: 0.8;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        

        .contact-form textarea {
            width: 100%;
            padding: 20px;
            background-color: #d9d9d9;
            border: none;
            border-radius: 4px;
            font-size: 18px;
            opacity: 0.5;
        }
        
        .contact-form textarea {
            height: 237px;
            resize: vertical;
        }
        
        .contact-form button {
            background-color: #fc483f;
            color: #fff;
            border: none;
            padding: 25px 40px;
            font-size: 28px;
            font-weight: 500;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 345.8px;
            height: 81.6px;
        }
        
        .contact-form button:hover {
            background-color: #e03c34;
        }
        
       
        
      
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 54px;
                max-width: 90%;
            }
            
            .section-title {
                font-size: 36px;
            }
            
            .section-description {
                font-size: 24px;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 42px;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .navigation a {
                margin-left: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .header .container {
                flex-direction: column;
            }
            
            .navigation {
                margin-top: 15px;
            }
            
            .navigation a {
                margin: 0 10px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-description {
                font-size: 20px;
            }
            
            .cta-button {
                font-size: 24px;
                padding: 15px 30px;
            }
            
            .contact-form button {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-title {
                font-size: 24px;
            }
            
            .contact-info h3 {
                font-size: 32px;
            }
        }