        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            .tab-btn {
                font-size: 0.8rem;
                padding: 8px 10px;
                min-width: 70px;
            }

            .access-card {
                margin-top: 15px;
            }
        }


        /* Seção de Localização/Contatos */
        .location-section {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            margin: 160px auto;
            max-width: 1200px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            animation: slideUp 0.3s ease-out;
        }

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

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

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            background: var(--dark-purple);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(----text-dark);
            max-width: 600px;
            margin: 0 auto;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.33);
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
        }

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

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

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

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-details h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-purple);
        }

        .contact-details p {
            color: var(--dark-purple);
            font-size: 0.95rem;
        }

        .map-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 400px;
            position: relative;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #f8f9ff, #e8ecff);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--dark-purple);
            font-size: 1.1rem;
            text-align: center;
            padding: 20px;
        }

        .map-placeholder i {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        /* Seção de Formulário */
        .contact-form-section {
            padding: 80px 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            margin: 40px auto;
            max-width: 1200px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: slideUp 0.8s ease-out 0.2s both;
            margin-top: -160px;
        }

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

        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e8ecff;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            background: #fafbff;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input:focus,
        .form-textarea:focus {
            border-color: (var--dark-purple);   
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

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

        .form-label {
            position: absolute;
            top: 18px;
            left: 20px;
            color: #666;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            pointer-events: none;
            background: linear-gradient(to bottom, transparent 0%, transparent 45%, #fafbff 45%, #fafbff 55%, transparent 55%);
        }

        .form-input:focus + .form-label,
        .form-input:not(:placeholder-shown) + .form-label,
        .form-textarea:focus + .form-label,
        .form-textarea:not(:placeholder-shown) + .form-label {
            top: -8px;
            left: 16px;
            font-size: 0.85rem;
            color: var(--dark-purple);
            background: linear-gradient(to bottom, transparent 0%, transparent 45%, white 45%, white 55%, transparent 55%);
        }

        .submit-btn {
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::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.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Estilos para as abas de acesso */
        .access-card {
            grid-column: 1 / -1;
            margin-top: 20px;
        }

        .access-tabs {
            display: flex;
            gap: 35px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: linear-gradient(135deg, #f8f9ff, #e8ecff);
            border: 2px solid #e8ecff;
            color: var(--dark-purple);
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            min-width: 90px;
            justify-content: center;
        }

        .tab-btn:hover {
            background: linear-gradient(135deg, var(--primary-yellw),var(--primary-pink));
            color: white;
            color: var(--dark-purple);
            transform: translateY(-2px);
        }

        .tab-btn.active {
            background: linear-gradient(900deg, var(--primary-yellw), var(--primary-pink));
            color: white;
            color: var(--dark-purple);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.3s ease-in;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h4 {
            color: var(--dark-purple);
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .tab-content p {
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .tab-content strong {
            color: #f10000;
            font-weight: 600;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .location-section,
            .contact-form-section {
                margin: 20px;
                border-radius: 15px;
                padding: 40px 0;
            }

            .section-title {
                font-size: 2.2rem;
            }

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

            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .contact-card {
                padding: 25px;
            }
        }

        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
