 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.8;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            color: white;
            padding: 150px 2rem 100px;
            text-align: center;
            margin-top: 60px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #2196F3;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Container Padrão */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2196F3;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }

        /* Quem Somos */
        .quem-somos {
            background: #f8f9fa;
        }

        .sobre-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .sobre-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

         .sobre-image {
            /* background: linear-gradient(135deg, #E91E63 0%, #2196F3 100%); */
            /* width: 100%; */
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-align: center;
            /* padding: 2rem; */
        } 
        .grid-container{
            display: grid;
            /* (Opcional) Adicione uma margem para visualização */
            gap: 10px;
            width: 100%;
            
            padding: 10px;
            grid-template-columns: 1fr 1fr; /* Duas colunas de larguras iguais */
        }
        .grid-item{
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2em;
            padding: 10px;
            border-radius: 4px;
           
        }
        .grid-item img{
            width: 100%;
        }

        /* Por que nos escolher */
        .motivos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            
        }

        .motivo-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .motivo-card:hover {
            transform: translateY(-10px);
        }

        .motivo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .motivo-card h3 {
            color: #2196F3;
            margin-bottom: 2rem;
        }


        /* Nossos Serviços */
        .servicos {
            background: #f8f9fa;
        }

        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .servico-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .servico-card:hover {
            transform: scale(1.05);
        }

        .servico-image {            
            height: 250px;
            background: #f8f9fa;;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .servico-image img{
            width: 100%;
            height: 100%;
        }

        .servico-info {
            padding: 1.5rem;
            text-align: center;
            
        }

        .servico-info h3 {
            color: #2196F3;
            margin-bottom: 0.5rem;
        }

        /* Catálogo */
        /* Barra de Pesquisa */
        .search-container {
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .search-box {
            width: 100%;
            padding: 15px 20px;
            font-size: 1.1rem;
            border: 3px solid #2196F3;
            border-radius: 30px;
            outline: none;
            transition: all 0.3s;
            box-shadow: 0 3px 15px rgba(33, 150, 243, 0.2);
        }

        .search-box:focus {
            border-color: #E91E63;
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
        }

        .resultado-texto {
            text-align: center;
            margin-top: 1rem;
            color: #666;
            font-size: 1rem;
        }

        .catalogo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .catalogo-item.hidden {
            display: none;
        }

        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            color: #999;
            font-size: 1.2rem;
        }

        .catalogo-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .catalogo-item:hover {
            transform: translateY(-10px);
        }

        .catalogo-image {
            height: 200px;
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .catalogo-image img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .catalogo-info {
            padding: 1.5rem;
        }

        .catalogo-info h3 {
            color: #E91E63;
            margin-bottom: 0.5rem;
        }

        .catalogo-info p {
            color: #666;
            margin-bottom: 1rem;
        }

        .preco {
            color: #2196F3;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Contato */
        .contato {
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            color: white;
        }

        .contato .section-title,
        .contato .section-subtitle {
            color: white;
        }

        .contato-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contato-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            color: #333;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2196F3;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .btn-submit:hover {
            transform: scale(1.05);
        }

        .contato-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: white;
            color: #2196F3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #E91E63;
            margin-bottom: 1rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #2196F3;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2196F3 0%, #E91E63 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: transform 0.3s;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #999;
        }

        .logo-img{
            width: 42px;
        }

        a{
            text-decoration: none;
            color: white;
        }

        /* Animações */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 600px){
        .motivos {
            grid-template-columns: repeat(2, 1fr);
            
        }
        .motivo-card{
            width: 160px;
            
        }
        .motivo-card h3{
            font-size: 1rem;
        }
        .motivo-card p{
            font-size: 0.6rem;
        }
        .container{
            padding-left: 30px;
            padding-right: 30px;
        }
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #2196F3;
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .sobre-content,
            .contato-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

        }